:root {
    --primary: #00E5FF;
    --primary-dark: #00B3CC;
    --secondary: #7C4DFF;
    --accent: #FF4081;
    --bg-dark: #09090B;
    --bg-card: rgba(24, 24, 27, 0.6);
    --text-main: #FAFAFA;
    --text-muted: #A1A1AA;
    --gradient-main: linear-gradient(135deg, #00E5FF 0%, #7C4DFF 100%);
    --gradient-hero: linear-gradient(to right, #09090B 0%, #18181B 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(0, 229, 255, 0.25) 0%, rgba(124, 77, 255, 0.1) 50%, transparent 100%);
    --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 25px rgba(0, 229, 255, 0.3);
    --border-light: rgba(255, 255, 255, 0.08);
    --glass: blur(24px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 4px;
}

/* Navbar */
.navbar {
    background: rgba(9, 9, 11, 0.85) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-main) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    color: var(--primary);
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    margin: 0 1rem;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 3px;
    letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-main);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
    font-family: 'Space Grotesk', sans-serif;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #7C4DFF 0%, #00E5FF 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.4);
    color: #fff;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    color: var(--text-main);
    box-shadow: var(--shadow-glow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 130px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: var(--gradient-glow);
    filter: blur(120px);
    top: -300px;
    right: -200px;
    z-index: -1;
    opacity: 0.8;
    animation: float 8s infinite alternate;
}

.hero-bg-glow-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    bottom: -150px;
    left: -200px;
    z-index: -1;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-30px) scale(1.1); }
}

.hero h1 {
    font-size: 5.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 2.5rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 0.2rem;
    font-weight: 800;
}
.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Image Showcase */
.showcase-wrapper {
    position: relative;
    border-radius: 16px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid var(--border-light);
    backdrop-filter: var(--glass);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.showcase-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.showcase-wrapper img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 4rem;
}

.sub-title {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sub-title::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

/* Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255,255,255,0.15);
}

.glass-card:hover::before {
    transform: scaleX(1);
}

/* Service Card */
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.service-link:hover {
    color: var(--text-main);
    gap: 0.8rem;
}

/* About List */
.about-list .list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.about-list .icon-box {
    width: 45px;
    height: 45px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    color: var(--primary);
    font-size: 1.2rem;
    border: 1px solid rgba(0, 229, 255, 0.2);
    flex-shrink: 0;
}

.about-list h5 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.about-list p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta-card {
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.8), rgba(9, 9, 11, 0.9)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Contact Page Specifics */
.contact-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
}

.contact-info-panel {
    background: rgba(255, 255, 255, 0.02);
    padding: 4rem;
    color: white;
    height: 100%;
    border-right: 1px solid var(--border-light);
}

.contact-form-panel {
    padding: 4rem;
}

.form-control {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.form-control:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
    color: var(--text-main);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
}

.form-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: #050505;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-light);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    font-family: 'Space Grotesk', sans-serif;
}

.footer-brand i { color: var(--primary); }

.footer-link {
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--primary);
}

@media (max-width: 991px) {
    .hero h1 { font-size: 3.5rem; }
    .section-title { font-size: 2.5rem; }
    .hero { padding-top: 100px; }
}

@media (max-width: 768px) {
    .cta-card { padding: 3rem 1.5rem; }
    .contact-info-panel, .contact-form-panel { padding: 2.5rem 1.5rem; }
    .stat-item { margin-bottom: 1.5rem; }
}
