/*
Theme Name: Online IT Supports Theme
Theme URI: https://onlineitsupports.com
Author: Online IT Supports
Author URI: https://onlineitsupports.com
Description: A premium, glassmorphism-styled theme for Online IT Supports.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: onlineitsupports
*/

:root {
    color-scheme: dark;
    --bg-dark: #0f1025;
    --bg-card: rgba(255, 255, 255, 0.08);
    --primary: #00f3ff;
    --secondary: #bc13fe;
    --tertiary: #4d4dff;
    --text-main: #f0f4f8;
    --text-muted: #94a3b8;
    --font-main: 'Outfit', sans-serif;
    --nav-height: 80px;
    --gap: 2rem;
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main) !important;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main) !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.alt-bg {
    background: linear-gradient(180deg, rgba(13, 18, 33, 0) 0%, rgba(13, 18, 33, 0.5) 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, var(--secondary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.3));
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    border: none;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--primary);
}

.wide {
    width: 100%;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: var(--nav-height);
    background: rgba(5, 5, 16, 0.7);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo .highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 20px 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: var(--bg-dark);
}

/* Floating Blobs (Restoring) */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floating 10s infinite alternate;
}

.blob-1 {
    width: 50vw;
    height: 50vw;
    background: var(--primary);
    top: -10%;
    left: -10%;
    animation-duration: 25s;
}

.blob-2 {
    width: 40vw;
    height: 40vw;
    background: var(--secondary);
    bottom: -10%;
    right: -10%;
    animation-duration: 30s;
}

.blob-3 {
    width: 30vw;
    height: 30vw;
    background: var(--tertiary);
    top: 40%;
    left: 40%;
    animation-duration: 20s;
}

@keyframes floating {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 50px) scale(1.1);
    }
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    background: rgba(5, 5, 16, 0.3);
    backdrop-filter: blur(0px);
    padding: 20px;
    border-radius: 20px;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-text-main);
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Cards & Grid */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
    opacity: 1;
}

.service-card .icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.pricing-card {
    text-align: center;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.06) 0%, rgba(188, 19, 254, 0.05) 100%);
    border-color: rgba(0, 243, 255, 0.3);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: absolute;
    top: 20px;
    right: 20px;
    left: auto;
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.4);
}

.price {
    font-size: 3.5rem;
    margin: 30px 0;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

/* Process Steps */
.process-steps {
    display: flex;
    gap: 40px;
}

.step {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.step-number {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(180deg, var(--primary), transparent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
}

/* Testimonials */
.testimonial-card {
    border-left: 4px solid var(--primary);
    text-align: left;
}

.testimonial-card span {
    font-size: 4rem;
    line-height: 0;
    vertical-align: bottom;
    color: var(--primary);
    opacity: 0.3;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 35px;
    border-radius: 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: 0.4s;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--text-main);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3::before {
    content: '?';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(0, 243, 255, 0.1);
    color: var(--primary);
    border-radius: 50%;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 40px;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(0deg, #020205 0%, #0a0f1c 100%);
    padding-top: 80px;
    padding-bottom: 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--text-main);
    font-size: 1.4rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.footer-links a::before {
    content: '›';
    color: var(--primary);
    font-weight: bold;
    opacity: 0;
    transform: translateX(-10px);
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--text-main);
    padding-left: 10px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.socials {
    display: flex;
    gap: 20px;
}

.socials a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    transition: 0.3s;
}

.socials a:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Floating Button (Adjusted) */
.floating-btn {
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    /* High z-index to ensure visibility */
}

/* Contact */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-main);
    font-weight: 500;
    margin-left: 10px;
}

/* Glass Inputs */
input,
textarea {
    width: 100%;
    padding: 18px 25px;
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid var(--glass-border) !important;
    color: #fff !important;
    border-radius: 15px !important;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    background: rgba(0, 243, 255, 0.05) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.15) !important;
    outline: none;
    transform: translateY(-2px);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* About & Feature List */
.feature-list {
    margin-top: 30px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.feature-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateX(10px);
}

.check-icon {
    width: 30px;
    height: 30px;
    background: rgba(0, 243, 255, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-list strong {
    display: block;
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-list span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Abstract Tech Visual */
.tech-panel {
    width: 100%;
    height: 400px;
    position: relative;
    background: radial-gradient(circle at center, rgba(188, 19, 254, 0.1), transparent 70%);
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    height: 2px;
    opacity: 0.7;
    animation: scan 4s infinite linear;
}

.circuit-line:nth-child(1) {
    top: 30%;
    left: 10%;
    width: 80%;
    animation-delay: 0s;
}

.circuit-line:nth-child(2) {
    top: 60%;
    left: 20%;
    width: 60%;
    animation-delay: 2s;
}

.circuit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--secondary);
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes scan {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: rgba(5, 5, 16, 0.98);
        padding: 40px;
        text-align: center;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .cta-group {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }

    .split-layout {
        flex-direction: column;
    }

    .tech-panel {
        height: 300px;
        margin-top: 40px;
    }
}