/*
Theme Name: BigHostingHub
Theme URI: https://bighostinghub.com
Author: BigHostingHub
Author URI: https://bighostinghub.com
Description: Custom WordPress theme for BigHostingHub hosting website.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bighostinghub
Tags: hosting, blog, responsive, custom-theme
*/

:root {
    --background: 222 47% 5%;
    --foreground: 210 40% 96%;

    --card: 220 30% 9%;
    --card-foreground: 210 40% 96%;

    --popover: 220 30% 9%;
    --popover-foreground: 210 40% 96%;

    --primary: 199 100% 55%;
    --primary-foreground: 222 47% 5%;

    --secondary: 270 100% 65%;
    --secondary-foreground: 210 40% 98%;

    --muted: 220 20% 14%;
    --muted-foreground: 215 20% 55%;

    --accent: 240 60% 60%;
    --accent-foreground: 210 40% 98%;

    --destructive: 0 84% 60%;
    --destructive-foreground: 210 40% 98%;

    --border: 220 20% 18%;
    --input: 220 20% 18%;
    --ring: 199 100% 55%;

    --radius: 0.75rem;

    --glass-bg: 220 30% 12%;
    --glass-border: 220 20% 22%;
    --neon-blue: 199 100% 55%;
    --neon-purple: 270 100% 65%;
    --surface: 220 26% 12%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

button {
    font-family: inherit;
}

.section-padding {
    padding: 3rem 0;
}

@media (min-width: 640px) {
    .section-padding {
        padding: 4rem 0;
    }
}

@media (min-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 7rem 0;
    }
}

.container-custom {
    width: 100%;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.glass-card {
    background-color: hsl(var(--card) / 0.6);
    backdrop-filter: blur(24px);
    border-radius: var(--radius);
    border: 1px solid hsl(var(--glass-border));
}

.glass-card-hover {
    background-color: hsl(var(--card) / 0.6);
    backdrop-filter: blur(24px);
    border-radius: var(--radius);
    border: 1px solid hsl(var(--glass-border));
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.glass-card-hover:hover {
    border-color: hsl(var(--primary) / 0.4);
    box-shadow: 0 0 30px hsl(var(--neon-blue) / 0.15);
    transform: translateY(-2px);
    background-color: hsl(var(--card) / 0.8);
}

.neon-glow {
    box-shadow:
        0 0 20px hsl(var(--neon-blue) / 0.3),
        0 0 60px hsl(var(--neon-blue) / 0.1);
}

.neon-glow-purple {
    box-shadow:
        0 0 20px hsl(var(--neon-purple) / 0.3),
        0 0 60px hsl(var(--neon-purple) / 0.1);
}

.gradient-text {
    background-image: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--secondary)));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-border {
    position: relative;
    background-color: hsl(var(--card));
    border-radius: var(--radius);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, hsl(var(--neon-blue)), hsl(var(--neon-purple)));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.btn-glow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    background-image: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--secondary)));
    color: hsl(var(--primary-foreground));
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px hsl(var(--neon-blue) / 0.4);
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease,
        filter 0.3s ease;
}

@media (min-width: 640px) {
    .btn-glow {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

.btn-glow:hover {
    box-shadow:
        0 0 30px hsl(var(--neon-blue) / 0.6),
        0 0 60px hsl(var(--neon-purple) / 0.3);
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.btn-ghost-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid hsl(var(--primary) / 0.4);
    background-color: transparent;
    color: hsl(var(--primary));
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

@media (min-width: 640px) {
    .btn-ghost-glow {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

.btn-ghost-glow:hover {
    background-color: hsl(var(--primary) / 0.1);
    border-color: hsl(var(--primary) / 0.6);
    transform: translateY(-1px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    border: 1px solid hsl(var(--primary) / 0.3);
    background-color: hsl(var(--primary) / 0.05);
    color: hsl(var(--primary));
    font-weight: 600;
    font-size: 0.75rem;
}

@media (min-width: 640px) {
    .hero-badge {
        padding: 0.35rem 1rem;
        font-size: 0.8rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 3rem;
    }
}

.section-header-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid hsl(var(--primary) / 0.3);
    color: hsl(var(--primary));
    background-color: hsl(var(--primary) / 0.05);
    margin-bottom: 1rem;
}

.section-header-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .section-header-title {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .section-header-title {
        font-size: 2.5rem;
    }
}

.section-header-description {
    max-width: 36rem;
    margin: 0 auto;
    font-size: 0.9rem;
    color: hsl(var(--muted-foreground));
}

@media (min-width: 640px) {
    .section-header-description {
        font-size: 1rem;
    }
}

.home-hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, hsl(var(--primary) / 0.05), transparent 40%, transparent);
    pointer-events: none;
}

.badge-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 999px;
    background-color: hsl(var(--primary));
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px hsl(var(--neon-blue) / 0.3);
    }

    50% {
        box-shadow: 0 0 40px hsl(var(--neon-blue) / 0.6);
    }
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.faq-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.open .faq-item-content {
    max-height: 400px;
    opacity: 1;
}

.header-scrolled {
    background-color: hsl(var(--background) / 0.8);
    backdrop-filter: blur(24px);
    border-bottom: none;
}

.mobile-nav {
    display: none;
}

.mobile-nav.open {
    display: block;
}

.testimonial-prev,
.testimonial-next {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.testimonial-dots button {
    transition: all 0.3s ease;
}