/* Base Styles */
:root {
    --black: #0A0A0A;
    --dark-gray: #1E1E1E;
    --neon-pink: #FF00F5;
    --neon-cyan: #00F5FF;
    --gold: #FFD700;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    text-transform: uppercase;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.neon-text {
    text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
}

.neon-pink {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.neon-cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 0 10px var(--neon-pink);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
/* Hero Section with Background Image */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: glow 2s infinite alternate;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
  }
  
  /* Neon Effects */
  .neon-text {
    text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
  }
  
  .neon-cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
  }
  
  .neon-button {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--neon-pink);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px var(--neon-pink);
    border-radius: 30px;
  }
  
  .neon-button:hover {
    background: var(--neon-pink);
    color: var(--black);
    box-shadow: 0 0 30px var(--neon-pink);
  }
  
  /* Animation */
  @keyframes glow {
    from {
      text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
    }
    to {
      text-shadow: 0 0 15px var(--neon-pink), 0 0 30px var(--neon-pink), 0 0 45px var(--neon-pink);
    }
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .hero-title {
      font-size: 3.5rem;
    }
    .hero-subtitle {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      min-height: 500px;
    }
    .hero-title {
      font-size: 2.5rem;
      letter-spacing: 2px;
    }
    .hero-subtitle {
      font-size: 1.1rem;
    }
    .neon-button {
      padding: 0.8rem 2rem;
      font-size: 1rem;
    }
  }

/* Instagram Feed */
.instagram-section {
    padding: 5rem 5%;
    background: var(--dark-gray);
    text-align: center;
}

.instagram-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.instagram-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 5px;
}

.instagram-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover::before {
    opacity: 1;
}

.instagram-item i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover i {
    opacity: 1;
}

.instagram-link {
    display: inline-block;
    color: var(--neon-pink);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    text-shadow: 0 0 10px var(--neon-pink);
    transform: scale(1.05);
}

/* Portfolio Section - Updated */
.portfolio {
    padding: 5rem 5%;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--neon-cyan);
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--neon-cyan);
    color: var(--black);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    border-radius: 5px;
}

.portfolio-item:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(255, 0, 245, 0.3);
}

/* Remove gradient overlay since we're hiding info completely */
.portfolio-item::after {
    content: none;
}

.portfolio-info {
    position: absolute;
    bottom: -100%; /* Completely hide by default */
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.95);
    transition: bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

.portfolio-item:hover .portfolio-info {
    bottom: 0; /* Slide up to show completely */
}

.portfolio-category {
    color: var(--neon-cyan);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.view-more {
    color: var(--neon-pink);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.view-more:hover {
    text-shadow: 0 0 8px var(--neon-pink);
}

/* Mobile Styles - Always show info */
@media (max-width: 768px) {
    .portfolio-info {
        bottom: 0 !important;
        background: rgba(10, 10, 10, 0.85);
        padding: 1.2rem;
    }
    
    .portfolio-item:hover .portfolio-info {
        bottom: 0 !important;
    }
    
    .portfolio-title {
        font-size: 1.1rem;
    }
}

/* Services Section */
.services-section {
    position: relative;
    padding: 100px 20px;
    background: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat fixed;
    z-index: 1;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    z-index: -1;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255, 0, 245, 0.2);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 0, 245, 0.3);
    border-color: var(--neon-pink);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--neon-pink);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--neon-cyan);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-description {
    margin-bottom: 25px;
    line-height: 1.6;
    min-height: 80px;
}

.service-btn {
    background: transparent;
    color: white;
    border: 2px solid var(--neon-cyan);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.service-btn:hover {
    background: var(--neon-cyan);
    color: var(--black);
    box-shadow: 0 0 20px var(--neon-cyan);
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--neon-pink);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 245, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 0, 245, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 245, 0); }
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

/* Artists Section - Fixed */
.artists-section {
    padding: 80px 20px;
    background-color: var(--dark-gray);
    position: relative;
}

.artists-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.artist-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.2);
    border-color: var(--neon-cyan);
}

.artist-image-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    position: relative;
}

.artist-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--neon-cyan);
    box-shadow: 0 0 25px var(--neon-cyan);
}

