/* Base Styles */
:root {
    --primary-color: #00C9FF;
    --secondary-color: #FF5E94;
    --accent-color: #B06AFF;
    --dark-bg: #101010;
    --light-bg: #2B2B2B;
    --text-color: #FFFFFF;
    --text-muted: #AAAAAA;
    --border-radius: 10px;
    --transition: all 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

p {
    margin-bottom: 20px;
}

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

ul {
    list-style: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

section {
    padding: 100px 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(16, 16, 16, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    width: 180px;
    height: 40px;
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu li a {
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
}

.menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.menu li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #333, #101010);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="rgba(0,201,255,0.1)" width="100" height="1" x="0" y="20" /><rect fill="rgba(255,94,148,0.1)" width="100" height="1" x="0" y="40" /><rect fill="rgba(176,106,255,0.1)" width="100" height="1" x="0" y="60" /><rect fill="rgba(0,201,255,0.1)" width="100" height="1" x="0" y="80" /></svg>');
    opacity: 0.2;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(0, 201, 255, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.primary-button {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 15px rgba(0, 201, 255, 0.4);
    transition: var(--transition);
}

.primary-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 201, 255, 0.6);
}

/* Benefits Section */
.benefits {
    background-color: var(--light-bg);
}

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

.benefit-card {
    background-color: rgba(16, 16, 16, 0.7);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-svg {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item p {
    padding: 15px;
    text-align: center;
    background-color: var(--light-bg);
    margin-bottom: 0;
}

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

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

.testimonial-card {
    background-color: var(--dark-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stars {
    color: gold;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: var(--text-muted);
    font-weight: 500;
}

/* CTA Section */
.cta {
    text-align: center;
    background: linear-gradient(135deg, #101010, #2B2B2B);
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" stroke="rgba(0,201,255,0.1)" stroke-width="1" fill="none" /></svg>');
    opacity: 0.3;
}

.cta h2 {
    color: var(--primary-color);
}

.cta p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-muted);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.footer-menu h3,
.footer-legal h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-menu ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-menu a,
.footer-legal a {
    color: var(--text-muted);
}

.footer-menu a:hover,
.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-icon {
    margin-bottom: 15px;
}

.copyright {
    color: var(--text-muted);
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--dark-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        gap: 40px;
    }
    
    .menu.active {
        left: 0;
    }
    
    .menu li a {
        font-size: 1.3rem;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .primary-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .benefits-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
