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

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #e8e8e8;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b2e 50%, #1a1a1a 100%);
    min-height: 100vh;
}

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

/* Header */
header {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #ff6b9d;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: #e8e8e8;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff6b9d;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background: #ff6b9d;
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 27, 46, 0.9) 50%, rgba(26, 26, 26, 0.9) 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ff6b9d" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 100;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ff6b9d, #c44569, #ff6b9d);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
}

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

.lead {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(20, 20, 20, 0.8);
}

.features h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #e8e8e8;
    font-weight: 100;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 157, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #c44569, #ff6b9d);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 107, 157, 0.1);
    border-color: rgba(255, 107, 157, 0.3);
}

.feature-card h3 {
    color: #ff6b9d;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-card p {
    color: #b8b8b8;
    line-height: 1.8;
    font-weight: 300;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: rgba(26, 26, 26, 0.9);
}

.content-section:nth-child(even) {
    background: rgba(20, 20, 20, 0.9);
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #e8e8e8;
    font-weight: 200;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.content-section h3 {
    font-size: 1.6rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #ff6b9d;
    font-weight: 300;
    letter-spacing: 1px;
}

.content-section p {
    margin-bottom: 1.5rem;
    color: #c8c8c8;
    line-height: 1.9;
    font-weight: 300;
    font-size: 1.05rem;
}

.content-section strong {
    color: #ff6b9d;
    font-weight: 400;
}

.content-section ul {
    margin-left: 0;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    list-style: none;
}

.content-section li {
    margin-bottom: 1rem;
    color: #c8c8c8;
    padding-left: 2rem;
    position: relative;
    font-weight: 300;
}

.content-section li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff6b9d;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    color: #b8b8b8;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 107, 157, 0.1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b9d, transparent);
}

footer p {
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

footer p:last-child {
    font-size: 0.9rem;
    opacity: 0.7;
}

footer strong {
    color: #ff6b9d;
    font-weight: 400;
}

/* Services */
.services-list {
    margin-top: 3rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 157, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ff6b9d, #c44569);
}

.service-item:hover {
    background: rgba(255, 107, 157, 0.08);
    border-color: rgba(255, 107, 157, 0.4);
    transform: translateX(10px);
}

.service-item h3 {
    color: #ff6b9d;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-item p {
    color: #c8c8c8;
    line-height: 1.9;
    font-weight: 300;
}

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

.gallery-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 157, 0.1);
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 107, 157, 0.4);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
}

.gallery-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.8) 0%, rgba(196, 69, 105, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.gallery-item h3 {
    padding: 1.5rem;
    color: #e8e8e8;
    text-align: center;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.1rem;
}

/* Contact Info */
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    border: 1px solid rgba(255, 107, 157, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b9d, #c44569, #ff6b9d);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.contact-info h3 {
    color: #ff6b9d;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.4rem;
}

.contact-info p {
    margin-bottom: 1.2rem;
    color: #c8c8c8;
    font-weight: 300;
    line-height: 1.8;
}

.contact-info strong {
    color: #ff6b9d;
    font-weight: 400;
}

/* FAQ */
.faq-list {
    margin-top: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 157, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ff6b9d, #c44569);
}

.faq-item:hover {
    background: rgba(255, 107, 157, 0.05);
    border-color: rgba(255, 107, 157, 0.3);
    transform: translateX(5px);
}

.faq-item h3 {
    color: #ff6b9d;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.faq-item p {
    color: #c8c8c8;
    line-height: 1.9;
    margin: 0;
    font-weight: 300;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Anchor offset for fixed header */
section {
    scroll-margin-top: 100px;
}

/* Body padding for fixed header */
body {
    padding-top: 0;
}

main {
    padding-top: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1.5rem;
        background: rgba(20, 20, 20, 0.95);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 2rem;
        border-top: 1px solid rgba(255, 107, 157, 0.2);
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .service-item:hover {
        transform: none;
    }
    
    .faq-item:hover {
        transform: none;
    }
}

