:root {
    --neon-pink: #ff2a6d;
    --neon-blue: #05d9e8;
    --neon-purple: #d300c5;
    --dark-bg: #0d0221;
    --text-glow: 0 0 10px currentColor;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rajdhani', 'Noto Sans SC', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        linear-gradient(rgba(13, 2, 33, 0.9), rgba(13, 2, 33, 0.9)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="10" height="10" x="0" y="0" fill="%23ff2a6d" opacity="0.1"/></svg>');
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 30px 0;
    border-bottom: 1px solid var(--neon-pink);
    position: relative;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-pink);
    text-shadow: var(--text-glow);
    text-align: center;
    margin-bottom: 10px;
}

.logo span {
    color: var(--neon-blue);
}

.tagline {
    text-align: center;
    font-size: 1.2rem;
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue);
    margin-bottom: 20px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 5px 15px;
    border: 1px solid var(--neon-purple);
    border-radius: 20px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: var(--neon-purple);
    color: white;
    text-shadow: var(--text-glow);
    box-shadow: 0 0 15px var(--neon-purple);
}

.hero {
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.hero h1 span {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #ddd;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    box-shadow: 0 0 20px var(--neon-pink);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--neon-pink);
}

.section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 42, 109, 0.2);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--neon-blue);
    text-shadow: 0 0 8px var(--neon-blue);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--neon-purple);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(211, 0, 197, 0.3);
    border-color: var(--neon-pink);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--neon-pink);
    margin-bottom: 20px;
    text-shadow: var(--text-glow);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.feature-desc {
    color: #ccc;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(5, 217, 232, 0.05);
    border: 1px solid var(--neon-blue);
    border-radius: 10px;
    padding: 30px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: 10px;
    left: 20px;
    color: rgba(5, 217, 232, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #ddd;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: bold;
    color: var(--neon-blue);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--neon-pink);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(13, 2, 33, 0.8), transparent);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
    color: white;
}

.gallery-caption h3 {
    color: var(--neon-pink);
    margin-bottom: 5px;
}

.faq-item {
    margin-bottom: 30px;
    border: 1px solid rgba(255, 42, 109, 0.3);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon-pink);
}

.faq-question {
    font-size: 1.3rem;
    color: var(--neon-blue);
    margin-bottom: 10px;
    cursor: pointer;
}

.faq-answer {
    color: #ccc;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-method {
    text-align: center;
    padding: 30px;
    border: 1px solid var(--neon-purple);
    border-radius: 10px;
}

.contact-icon {
    font-size: 2rem;
    color: var(--neon-pink);
    margin-bottom: 20px;
}

.contact-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.contact-detail {
    color: #ccc;
}

footer {
    padding: 40px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.footer-logo {
    font-size: 2rem;
    color: var(--neon-pink);
    margin-bottom: 20px;
    text-shadow: var(--text-glow);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-blue);
    text-shadow: var(--text-glow);
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Mobile styles */
@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    nav {
        gap: 10px;
    }
    
    nav a {
        padding: 5px 10px;
        font-size: 0.9rem;
    }
}

/* Animation */
@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Grid lines for cyberpunk effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(5, 217, 232, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(5, 217, 232, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}
