/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #9d4edd; /* Vivid Violet */
    --secondary-color: #e0aaff; /* Light Lilac */
    --accent-color: #ff006e; /* Neon Pink for high contrast */
    --dark-bg: #10002b; /* Deepest Violet/Black */
    --card-bg: rgba(36, 0, 70, 0.4); /* Glassy Violet */
    --light-color: #ffffff;
    --gray-color: #c77dff; /* Light violet-gray */
    --gradient-main: linear-gradient(135deg, #9d4edd 0%, #3c096c 100%);
    --gradient-accent: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 10px rgba(157, 78, 221, 0.5), 0 0 20px rgba(157, 78, 221, 0.3);
    --text-glow: 0 0 10px rgba(224, 170, 255, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: radial-gradient(circle at center, #240046 0%, #10002b 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 25px 0;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(16, 0, 43, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo i {
    color: var(--accent-color);
    font-size: 2.2rem;
    filter: drop-shadow(0 0 5px var(--accent-color));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent-color);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary-color);
    text-shadow: var(--text-glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--light-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 20px;
    overflow: hidden;
    background-image: linear-gradient(to bottom, rgba(16, 0, 43, 0.5), rgba(16, 0, 43, 0.2)), url('alice.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.fire-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.fire-layer {
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 140%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, rgba(157, 78, 221, 0.4) 0%, transparent 60%);
    mix-blend-mode: screen;
    animation: firePulse 4s infinite alternate ease-in-out;
    filter: blur(30px);
    opacity: 0.7;
}

.fire-layer:nth-child(2) {
    background: radial-gradient(ellipse at bottom, rgba(255, 0, 110, 0.3) 10%, transparent 50%);
    animation-duration: 3s;
    animation-delay: 0.5s;
    bottom: -10%;
    filter: blur(20px);
}

.fire-layer:nth-child(3) {
    background: radial-gradient(ellipse at bottom, rgba(123, 44, 191, 0.5) 0%, transparent 70%);
    animation-duration: 5s;
    animation-delay: 1s;
    bottom: -30%;
    filter: blur(40px);
}

@keyframes firePulse {
    0% {
        transform: scale(1) translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05) translateY(-20px);
        opacity: 0.8;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 0.6;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.glitch {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: var(--light-color);
    letter-spacing: -2px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.8);
    animation: glitch-skew 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff006e;
    clip-path: inset(20% 0 30% 0);
    animation: glitch-anim-1 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00f2ea;
    clip-path: inset(60% 0 10% 0);
    animation: glitch-anim-2 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip-path: inset(20% 0 80% 0); }
    20% { clip-path: inset(60% 0 10% 0); }
    40% { clip-path: inset(40% 0 50% 0); }
    60% { clip-path: inset(80% 0 5% 0); }
    80% { clip-path: inset(10% 0 70% 0); }
    100% { clip-path: inset(30% 0 20% 0); }
}

@keyframes glitch-anim-2 {
    0% { clip-path: inset(10% 0 60% 0); }
    20% { clip-path: inset(80% 0 5% 0); }
    40% { clip-path: inset(30% 0 20% 0); }
    60% { clip-path: inset(10% 0 80% 0); }
    80% { clip-path: inset(50% 0 30% 0); }
    100% { clip-path: inset(70% 0 10% 0); }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    20% { transform: skew(-2deg); }
    40% { transform: skew(2deg); }
    60% { transform: skew(-1deg); }
    80% { transform: skew(1deg); }
    100% { transform: skew(0deg); }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin: 0 auto 40px;
    color: var(--secondary-color);
    font-weight: 300;
    max-width: 600px;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-flex;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 5px rgba(255, 0, 110, 0.3));
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: var(--gradient-main);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.6);
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    top: 2px;
    color: var(--primary-color);
    z-index: -1;
    opacity: 0.7;
}

.title-underline {
    width: 80px;
    height: 6px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 3px;
    box-shadow: 0 0 15px var(--accent-color);
}

