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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: white;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(140, 122, 205, 0.3);
}

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

.nav-logo {
    font-size: 1.8em;
    font-weight: 700;
    background: linear-gradient(135deg, #8c7acd, #38b6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1.05em;
}

.nav-links a:hover {
    color: #38b6ff;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a0a2e 50%, #8c7acd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(140, 122, 205, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(56, 182, 255, 0.3) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 1200px;
    padding: 0 40px;
}

.hero-title {
    font-size: 7em;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #8c7acd, #38b6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 2.5em;
    margin-bottom: 20px;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #d0d0d0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-cta {
    display: inline-flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.btn {
    padding: 18px 45px;
    font-size: 1.1em;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #8c7acd, #38b6ff);
    color: white;
    box-shadow: 0 10px 30px rgba(56, 182, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(56, 182, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #38b6ff;
}

.btn-secondary:hover {
    background: rgba(56, 182, 255, 0.1);
    transform: translateY(-3px);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styling */
section {
    min-height: 100vh;
    padding: 100px 40px;
    position: relative;
}

.section-dark {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    padding-top: 100px;
}

.section-accent {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a2e 50%, #0a0a0a 100%);
    padding-top: 100px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #38b6ff;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #8c7acd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2em;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: linear-gradient(135deg, rgba(140, 122, 205, 0.1), rgba(56, 182, 255, 0.05));
    border: 1px solid rgba(140, 122, 205, 0.3);
    border-radius: 20px;
    padding: 60px 45px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: #38b6ff;
    box-shadow: 0 20px 60px rgba(56, 182, 255, 0.3);
}

.service-icon {
    font-size: 4em;
    margin-bottom: 30px;
    color: #38b6ff;
    filter: drop-shadow(0 0 20px rgba(56, 182, 255, 0.5));
}

.service-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #38b6ff;
    font-weight: 700;
}

.service-description {
    color: #d0d0d0;
    line-height: 1.8;
    font-size: 1.05em;
    margin-bottom: 30px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-list li {
    color: #b0b0b0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(140, 122, 205, 0.2);
    font-size: 1em;
    transition: all 0.3s;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:before {
    content: "✓";
    color: #38b6ff;
    font-weight: bold;
    margin-right: 12px;
}

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

.gallery-item {
    height: 450px;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

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

.gallery-overlay-icon {
    font-size: 4em;
    margin-bottom: 20px;
    display: none;
}

.gallery-overlay-text {
    font-size: 1.5em;
    font-weight: 600;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(140, 122, 205, 0.15), rgba(56, 182, 255, 0.1));
    border: 1px solid rgba(140, 122, 205, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #38b6ff;
    box-shadow: 0 10px 40px rgba(56, 182, 255, 0.2);
}

.contact-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #38b6ff;
}

.contact-label {
    font-size: 0.9em;
    color: #8c7acd;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-value {
    font-size: 1.2em;
    color: white;
    font-weight: 500;
}

.contact-value a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value a:hover {
    color: #38b6ff;
}

.contact-cta {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(140, 122, 205, 0.2), rgba(56, 182, 255, 0.2));
    border-radius: 30px;
    border: 2px solid rgba(140, 122, 205, 0.4);
}

.contact-cta h3 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.2em;
    color: #d0d0d0;
    margin-bottom: 40px;
}

/* Footer */
footer {
    background: #000000;
    padding: 60px 40px 40px;
    text-align: center;
    border-top: 1px solid rgba(140, 122, 205, 0.3);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2em;
    font-weight: 700;
    background: linear-gradient(135deg, #8c7acd, #38b6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-credentials {
    color: #38b6ff;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.footer-text {
    color: #808080;
    font-size: 0.95em;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 4.5em; }
    .hero-subtitle { font-size: 1.8em; }
    .services-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3em; }
    .hero-subtitle { font-size: 1.3em; letter-spacing: 3px; }
    .hero-description { font-size: 1.1em; }
    .section-title { font-size: 2.5em; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; }
    section { padding: 80px 20px; }
}
