/* ========================================
   FUADITECH STUDIO - CSS GLOBAL
   Digunakan untuk SEMUA halaman website
   ======================================== */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0A0A0F;
    color: #E5E7EB;
    scroll-behavior: smooth;
}

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

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

/* ===== TYPOGRAPHY ===== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-title .gradient-text {
    background: linear-gradient(135deg, #00E5FF, #007BFF);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.section-sub {
    text-align: center;
    color: #9CA3AF;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.gradient-text {
    background: linear-gradient(135deg, #00E5FF, #007BFF);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
    padding: 16px 30px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.2;
}

.logo-studio {
    color: #00E5FF;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

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

.nav-links a {
    text-decoration: none;
    color: #D1D5DB;
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.95rem;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00E5FF;
    border-bottom-color: #00E5FF;
}

.btn-konsultasi {
    background: linear-gradient(135deg, #00E5FF, #007BFF);
    padding: 10px 22px;
    border-radius: 40px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-konsultasi:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.4);
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    background: none;
    border: none;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: linear-gradient(135deg, #00E5FF, #007BFF);
    padding: 14px 35px;
    border-radius: 40px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 229, 255, 0.4);
}

.btn-outline {
    border: 1.5px solid #00E5FF;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    color: #00E5FF;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    background: transparent;
    cursor: pointer;
}

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

.btn-small {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #00E5FF;
    border-radius: 30px;
    color: #00E5FF;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

.btn-small:hover {
    background: #00E5FF;
    color: #0A0A0F;
}

.btn-card {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #00E5FF;
    color: #00E5FF;
    transition: 0.3s;
}

.btn-card:hover {
    background: #00E5FF;
    color: #0A0A0F;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
        url('https://images.unsplash.com/photo-1587620962725-abab7fe55159?q=80&w=1931&auto=format') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title-small {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #00E5FF;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 20px 0;
    color: white;
}

.typing-text {
    font-size: 1.5rem;
    color: #00E5FF;
    margin-bottom: 20px;
    min-height: 60px;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D1D5DB;
    font-size: 0.9rem;
}

.hero-features i {
    color: #00E5FF;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #0A0A0F, #111827);
    border-bottom: 1px solid #1F2937;
}

.page-banner h1 {
    font-size: 3rem;
    font-weight: 800;
}

.page-banner p {
    color: #9CA3AF;
    margin-top: 10px;
}

/* ===== COUNTER ===== */
.counter-section {
    background: linear-gradient(135deg, #0A0A0F, #0F0F15);
    padding: 60px 0;
    border-bottom: 1px solid #1F2937;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: #00E5FF;
    font-family: 'Poppins', sans-serif;
}

.counter-label {
    color: #9CA3AF;
    margin-top: 10px;
}

/* ===== PROMO COUNTDOWN ===== */
.promo-section {
    background: linear-gradient(135deg, #00E5FF10, #007BFF10);
    padding: 40px 0;
    border-radius: 30px;
    margin: 40px auto;
    text-align: center;
    border: 1px solid #00E5FF20;
}

.promo-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: #111827;
    padding: 15px 25px;
    border-radius: 16px;
    min-width: 80px;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 800;
    color: #00E5FF;
}

.countdown-label {
    font-size: 0.7rem;
    color: #9CA3AF;
}

/* ===== LAYANAN ===== */
.layanan {
    padding: 80px 0;
    background: #0F0F15;
    text-align: center;
}

.layanan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.layanan-card {
    background: #111827;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #1F2937;
    transition: 0.3s;
    text-align: center;
}

.layanan-card:hover {
    border-color: #00E5FF;
    transform: translateY(-5px);
}

.layanan-card .icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.layanan-card .icon i {
    font-size: 32px;
    color: #00E5FF;
}

.layanan-card h3 {
    margin-bottom: 12px;
}

.layanan-card p {
    color: #9CA3AF;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.layanan-card .price {
    color: #00E5FF;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* ===== PORTOFOLIO ===== */
.portofolio {
    padding: 80px 0;
    background: #0F0F15;
    text-align: center;
}

.portofolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.portofolio-card {
    background: linear-gradient(135deg, #1A1A2E, #111827);
    border-radius: 20px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1F2937;
    transition: 0.3s;
}

.portofolio-card:hover {
    border-color: #00E5FF;
    transform: translateY(-5px);
}

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

.portofolio-overlay i {
    font-size: 40px;
    color: #00E5FF;
    display: block;
    margin-bottom: 15px;
}

.portofolio-overlay span {
    color: white;
}

/* ===== HARGA ===== */
.harga {
    padding: 80px 0;
    background: #0A0A0F;
    text-align: center;
}

.harga-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.harga-card {
    background: #111827;
    border-radius: 24px;
    padding: 30px 20px;
    border: 1px solid #1F2937;
    transition: 0.3s;
    position: relative;
    text-align: center;
}

.harga-card:hover {
    transform: translateY(-5px);
    border-color: #00E5FF;
}

.harga-card.popular {
    border: 2px solid #00E5FF;
    transform: scale(1.02);
}

.popular-badge {
    background: #00E5FF;
    color: #0A0A0F;
    display: inline-block;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.harga-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.harga-card .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #00E5FF;
    margin: 15px 0;
}

.harga-card ul {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.harga-card li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D1D5DB;
    font-size: 0.85rem;
}

.harga-card li i {
    color: #00E5FF;
    width: 20px;
}

/* ===== TESTIMONI ===== */
.testimoni {
    padding: 80px 0;
    background: #0F0F15;
    text-align: center;
}

.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.testimoni-card {
    background: #111827;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #1F2937;
    text-align: center;
}

.testimoni-card i {
    color: #00E5FF;
    font-size: 2rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.testimoni-card p {
    color: #D1D5DB;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimoni-card h4 {
    margin-bottom: 5px;
}

.testimoni-card span {
    color: #9CA3AF;
    font-size: 0.8rem;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 80px 0;
    background: #0A0A0F;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #111827;
    border-radius: 16px;
    margin-bottom: 15px;
    border: 1px solid #1F2937;
}

.faq-item:hover {
    border-color: #00E5FF40;
}

.faq-item.active {
    border-color: #00E5FF;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: white;
    gap: 15px;
}

.faq-question i {
    transition: 0.3s;
    color: #00E5FF;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    color: #9CA3AF;
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px 25px;
    max-height: 500px;
}

/* ===== KONTAK ===== */
.kontak {
    padding: 80px 0;
    background: #0A0A0F;
}

.kontak-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #111827;
    border-radius: 30px;
    padding: 50px;
    border: 1px solid #1F2937;
}

.kontak-info {
    text-align: left;
}

.kontak-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.kontak-info p {
    color: #9CA3AF;
    margin-bottom: 30px;
}

.info-item {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item i {
    color: #00E5FF;
    width: 25px;
}

.social {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.social a {
    color: #9CA3AF;
    font-size: 1.5rem;
    transition: 0.3s;
}

.social a:hover {
    color: #00E5FF;
    transform: translateY(-3px);
}

.kontak-form input,
.kontak-form textarea {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    background: #0A0A0F;
    border: 1px solid #1F2937;
    border-radius: 12px;
    color: white;
    font-family: inherit;
}

.kontak-form input:focus,
.kontak-form textarea:focus {
    outline: none;
    border-color: #00E5FF;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #00E5FF, #007BFF);
    padding: 14px;
    border: none;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.4);
}

/* ===== FOOTER ===== */
footer {
    background: #050508;
    text-align: center;
    padding: 30px;
    border-top: 1px solid #1F2937;
}

footer p {
    color: #6B7280;
    margin: 5px 0;
}

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.wa-float:hover {
    transform: scale(1.1);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    background: #00E5FF;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A0A0F;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portofolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .harga-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimoni-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .kontak-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #0F0F15;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid #1F2937;
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .btn-konsultasi {
        display: none;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .page-banner h1 {
        font-size: 2rem;
    }
    .counter-grid {
        grid-template-columns: 1fr;
    }
    .portofolio-grid {
        grid-template-columns: 1fr;
    }
    .harga-grid {
        grid-template-columns: 1fr;
    }
    .testimoni-grid {
        grid-template-columns: 1fr;
    }
    .kontak-wrapper {
        grid-template-columns: 1fr;
        padding: 25px;
    }
    .harga-card.popular {
        transform: scale(1);
    }
    .section-title {
        font-size: 1.8rem;
    }
    .countdown-item {
        min-width: 60px;
        padding: 10px 15px;
    }
    .countdown-number {
        font-size: 1.5rem;
    }
    .logo img {
        height: 30px;
    }
}
