:root {
    --primary: #00f2ff;
    --secondary: #7000ff;
    --dark: #0a0a0c;
    --light: #f4f4f4;
    --gray: #2a2a2e;
    --accent: #ff007a;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    height: 40px;
}

nav a {
    margin-right: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

nav a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.laser-line {
    width: 200%;
    height: 2px;
    background: var(--primary);
    position: absolute;
    top: 50%;
    left: -50%;
    box-shadow: 0 0 20px var(--primary);
    animation: laser-sweep 4s infinite linear;
    z-index: 1;
}

@keyframes laser-sweep {
    0% { transform: translateY(-100px) rotate(-5deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100px) rotate(5deg); opacity: 0; }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a0c 100%);
    z-index: 0;
}

/* Sections */
.section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--primary);
    margin: 10px auto 0;
}

/* Service Cards */
.grid-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--gray);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
    border-color: var(--primary);
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Gallery Horizontal Scroll */
.gallery {
    background: #000;
    padding: 40px 0;
}

.scrolling-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    scrollbar-width: none;
}

.scrolling-wrapper::-webkit-scrollbar {
    display: none;
}

.scrolling-wrapper img {
    flex: 0 0 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s;
}

.scrolling-wrapper img:hover {
    transform: scale(1.05);
}

/* Contact / CTA */
.cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0c 100%);
    text-align: center;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.email-btn {
    background: var(--primary);
    color: var(--dark);
}

.email-btn:hover {
    background: white;
    transform: scale(1.05);
}

/* Footer */
.double-footer {
    background: #050507;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    padding: 20px 0;
    background: #000;
    font-size: 0.9rem;
    color: #666;
}

.flex-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
}