:root {
    --bg-dark: #020617;
    --bg-card: rgba(15, 23, 42, 0.6);
    --primary: #4facfe;
    --primary-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    --accent-cyan: #00f2fe;
    --accent-blue: #4facfe;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-outfit: 'Outfit', sans-serif;
    --font-inter: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-inter);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-outfit);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Background Effects */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
}

.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: 0.1s ease-out;
}

/* Navbar */
.navbar {
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.6rem;
    text-decoration: none;
    color: white;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent-cyan);
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

.nav-cta {
    background: var(--primary-gradient);
    color: #000 !important;
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    font-weight: 700 !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.badge-premium {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -3px;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1.1rem 2.2rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    cursor: pointer;
    border: none;
    font-family: var(--font-inter);
}

.btn-primary {
    background: var(--primary-gradient);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.3);
}

.btn-ghost {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-cyan);
}

.w-full {
    width: 100%;
}

/* Floating Elements */
.hero-visual {
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 1;
}

.profile-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--glass-border);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130%;
    height: 130%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: 0.3s;
}

.floating-card .icon {
    font-size: 1.5rem;
}

.floating-card .text {
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.card-web {
    bottom: 20%;
    left: -10%;
    animation: float 4s ease-in-out infinite;
}

.card-strategy {
    top: 20%;
    right: -5%;
    animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float-profile 6s ease-in-out infinite;
}

@keyframes float-profile {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* Section Common */
.section {
    padding: 120px 0;
}

.section-badge {
    color: var(--accent-cyan);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
    letter-spacing: -2px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.about-text p {
    margin-bottom: 1.8rem;
    font-size: 1.15rem;
    color: var(--text-muted);
}

.about-text .lead {
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.4;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-cyan);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    display: block;
}

/* Bento Grid Services */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(300px, auto));
    gap: 1.5rem;
}

.bento-card {
    background: var(--bg-card);
    border-radius: 28px;
    padding: 3rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card:nth-child(1) {
    grid-column: span 1;
}

.service-card:nth-child(2) {
    grid-column: span 2;
}

.service-card:nth-child(3) {
    grid-column: span 2;
}

.location-card {
    grid-column: span 1;
}

.highlighted {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
    border-color: rgba(0, 242, 254, 0.3);
}

.bento-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.bento-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.card-list {
    list-style: none;
    margin-top: 2rem;
}

.card-list li {
    padding: 0.6rem 0;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-list li::before {
    content: "✓";
    color: var(--accent-cyan);
    font-weight: 800;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 4rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.detail-item .icon {
    width: 50px;
    height: 50px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.detail-item h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-item p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Form Styling */
.contact-form-wrapper {
    background: var(--bg-card);
    padding: 4rem;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1.2rem;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    padding: 6rem 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 50px;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    color: var(--text-muted);
    margin-top: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.75rem;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--accent-cyan);
    color: #000;
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
}

.footer-right {
    text-align: right;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 100px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: 0.4s;
}

.floating-wa:hover {
    transform: translateY(-8px) scale(1.02);
}

.floating-wa img {
    width: 24px;
}

/* Pulse Animation */
.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 242, 254, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 242, 254, 0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: "";
    width: 4px;
    height: 8px;
    background: var(--accent-cyan);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-subtitle {
        margin: 1.5rem auto 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .location-card {
        grid-column: span 1 !important;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .contact-form-wrapper {
        padding: 2.5rem 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .footer-wrap {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .footer-right {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .floating-wa span {
        display: none;
    }

    .floating-wa {
        padding: 1rem;
        right: 20px;
        bottom: 20px;
    }
}