:root {
    --color-bg: #0f0518;
    --color-surface: #1a0b2e;
    --color-text: #ffffff;
    --color-text-muted: #a39eb5;

    /* Violet / Purple Theme */
    --primary-gradient: linear-gradient(135deg, #7b2cbf 0%, #aa00ff 100%);
    --secondary-gradient: linear-gradient(135deg, #3c096c 0%, #5a189a 100%);
    --accent-color: #e0aaff;
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

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

h1,
h2,
h3,
h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: linear-gradient(to right, #e0aaff, #c77dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(123, 44, 191, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(123, 44, 191, 0.5);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Nav */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.dot {
    color: #aa00ff;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    color: var(--color-text-muted);
    font-weight: 500;
}

.nav-links a:not(.btn-primary):hover {
    color: white;
}

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

.hero-bg {
    background: linear-gradient(to bottom, rgba(15, 5, 24, 0.4), var(--color-bg)), url('/src/assets/images/hero_bg_1769845329083.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

/* Services */
.section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(170, 0, 255, 0.3);
}

.card .icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-list {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.service-list li {
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.service-list li::before {
    content: "•";
    color: #aa00ff;
    margin-right: 0.5rem;
}

/* About Split */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e0aaff;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.overlay-card {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    max-width: 300px;
}

/* Contact */
.contact-box {
    background: var(--secondary-gradient);
    padding: 4rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

/* Contact New Grid Layout */
.contact-header {
    margin-bottom: 3rem;
}

.contact-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #aa00ff;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(170, 0, 255, 0.1);
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.icon-right {
    font-size: 1.2rem;
}

/* Map Card */
.map-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 16/9;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.map-card:hover .map-img {
    transform: scale(1.05);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 5, 24, 0.9), transparent);
}

/* Map Animated Pin */
.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pin-dot {
    width: 1rem;
    height: 1rem;
    background: #aa00ff;
    border-radius: 50%;
    box-shadow: 0 0 20px #aa00ff;
    position: relative;
    z-index: 2;
}

.ping-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #aa00ff;
    opacity: 0.75;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.pin-line {
    width: 2px;
    height: 3rem;
    background: linear-gradient(to bottom, #aa00ff, transparent);
    margin-top: 0.25rem;
}

/* Map Badge */
.map-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.badge-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.badge-value {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
}

.badge-icon {
    color: #aa00ff;
}

/* Info Cards */
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: 0.3s;
}

.info-card:hover {
    border-color: rgba(170, 0, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.info-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(170, 0, 255, 0.1);
    color: #aa00ff;
    transition: 0.3s;
}

.info-card:hover .info-icon {
    background: #aa00ff;
    color: white;
}

.contact-info .info-link {
    font-size: 1.5rem;
    font-weight: 700;
    border-bottom: 2px solid #e0aaff;
}

footer {
    text-align: center;
    padding: 4rem 0;
    color: var(--color-text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    /* Simplified mobile handling */
    .contact-box {
        padding: 2rem;
    }

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