.artist-name {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--neon-pink);
}

.artist-skills {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill {
    text-align: left;
}

.skill-name {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--white);
}

/* Skill Bars - Improved Visibility */
.skill-bar-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.skill-bar {
    height: 10px; /* Thicker bar for better visibility */
    background: rgba(255, 255, 255, 0.1); /* Lighter track */
    border-radius: 5px;
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 5px rgba(0, 245, 255, 0.3); /* Glow effect */
}

.skill-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, 
                var(--neon-cyan) 0%, 
                #00d9ff 100%); /* Gradient for better visibility */
    border-radius: 5px;
    transition: width 1s ease-out;
    box-shadow: 0 0 10px var(--neon-cyan); /* Inner glow */
}

.skill-percent {
    font-size: 0.9rem;
    color: var(--neon-cyan);
    font-weight: 600;
    width: 40px;
    text-align: right;
    text-shadow: 0 0 5px var(--neon-cyan);
}

/* Animation when visible */
@keyframes skill-glow {
    0% { box-shadow: 0 0 5px var(--neon-cyan); }
    50% { box-shadow: 0 0 15px var(--neon-cyan); }
    100% { box-shadow: 0 0 5px var(--neon-cyan); }
}

.skill-bar.animate::after {
    animation: skill-glow 2s infinite;
}


/* Responsive Fixes */
@media (max-width: 768px) {
    .artists-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .artist-card {
        padding: 25px;
    }
    
    .artist-image-container {
        width: 150px;
        height: 150px;
    }
}

/* Contact Section - Fixed Layout */
.contact-section {
    padding: 80px 5%;
    background-color: var(--dark-gray);
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 40px auto 0;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 1.4rem;
    min-width: 30px;
}

.info-item p {
    margin: 0;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--neon-pink);
    transform: translateY(-3px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 245, 0.3);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info, .contact-form {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 20px;
    }
    
    .info-item p {
        font-size: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Live Chat */
.chat-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--neon-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 20px var(--neon-pink);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.chat-toggle i {
    font-size: 1.5rem;
    color: var(--black);
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: var(--dark-gray);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 0, 245, 0.3);
    overflow: hidden;
    display: none;
    flex-direction: column;
    z-index: 1000;
    border: 1px solid var(--neon-pink);
}

.chat-container.active {
    display: flex;
}

.chat-header {
    background: var(--neon-pink);
    color: var(--black);
    padding: 1rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-chat {
    background: transparent;
    border: none;
    color: var(--black);
    cursor: pointer;
    font-size: 1.2rem;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message.bot {
    background: rgba(255, 0, 245, 0.2);
    border-bottom-left-radius: 5px;
    align-self: flex-start;
}

.message.user {
    background: rgba(0, 245, 255, 0.2);
    border-bottom-right-radius: 5px;
    align-self: flex-end;
}

.chat-input {
    display: flex;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input input {
    flex: 1;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem;
    color: var(--white);
    border-radius: 30px;
    font-size: 0.9rem;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--neon-cyan);
}

.chat-input button {
    background: var(--neon-cyan);
    color: var(--black);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.chat-input button:hover {
    transform: scale(1.1);
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 1rem 1rem;
}

.quick-reply {
    background: rgba(255, 0, 245, 0.1);
    color: var(--white);
    border: 1px solid var(--neon-pink);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-reply:hover {
    background: var(--neon-pink);
    color: var(--black);
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
    }
    to {
        text-shadow: 0 0 15px var(--neon-pink), 0 0 30px var(--neon-pink), 0 0 45px var(--neon-pink);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 245, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 245, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 245, 0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--black);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .instagram-feed {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-container {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    .chat-container {
        width: 300px;
        height: 450px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .instagram-feed {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .chat-container {
        width: 280px;
        right: 10px;
    }
}

/* Footer Section */
.footer {
    background-color: #0A0A0A;
    color: var(--white);
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--neon-pink);
}

.footer-tagline {
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: var(--white);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--neon-pink);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-pink);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact i {
    color: var(--neon-cyan);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    color: var(--white);
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--neon-pink);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 5%;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact i {
        margin-right: 8px;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
}