/* ============================================
   YUNWEB — Jasa Pembuatan Website Profesional
   Stylesheet — Blue, Gold & White Premium Theme
   ============================================ */

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

:root {
    /* Colors — Blue */
    --blue-900: #0a1e3f;
    --blue-800: #0f2d5e;
    --blue-700: #1a3a7a;
    --blue-600: #1e4d9e;
    --blue-500: #2563eb;
    --blue-400: #3b82f6;
    --blue-300: #60a5fa;
    --blue-100: #dbeafe;

    /* Colors — Gold */
    --gold-600: #b8860b;
    --gold-500: #d4af37;
    --gold-400: #e0c055;
    --gold-300: #f0d77e;
    --gold-200: #f5e6a8;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-50: #f1f5f9;
    --gray-100: #e2e8f0;
    --gray-200: #cbd5e1;
    --gray-300: #94a3b8;
    --gray-400: #64748b;
    --gray-500: #475569;
    --gray-600: #334155;
    --gray-700: #1e293b;
    --gray-800: #0f172a;

    /* Semantic */
    --bg: var(--off-white);
    --text: var(--gray-700);
    --text-light: var(--gray-400);
    --primary: var(--blue-600);
    --gold: var(--gold-500);

    /* Gradients */
    --gradient-blue: linear-gradient(135deg, var(--blue-800), var(--blue-500));
    --gradient-gold: linear-gradient(135deg, var(--gold-600), var(--gold-400));
    --gradient-hero: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 50%, var(--blue-600) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(10, 30, 63, 0.06);
    --shadow-md: 0 4px 16px rgba(10, 30, 63, 0.08);
    --shadow-lg: 0 12px 40px rgba(10, 30, 63, 0.12);
    --shadow-xl: 0 24px 60px rgba(10, 30, 63, 0.16);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

ul {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SECTION ===== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: var(--blue-100);
    color: var(--blue-600);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--blue-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.gold {
    color: var(--gold-500);
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--blue-900);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--blue-600);
    border: 2px solid var(--blue-200, #cbd5e1);
}

.btn-outline:hover {
    background: var(--blue-600);
    color: var(--white);
    border-color: var(--blue-600);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--gray-100);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-900);
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--gradient-blue);
    color: var(--white);
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: var(--shadow-md);
}

.logo-text {
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-500);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-500);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue-700);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--blue-900);
    border-radius: 4px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-hero);
    padding: 120px 0 80px;
}

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

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 40%, transparent 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: var(--blue-400);
    top: -100px;
    right: -100px;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: var(--gold-500);
    bottom: -80px;
    left: -80px;
    opacity: 0.25;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold-200);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-actions .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-400);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-400), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.about-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--blue-100);
}

.about-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-blue);
    color: var(--white);
    border-radius: 16px;
    transition: var(--transition);
}

.about-card:hover .about-icon {
    background: var(--gradient-gold);
    color: var(--blue-900);
}

.about-icon svg {
    width: 28px;
    height: 28px;
}

.about-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 40px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--blue-100);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 16px;
    transition: var(--transition);
}

.service-card:hover .service-number {
    color: var(--gold-200);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--gray-400);
    margin-bottom: 20px;
    line-height: 1.65;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    font-size: 0.87rem;
    color: var(--gray-500);
    padding-left: 24px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--blue-100);
    border-radius: 50%;
}

.service-features li::after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--blue-600);
}

/* ===== PROS & CONS SECTION ===== */
.procons-section {
    background: var(--white);
}

.procons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.procons-card {
    padding: 40px 36px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.procons-pro {
    background: linear-gradient(160deg, #eff6ff, #dbeafe);
    border: 1px solid var(--blue-100);
}

.procons-con {
    background: linear-gradient(160deg, #fff7ed, #ffedd5);
    border: 1px solid #fed7aa;
}

.procons-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.procons-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.procons-icon-pro {
    background: var(--blue-600);
    color: var(--white);
}

.procons-icon-con {
    background: #f97316;
    color: var(--white);
}

.procons-icon svg {
    width: 24px;
    height: 24px;
}

.procons-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.procons-pro .procons-header h3 { color: var(--blue-700); }
.procons-con .procons-header h3 { color: #c2410c; }

.procons-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.procons-list li {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.65;
    padding-left: 28px;
    position: relative;
}

.procons-pro .procons-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--blue-600);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.procons-con .procons-list li::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #f97316;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.procons-list strong {
    color: var(--gray-700);
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    border-radius: 50%;
}

.why-section .section-title {
    color: var(--white);
}

.why-section .section-tag {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-300);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.why-item {
    text-align: center;
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
}

.why-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.why-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.why-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: var(--off-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    padding: 44px 36px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.pricing-featured {
    background: var(--gradient-hero);
    color: var(--white);
    border: none;
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-gold);
    color: var(--blue-900);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--blue-900);
}

.pricing-featured .pricing-name {
    color: var(--gold-300);
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--blue-700);
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}

