/* ============================================
   NERVE KABEL MEDIA - MAIN STYLESHEET
   Version: 1.0.0
   Website: nervekabelmedia.co.id
   ============================================ */

:root {
  --primary: #00bcd4;
  --primary-dark: #00a5bb;
  --primary-light: #e0f7fa;
  --secondary: #e91e63;
  --secondary-dark: #c2185b;
  --secondary-light: #fce4ec;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-400: #bdbdbd;
  --gray-500: #9e9e9e;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-muted: #888888;
  --bg-hero: linear-gradient(135deg, #fff0f0 0%, #f0fff4 50%, #e0f7fa 100%);
  --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading: 'Montserrat', 'Segoe UI', sans-serif;
  --container: 1200px;
  --header-height: 70px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-primary); line-height: 1.6; color: var(--text-primary); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; height: var(--header-height); background: var(--white); box-shadow: 0 1px 2px rgba(0,0,0,0.05); z-index: 1000; }
.header-container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-icon { width: 35px; height: 35px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; }
.logo-text { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--primary); text-transform: uppercase; }
.logo-text span { color: var(--secondary); }

/* Nav */
.nav { display: flex; align-items: center; gap: 2rem; }
.nav-link { font-weight: 500; color: var(--text-primary); padding: 0.5rem 0; position: relative; transition: color 0.15s; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.btn-login { background: var(--secondary); color: var(--white); padding: 0.75rem 1.5rem; border-radius: 9999px; font-weight: 600; font-size: 0.875rem; text-transform: uppercase; transition: all 0.15s; box-shadow: 0 4px 6px rgba(233, 30, 99, 0.3); }
.btn-login:hover { background: var(--secondary-dark); transform: translateY(-2px); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 25px; height: 3px; background: var(--text-primary); border-radius: 3px; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg-hero); padding-top: var(--header-height); position: relative; }
.hero-content { text-align: center; max-width: 800px; padding: 2rem; }
.hero-title { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--primary); margin-bottom: 1.5rem; line-height: 1.2; text-transform: uppercase; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 1rem; }
.hero-description { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem 2rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 9999px; transition: all 0.15s; min-width: 320px; cursor: pointer; }
.btn-primary, .btn-secondary { background: var(--secondary); color: var(--white); box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4); }
.btn-primary:hover, .btn-secondary:hover { background: var(--secondary-dark); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5); }
.hero-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 3rem; }
.hero-tag { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(255,255,255,0.9); border-radius: 9999px; font-size: 0.875rem; color: var(--text-secondary); box-shadow: 0 1px 2px rgba(0,0,0,0.05); }

/* Sections */
.section { padding: 5rem 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-title { font-family: var(--font-heading); font-size: 2.25rem; color: var(--text-primary); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.125rem; color: var(--text-muted); }

/* Features */
.features { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature-card { padding: 2rem; background: var(--white); border-radius: 1rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: all 0.3s; border: 1px solid var(--gray-100); text-align: center; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px rgba(0,0,0,0.15); }
.feature-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--white); font-size: 1.5rem; }
.feature-title { font-size: 1.25rem; margin-bottom: 0.75rem; }
.feature-text { color: var(--text-secondary); }

/* Services */
.services { background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card { background: var(--white); border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: all 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px rgba(0,0,0,0.15); }
.service-header { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 2rem; color: var(--white); text-align: center; }
.service-name { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-speed { opacity: 0.9; }
.service-body { padding: 2rem; }
.service-price { text-align: center; margin-bottom: 1.5rem; }
.price { font-size: 2.25rem; font-weight: 800; color: var(--secondary); }
.service-features { margin-bottom: 1.5rem; }
.service-features li { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid var(--gray-100); color: var(--text-secondary); }
.service-features li:last-child { border-bottom: none; }
.btn-service { width: 100%; background: var(--primary); color: var(--white); padding: 1rem; border-radius: 0.75rem; font-weight: 600; text-transform: uppercase; transition: all 0.15s; }
.btn-service:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { border-radius: 1rem; overflow: hidden; box-shadow: 0 20px 25px rgba(0,0,0,0.15); }
.about-content p { margin-bottom: 1.5rem; font-size: 1.125rem; color: var(--text-secondary); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.stat-item { text-align: center; padding: 1.5rem; background: var(--gray-50); border-radius: 0.75rem; }
.stat-number { font-size: 2.25rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 0.875rem; color: var(--text-muted); text-transform: uppercase; }

/* Testimonials */
.testimonials { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: rgba(255,255,255,0.8); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.testimonial-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: 1rem; padding: 2rem; border: 1px solid rgba(255,255,255,0.2); }
.testimonial-text { font-size: 1.125rem; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 50px; height: 50px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: 700; }
.testimonial-info h4 { color: var(--white); margin-bottom: 0.25rem; }
.testimonial-info p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin: 0; }

/* CTA */
.cta { background: var(--gray-900); text-align: center; }
.cta-title { font-family: var(--font-heading); font-size: 2.25rem; color: var(--white); margin-bottom: 1.5rem; }
.cta-text { font-size: 1.125rem; color: var(--gray-400); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Footer */
.footer { background: var(--gray-900); color: var(--gray-400); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.footer-desc { margin-bottom: 1.5rem; line-height: 1.8; }
.footer-social { display: flex; gap: 1rem; }
.social-link { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); transition: all 0.15s; }
.social-link:hover { background: var(--primary); transform: translateY(-3px); }
.footer-title { font-size: 1.125rem; color: var(--white); margin-bottom: 1.5rem; font-weight: 600; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--gray-400); transition: color 0.15s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.footer-contact i { color: var(--primary); margin-top: 0.25rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.5rem; }
  .about-grid { gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .menu-toggle { display: flex; }
  .nav { position: fixed; top: var(--header-height); left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1.5rem; gap: 1rem; box-shadow: 0 10px 15px rgba(0,0,0,0.1); transform: translateY(-150%); transition: transform 0.3s; }
  .nav.active { transform: translateY(0); }
  .btn { min-width: 100%; max-width: 300px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .features-grid, .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
}
.goog-te-banner-frame, .skiptranslate, #goog-gt-tt { display:none !important; }
body { top:0 !important; }