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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0f0f23;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.highlight {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.highlight-2 {
    color: #8a2be2;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.4);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #0f0f23;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #00d4ff;
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #00d4ff;
    border: 1px dashed #333;
}

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.05);
}

.btn-block {
    width: 100%;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    z-index: 1000;
    padding: 12px 0;
    transition: background 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 22px;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    background: linear-gradient(135deg, #00d4ff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-link {
    text-decoration: none;
    color: #b0b0b0;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover {
    color: #00d4ff;
}

.nav-link.active,
.nav-link:hover::after {
    color: #00d4ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #8a2be2);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #e0e0e0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-close {
    display: none;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    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(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 30%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-content h1 .highlight {
    font-size: 3.5rem;
}

.hero-text {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 28px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-card {
    position: relative;
    background: rgba(15, 15, 35, 0.7);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.pulse-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 20px;
    border: 2px solid #00d4ff;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.5);
        opacity: 0.8;
    }
    70% {
        box-shadow: 0 0 0 20px rgba(0, 212, 255, 0);
        opacity: 0;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
        opacity: 0;
    }
}

.hero-img {
    width: 100%;
    border-radius: 10px;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-header h2 .highlight {
    font-size: 2.5rem;
}

.section-header p {
    color: #b0b0b0;
    font-size: 1.1rem;
}

.service {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f0f23 0%, #15152a 100%);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #8a2be2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
}

.service-icon {
    font-size: 42px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #fff;
}

.service-card p {
    color: #b0b0b0;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 16px;
}

.service-features li {
    padding: 6px 0;
    color: #00d4ff;
    font-size: 0.9rem;
    position: relative;
    padding-left: 24px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
}

.service-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #8a2be2;
    margin-top: auto;
}

.team {
    padding: 80px 0;
}

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

.team-card {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-5px);
}

.team-img {
    flex: 0 0 120px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-info {
    flex: 1;
    padding: 20px;
}

.team-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-info p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.team-contact a {
    color: #8a2be2;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.team-contact a:hover {
    color: #00d4ff;
}

.location {
    padding: 80px 0;
    background: linear-gradient(180deg, #15152a 0%, #0f0f23 100%);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.location-info h3,
.location-directions h3,
.location-address h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 12px;
}

.address-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.address-meta {
    color: #b0b0b0;
    margin-top: 12px;
    font-size: 0.95rem;
}

.directions-list {
    list-style: decimal;
    padding-left: 20px;
    margin-top: 10px;
}

.directions-list li {
    margin-bottom: 10px;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.map-placeholder {
    margin-top: 20px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px dashed rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    color: #b0b0b0;
}

.map-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.location-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.gallery {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f0f23 0%, #15152a 100%);
}

.gallery-upload {
    margin-bottom: 30px;
}

.upload-area {
    border: 2px dashed rgba(0, 212, 255, 0.4);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 212, 255, 0.03);
}

.upload-area:hover {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.08);
    transform: scale(1.02);
}

.upload-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.upload-text {
    color: #b0b0b0;
    font-size: 1rem;
    margin-bottom: 12px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.gallery-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: #555;
    grid-column: 1 / -1;
}

.gallery-placeholder-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-item .gallery-actions {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-remove {
    background: rgba(255, 69, 69, 0.9);
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s ease;
}

.gallery-remove:hover {
    background: #ff3333;
    transform: scale(1.1);
}

.contact {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-detail {
    color: #e0e0e0;
    font-size: 1.05rem;
}

.contact-detail h4 {
    color: #fff;
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row input,
.form-row textarea {
    width: 100%;
}

.form-row input,
textarea {
    padding: 14px 16px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    background: rgba(15, 15, 35, 0.5);
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
    resize: vertical;
}

.form-row input:focus,
textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

textarea {
    min-height: 150px;
}

.footer {
    background: #0a0a1a;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 30px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    text-decoration: none;
    color: #b0b0b0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #00d4ff;
}

.footer-text {
    color: #707070;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h1 .highlight {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .nav-list {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav.active .nav-list {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid rgba(0, 212, 255, 0.2);
        gap: 0;
    }

    .nav.active .nav-list li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

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

    .nav-close {
        display: block;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .section-header h2 .highlight {
        font-size: 2rem;
    }
}
