/* Global Variables - Futuristic Theme */
:root {
    --primary-color: #00f3ff;
    /* Neon Cyan */
    --secondary-color: #bc13fe;
    /* Neon Purple */
    --accent-color: #fff;

    --dark-bg: #050505;
    /* Deep Void Black */
    --darker-bg: #020202;

    --card-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);

    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;

    --transition: all 0.3s ease;

    --glow-primary: 0 0 10px rgba(0, 243, 255, 0.5), 0 0 20px rgba(0, 243, 255, 0.3);
    --glow-secondary: 0 0 10px rgba(188, 19, 254, 0.5), 0 0 20px rgba(188, 19, 254, 0.3);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    /* fallback until fonts load */
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(188, 19, 254, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 243, 255, 0.05) 0%, transparent 20%);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    /* Modern Tech Font */
    letter-spacing: 0.5px;
}

h1 span,
h2 span,
h3 span {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.4);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Buttons - Futuristic Style */
.btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 30px;
    /* Pill shape */
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 243, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: #000;
    box-shadow: var(--glow-primary);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: var(--glow-secondary);
}

.btn-white {
    background: #fff;
    color: var(--dark-bg);
    border: 2px solid #fff;
    font-weight: 700;
}

.btn-white:hover {
    background: transparent;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Header */
.header {
    background-color: rgba(5, 5, 5, 0.7);
    /* More transparent */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-color);
}

.navbar a {
    margin: 0 20px;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    color: #ccc;
}

.navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
    box-shadow: 0 0 8px var(--secondary-color);
}

.navbar a:hover {
    color: #fff;
}

.navbar a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Use a dark gradient overlay */
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.7)), url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Decorative Glows */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(188, 19, 254, 0.2), transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.15), transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content h1 span {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    /* Override default for gradient text */
    filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.3));
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 550px;
    border-left: 3px solid var(--secondary-color);
    padding-left: 20px;
}

.hero-btns .btn {
    margin-right: 15px;
    margin-bottom: 10px;
}

.hero-img {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
    margin-top: 40px;
    position: relative;
}

.hero-img img {
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

/* Floating Animation for Hero Image */
.hero-img {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Services Section */
.services {
    background-color: var(--darker-bg);
    position: relative;
}

/* Grid Background Pattern */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.service-card:hover .icon-box.red,
.service-card:hover .icon-box.blue {
    background: var(--dark-bg);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--glow-primary);
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* About Section */
.about {
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.left-align {
    text-align: left;
}

.skill-bars {
    margin: 40px 0;
}

.skill-bar {
    margin-bottom: 25px;
}

.skill-bar .info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.skill-bar .bar {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-bar .bar span {
    height: 100%;
    display: block;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    position: relative;
    width: 0;
    transition: width 1.5s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.about-list li {
    margin-bottom: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.about-list i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    text-shadow: 0 0 5px var(--secondary-color);
}

.about-img {
    position: relative;
}

.about-img::after {
    content: '';
    position: absolute;
    inset: -15px;
    border: 2px solid var(--primary-color);
    z-index: -1;
    border-radius: 20px;
    opacity: 0.5;
}

.about-img img {
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

/* Portfolio */
.portfolio {
    background-color: var(--darker-bg);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: #ccc;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    font-family: inherit;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--glow-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid var(--glass-border);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.85);
    /* Darker overlay */
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    color: #fff;
    border: 1px solid var(--primary-color);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: 0.4s;
    color: var(--primary-color);
}

.portfolio-overlay p {
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: 0.4s;
    color: #fff;
}

.portfolio-overlay a {
    width: 50px;
    height: 50px;
    background: transparent;
    color: #fff;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(20px);
    transition: 0.4s;
}

.portfolio-overlay a:hover {
    background: var(--secondary-color);
    box-shadow: var(--glow-secondary);
}

.portfolio-item:hover h3,
.portfolio-item:hover p,
.portfolio-item:hover a {
    transform: translateY(0);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #1a0b2e, #0b1a2e);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-banner p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials */
.testimonials {
    background-color: var(--dark-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    border-top: 4px solid var(--primary-color);
    /* Cyan Top Border */
    position: relative;
}

/* Quote Icon needed? CSS pseudo element */
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid var(--secondary-color);
}

.client-info span {
    font-size: 0.85rem;
    color: var(--primary-color);
}

.feedback {
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.7;
}

.stars {
    color: #ffd700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.team-member {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.team-member img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    filter: grayscale(80%);
    transition: var(--transition);
}

.team-member:hover img {
    filter: grayscale(0%);
}

.member-info {
    padding: 25px;
}

.member-info h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.member-info p {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.social-links a {
    color: #ccc;
    margin: 0 10px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--primary-color);
}

/* Pricing */
.pricing {
    background-color: var(--darker-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: var(--secondary-color);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.05);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: rgba(0, 243, 255, 0.02);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.08);
    box-shadow: var(--glow-primary);
}

.pricing-card .badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: #000;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.pricing-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-card ul {
    margin: 30px 0;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 15px;
    color: #ccc;
    display: flex;
    align-items: center;
}

.pricing-card ul li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 0.9rem;
}

.pricing-card ul li.na {
    opacity: 0.4;
    text-decoration: line-through;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.date {
    position: absolute;
    top: 15px;
    right: 15px;
    bottom: auto;
    background: rgba(0, 0, 0, 0.8);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-content h3 a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 8px rgba(188, 19, 254, 0.6);
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    text-decoration: underline;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
}

.contact-form {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    outline: none;
    margin-bottom: 20px;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    border-color: var(--primary-color);
    background: rgba(0, 243, 255, 0.05);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

.info-box {
    display: flex;
    margin-bottom: 40px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.info-box:hover {
    border-color: var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
}

.info-box .icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-right: 25px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.info-box h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: #fff;
}

.info-box p {
    color: #ccc;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: #020202;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {

    .header .navbar,
    .header .btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .navbar.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(15px);
        padding: 20px;
        border-bottom: 1px solid var(--primary-color);
    }

    .navbar.active a {
        margin: 15px 0;
        font-size: 1.1rem;
    }

    .hero {
        padding-top: 120px;
        height: auto;
        min-height: 100vh;
        text-align: center;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
        border: none;
        padding: 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .input-group {
        grid-template-columns: 1fr;
    }
}