.pricing-featured .pricing-price {
    color: var(--white);
}

.pricing-price small {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.7;
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--gray-400);
    margin-bottom: 28px;
}

.pricing-featured .pricing-desc {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--gray-500);
    padding-left: 26px;
    position: relative;
}

.pricing-featured .pricing-features li {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--blue-100);
    color: var(--blue-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
}

.pricing-featured .pricing-features li::before {
    background: rgba(212, 175, 55, 0.25);
    color: var(--gold-300);
}

.pricing-featured .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.pricing-note {
    text-align: center;
    margin-top: 36px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: var(--white);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue-200), var(--gold-200), var(--blue-200));
}

.process-step {
    display: flex;
    gap: 28px;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    flex-shrink: 0;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-blue);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
    z-index: 1;
    transition: var(--transition);
}

.process-step:hover .process-number {
    background: var(--gradient-gold);
    color: var(--blue-900);
    transform: scale(1.1);
}

.process-content {
    flex: 1;
    padding-top: 8px;
}

.process-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 8px;
}

.process-content p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.65;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--gradient-blue);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
    border-radius: 50%;
}

.cta-banner h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cta-banner .btn {
    position: relative;
    z-index: 1;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 14px;
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
}

.contact-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    font-size: 0.95rem;
    color: var(--blue-700);
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--gold-500);
}

.contact-form-wrap {
    position: relative;
}

.contact-form {
    background: var(--white);
    padding: 40px 36px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--gray-700);
    background: var(--off-white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue-400);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    font-size: 0.78rem;
    color: var(--gray-400);
    text-align: center;
    margin-top: 16px;
}

.form-success {
    display: none;
    position: absolute;
    inset: 0;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.form-success.show {
    display: flex;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.form-success h3 {
    font-size: 1.5rem;
    color: var(--blue-900);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--gray-400);
    max-width: 360px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-100);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--blue-600);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-100);
    color: var(--blue-600);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--blue-600);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--blue-900);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-links h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-400);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom strong {
    color: var(--gold-400);
}

/* ===== SCROLL TOP BUTTON ===== */
#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

#scrollTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTop:hover {
    background: var(--gradient-gold);
    color: var(--blue-900);
    transform: translateY(-4px);
}

#scrollTop svg {
    width: 22px;
    height: 22px;
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-featured {
        transform: scale(1);
    }

    .pricing-featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px 24px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: var(--transition);
        align-items: flex-start;
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-stats {
        gap: 28px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

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

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .section {
        padding: 70px 0;
    }

    .contact-form {
        padding: 32px 24px;
    }
}

@media (max-width: 600px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 20px;
    }

    .process-number {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .process-step {
        gap: 18px;
    }
}
/* ===== FLOATING WHATSAPP BUTTON ===== */
.wa-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: waPulse 2.5s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* Adjust scroll-top button position so it doesn't overlap with WA button */
#scrollTop {
    bottom: 30px;
    right: 30px;
}

@media (max-width: 600px) {
    .wa-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    #scrollTop {
        bottom: 20px;
        right: 20px;
    }
}

/* WhatsApp button icon in form */
.contact-form button svg,
.contact-info .btn svg {
    flex-shrink: 0;
}

/* ===== WHATSAPP & INSTAGRAM STYLES ===== */
.wa-icon-bg {
    background: #25D366 !important;
}

.ig-icon-bg {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
}

.contact-cta-group {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.btn-wa {
    flex: 1;
    min-width: 140px;
    background: #25D366 !important;
    color: #ffffff !important;
}

.btn-wa:hover {
    background: #1eb858 !important;
    transform: translateY(-2px);
}

.btn-ig {
    flex: 1;
    min-width: 140px;
    border: 2px solid transparent !important;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
    color: #ffffff !important;
}

.btn-ig:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-wa-submit {
    background: #25D366 !important;
    color: #ffffff !important;
}

.btn-wa-submit:hover {
    background: #1eb858 !important;
}

@media (max-width: 600px) {
    .contact-cta-group {
        flex-direction: column;
    }
    .btn-wa, .btn-ig {
        width: 100%;
    }
}