.section-subtitle {
    color: var(--gray-color);
    font-size: 1.1rem;
    margin-top: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* About Section */
.about {
    background: linear-gradient(to bottom, var(--dark-bg), #1a0b2e);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    transform: translate(20px, 20px);
    z-index: -1;
    transition: transform 0.3s ease;
}

.image-wrapper:hover::after {
    transform: translate(10px, 10px);
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
    filter: grayscale(20%) contrast(110%);
}

.image-wrapper:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(120%);
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: #e0e0e0;
    line-height: 1.9;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(157, 78, 221, 0.1);
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.cert-item i {
    color: var(--accent-color);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 5px var(--accent-color));
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: var(--glass-border);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2) 0%, rgba(255, 0, 110, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(60, 9, 108, 0.8) 0%, rgba(36, 0, 70, 0.9) 100%);
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.2);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--light-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 0 15px var(--accent-color);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--light-color);
    transform: rotateY(180deg);
    box-shadow: 0 0 20px var(--primary-color);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

.service-features li {
    padding: 12px 0;
    color: #d0d0d0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--accent-color);
    margin-right: 10px;
}

.service-btn {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-btn:hover {
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
}

/* Transformations Section */
.transformations {
    background: #0a001a;
}

.transformation-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: var(--glass-border);
    transition: all 0.3s ease;
}

.transformation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-color: var(--accent-color);
}

.slider-line {
    background: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-color);
    width: 3px;
}

.transformation-info {
    padding: 25px;
    background: rgba(0,0,0,0.2);
}

.transformation-info h4 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.transformation-info p {
    color: var(--light-color);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    background: radial-gradient(circle at center, #1a0b2e 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 78, 221, 0.2);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    display: none;
    position: relative;
    overflow: hidden;
}

.testimonial-card.active {
    display: block;
    animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    color: rgba(157, 78, 221, 0.1);
    z-index: 0;
}

.stars {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.4);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.4rem;
    color: #e0e0e0;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
}

.testimonial-author div {
    text-align: left;
}

.testimonial-author h4 {
    color: var(--light-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(157, 78, 221, 0.3);
    color: var(--light-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-form-wrapper {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 30px;
    border: var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 25px 18px 55px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(157, 78, 221, 0.3);
    color: var(--light-color);
    border-radius: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group i {
    position: absolute;
    left: 20px;
    top: 20px;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.form-group input:focus + i,
.form-group textarea:focus + i,
.form-group select:focus + i {
    color: var(--accent-color);
}

.submit-btn {
    padding: 18px 40px;
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(157, 78, 221, 0.3);
}

.submit-btn:hover {
    background: var(--gradient-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    border: 1px solid rgba(157, 78, 221, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--accent-color);
    color: var(--light-color);
    box-shadow: 0 0 20px var(--accent-color);
}

.contact-item h4 {
    font-size: 1.2rem;
    color: var(--light-color);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray-color);
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--primary-color);
}

/* Footer */
.footer {
    background: #050010;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(157, 78, 221, 0.1);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand p {
    color: var(--gray-color);
    margin-top: 15px;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--light-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--gray-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .logo {
        font-size: 1.2rem;
        gap: 8px;
    }

    .logo i {
        font-size: 1.4rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(16, 0, 43, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 20px 0;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Hero Section */
    .hero {
        min-height: 70vh;
        padding: 100px 20px;
        background-attachment: scroll !important;
        background-position: center top !important;
        background-size: cover !important;
        /* Removed gradient to ensure visibility */
        background-image: url('alicefit.jpg') !important;
    }

    .glitch {
        font-size: 3rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        padding: 0;
        width: 100%;
        background: transparent;
        backdrop-filter: none;
        border: none;
        margin: 20px 0;
    }

    .stat-item {
        flex: 0 1 auto;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }

    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .image-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .image-wrapper img {
        height: 400px;
    }

    .image-wrapper::after {
        transform: translate(10px, 10px);
    }

    .about-text h3 {
        font-size: 2rem;
    }

    .certifications {
        justify-content: center;
    }

    /* Contact & Footer */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links ul {
        justify-content: center;
        flex-wrap: wrap;
    }
}
