:root {
    /* Color Palette - Premium Modern */
    --clr-background: #050A15;
    --clr-surface: #0B1426;
    --clr-surface-light: #152238;
    
    --clr-primary: #3B82F6;
    --clr-primary-glow: rgba(59, 130, 246, 0.5);
    --clr-accent: #38BDF8;
    
    --clr-text: #F8FAFC;
    --clr-text-muted: #94A3B8;
    
    --clr-glass-bg: rgba(15, 23, 42, 0.6);
    --clr-glass-border: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-background);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.text-center {
    text-align: center;
}

.accent {
    color: var(--clr-accent);
}

.highlight {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Glassmorphism Utilities */
.glass-effect {
    background: var(--clr-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--clr-glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition-normal);
    cursor: pointer;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px var(--clr-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--clr-primary-glow);
}

.btn-primary-outline {
    background: transparent;
    color: #fff;
    border: 1px solid var(--clr-glass-border);
    backdrop-filter: blur(10px);
}

.btn-primary-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: var(--clr-surface-light);
    color: var(--clr-text);
    border: 1px solid var(--clr-glass-border);
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-normal);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(5, 10, 21, 0.85);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--clr-glass-border);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.nav-links a:not(.btn-primary-outline) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:not(.btn-primary-outline):hover {
    color: var(--clr-text);
}

.nav-links a:not(.btn-primary-outline)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-accent);
    transition: var(--transition-normal);
}

.nav-links a:not(.btn-primary-outline):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--clr-text);
}

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

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out alternate;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--clr-primary);
    animation-delay: 0s;
}

.shape-2 {
    bottom: 10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: #6366F1;
    animation-delay: -5s;
}

.shape-3 {
    top: 40%;
    left: 40%;
    width: 300px;
    height: 300px;
    background: var(--clr-accent);
    opacity: 0.2;
    animation-delay: -2s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 30px) scale(1.1); }
}

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

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 30px;
    color: var(--clr-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-image-wrapper {
    position: relative;
    padding: 2rem;
}

.image-card {
    position: relative;
    border-radius: 24px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.card-image-placeholder {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--clr-surface);
}

.card-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.floating-badge {
    position: absolute;
    background: var(--clr-glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--clr-glass-border);
    padding: 1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 2;
    animation: hoverBadge 4s infinite ease-in-out alternate;
}

.badge-1 {
    bottom: 10%;
    left: -10%;
}

.badge-2 {
    top: 15%;
    right: -10%;
    animation-delay: -2s;
}

.floating-badge .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.floating-badge .text {
    display: flex;
    flex-direction: column;
}

.floating-badge .text strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.floating-badge .text span {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

@keyframes hoverBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* Services */
.services {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(to bottom, var(--clr-background), var(--clr-surface-light));
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    padding: 2.5rem 2rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transform: translateX(-100%);
    transition: var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* Why Us */
.why-us {
    padding: 8rem 0;
    background: var(--clr-background);
}

.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
}

.image-grid img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
    border: 1px solid var(--clr-glass-border);
}

.image-grid .img-1 {
    aspect-ratio: 3/4;
    transform: translateY(30px);
}

.image-grid .img-2 {
    aspect-ratio: 3/4;
    transform: translateY(-30px);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.features-list li {
    display: flex;
    gap: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* Contact */
.contact-section {
    padding: 5rem 0 8rem;
    position: relative;
    background: linear-gradient(to top, var(--clr-surface-light), var(--clr-background));
}

.contact-wrapper {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    width: 100%;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    border: 1px solid var(--clr-glass-border);
    transition: var(--transition-normal);
}

.contact-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-5px);
    border-color: rgba(59,130,246,0.3);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--clr-accent);
    margin-top: 0.2rem;
}

.contact-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-item a, .contact-item p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-text);
    overflow-wrap: break-word;
    word-break: break-word;
}

.contact-item a:hover {
    color: var(--clr-accent);
}

/* Footer */
footer {
    background: #03060C;
    padding: 3rem 0;
    border-top: 1px solid var(--clr-glass-border);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--clr-text-muted);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--clr-text);
}

.footer-copyright {
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .hero-container, .why-us-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle { max-width: 100%; }
    
    .image-grid .img-1 { transform: translateY(15px); }
    .image-grid .img-2 { transform: translateY(-15px); }
    
    .why-us-container .image-column {
        order: 2;
    }
    .why-us-container .content-column {
        order: 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 10, 21, 0.95);
        backdrop-filter: blur(20px);
        padding: 2rem 0;
        border-bottom: 1px solid var(--clr-glass-border);
    }
    
    .hero-title { font-size: 2.5rem; }
    .hero-cta { flex-direction: column; width: 100%; }
    .hero-cta a { width: 100%; }
    
    .badge-1 { left: 5px; bottom: 5px; padding: 0.8rem; }
    .badge-2 { right: 5px; top: 10px; padding: 0.8rem; }
    
    .contact-wrapper { padding: 2rem; }
}
