/* Design Philosophy: Miami 80s Retro Luxury
   Color Palette: Purple (#7c3aed), Electric Blue (#0ea5e9), Neon Pink (#ec4899), Sunset Orange (#f97316), Cyan (#06b6d4)
   Effects: Neon glows, glassmorphism, synthwave, cinematic lighting
   Typography: Bold futuristic with luxury finishes
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-purple: #7c3aed;
    --neon-blue: #0ea5e9;
    --neon-cyan: #06b6d4;
    --neon-pink: #ec4899;
    --neon-orange: #f97316;
    --dark-bg: #0f0f1e;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --text-light: #e0e0ff;
    --text-dark: #1a1a2e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-light);
    background-color: var(--dark-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #ec4899, #06b6d4, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1 { font-size: 4rem; }
h2 { font-size: 2.8rem; margin-bottom: 2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p {
    font-size: 1rem;
    color: rgba(224, 224, 255, 0.8);
    margin-bottom: 1rem;
}

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(15, 15, 30, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(124, 58, 237, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 15, 30, 0.95);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ec4899, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ec4899, #7c3aed);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
}

.nav-cta:hover {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.8);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.6), rgba(236, 72, 153, 0.5), rgba(6, 182, 212, 0.4));
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: white;
    padding: 40px;
    animation: slideInLeft 0.8s ease-out;
}

.hero-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.hero-title {
    color: white;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ec4899, #06b6d4, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: bounce 2s infinite;
    box-shadow: 0 0 10px var(--neon-cyan);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.reveal-on-load {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.reveal:nth-child(2) { animation-delay: 0.1s; }
.reveal:nth-child(3) { animation-delay: 0.2s; }
.reveal:nth-child(4) { animation-delay: 0.3s; }
.reveal:nth-child(5) { animation-delay: 0.4s; }
.reveal:nth-child(6) { animation-delay: 0.5s; }

/* Buttons */
.btn {
    padding: 1.1rem 2.2rem;
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    color: white;
    border: 2px solid var(--neon-pink);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.8);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

.btn-secondary:hover {
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
}

.neon-glow {
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
}

.neon-glow:hover {
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.8);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(15, 15, 30, 0.8), rgba(124, 58, 237, 0.1));
    border-top: 2px solid rgba(6, 182, 212, 0.3);
}

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

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(124, 58, 237, 0.1);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.1);
}

.glass-card img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.1), rgba(15, 15, 30, 0.8));
    border-top: 2px solid rgba(236, 72, 153, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(6, 182, 212, 0.2);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
    background: rgba(6, 182, 212, 0.05);
}

.neon-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.5));
}

.service-card h3 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card p {
    color: rgba(224, 224, 255, 0.7);
    font-size: 0.95rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(15, 15, 30, 0.8), rgba(124, 58, 237, 0.1));
    border-top: 2px solid rgba(6, 182, 212, 0.3);
}

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

.benefit {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(124, 58, 237, 0.05);
    border-left: 4px solid var(--neon-cyan);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit:hover {
    background: rgba(124, 58, 237, 0.15);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.benefit-icon {
    font-size: 1.8rem;
    color: var(--neon-pink);
    font-weight: 700;
    min-width: 40px;
    filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.5));
}

.benefit h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit p {
    color: rgba(224, 224, 255, 0.7);
    font-size: 0.95rem;
}

/* Before/After Section */
.before-after {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.1), rgba(15, 15, 30, 0.8));
    border-top: 2px solid rgba(236, 72, 153, 0.3);
}

.before-after-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.3);
    border: 2px solid rgba(6, 182, 212, 0.3);
}

.before-after-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.1), rgba(15, 15, 30, 0.8));
    border-top: 2px solid rgba(236, 72, 153, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    cursor: pointer;
    border: 2px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.8), rgba(236, 72, 153, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: inset 0 0 30px rgba(6, 182, 212, 0.3);
}

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

.gallery-overlay p {
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.1), rgba(15, 15, 30, 0.8));
    border-top: 2px solid rgba(236, 72, 153, 0.3);
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
    border: 2px solid rgba(236, 72, 153, 0.3);
    transition: all 0.3s ease;
}

.testimonial:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.4);
    transform: translateY(-5px);
}

.stars {
    color: var(--neon-orange);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

.testimonial p {
    margin-bottom: 1rem;
    color: rgba(224, 224, 255, 0.8);
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(15, 15, 30, 0.8), rgba(124, 58, 237, 0.1));
    border-top: 2px solid rgba(6, 182, 212, 0.3);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
    border-left-color: var(--neon-pink);
}

.faq-question {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.faq-item p {
    color: rgba(224, 224, 255, 0.7);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.1), rgba(15, 15, 30, 0.8));
    border-top: 2px solid rgba(236, 72, 153, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
}

.detail-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.5));
}

.detail-label {
    font-size: 0.85rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.detail-item a {
    color: var(--neon-cyan);
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
    border: 2px solid rgba(6, 182, 212, 0.3);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(224, 224, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
    background: rgba(6, 182, 212, 0.05);
}

.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
    border-color: #ff4444;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    animation: slideInLeft 0.3s ease;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(15, 15, 30, 0.8), rgba(124, 58, 237, 0.1));
    border-top: 2px solid rgba(6, 182, 212, 0.3);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.3);
    border: 2px solid rgba(6, 182, 212, 0.3);
}

/* Floating Action Buttons */
.floating-call,
.floating-quote,
.scroll-to-top {
    position: fixed;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
    transition: all 0.3s ease;
    z-index: 100;
    border: 2px solid var(--neon-pink);
    cursor: pointer;
    text-decoration: none;
}

.floating-call {
    bottom: 30px;
    right: 30px;
}

.floating-quote {
    bottom: 120px;
    right: 30px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
}

.scroll-to-top {
    bottom: 210px;
    right: 30px;
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-pink));
    border-color: var(--neon-orange);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.floating-call:hover,
.floating-quote:hover,
.scroll-to-top:hover {
    transform: scale(1.15);
    box-shadow: 0 0 50px rgba(236, 72, 153, 0.8);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.2), rgba(15, 15, 30, 0.95));
    color: var(--text-light);
    padding: 60px 0 20px;
    border-top: 2px solid rgba(6, 182, 212, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(224, 224, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--neon-cyan);
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(6, 182, 212, 0.1);
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.social-links a:hover {
    background: var(--neon-cyan);
    color: var(--dark-bg);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    color: rgba(224, 224, 255, 0.5);
}

.footer-bottom a {
    color: rgba(224, 224, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--neon-cyan);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 30, 0.95);
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
    }

    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }

    .hero-title {
        font-size: 2.8rem;
    }

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

    .btn {
        width: 100%;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .floating-call,
    .floating-quote,
    .scroll-to-top {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        bottom: 20px;
        right: 20px;
    }

    .floating-quote {
        bottom: 90px;
    }

    .scroll-to-top {
        bottom: 160px;
    }

    .services-grid,
    .gallery-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        padding: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-label {
        font-size: 0.8rem;
    }

    .nav-container {
        padding: 0.75rem 15px;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}
