/* ============================================
   GEO SEO - DinamikSoft
   Professional Styles
   Bootstrap 5.3 Compatible
   ============================================ */

:root {
  --primary: #0B132B;
  --primary-light: #1a2645;
  --accent: #00B4D8;
  --accent-light: #48CAE4;
  --accent-dark: #0096B8;
  --secondary: #FCA311;
  --secondary-light: #FFB841;
  --bg-light: #F7F9FC;
  --text-dark: #111827;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --white: #FFFFFF;
}

/* Base */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
}

/* Navbar */
.navbar {
  background: #fff !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 1rem 0;
  transition: all 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.navbar-brand img {
  height: 50px;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 6px;
  transition: all 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent) !important;
  background: rgba(0, 180, 216, 0.1);
}

/* Buttons */
.btn-primary {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

.btn-secondary {
  background: var(--secondary) !important;
  border-color: var(--secondary) !important;
  color: var(--primary) !important;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(252, 163, 17, 0.3);
}

.btn-secondary:hover {
  background: var(--secondary-light) !important;
  transform: translateY(-2px);
}

.btn-outline-primary {
  border: 2px solid var(--accent) !important;
  color: var(--accent) !important;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
}

.btn-outline-primary:hover {
  background: var(--accent) !important;
  color: #fff !important;
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.5) !important;
  color: #fff !important;
  font-weight: 600;
}

.btn-outline-light:hover {
  background: #fff !important;
  color: var(--primary) !important;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 180, 216, 0.1) 0%, transparent 50%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #fff !important;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .lead {
  color: rgba(255,255,255,0.9) !important;
  font-size: 1.25rem;
}

.hero .text-accent {
  color: var(--accent-light) !important;
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card {
  border-left: 4px solid var(--accent);
  background: #fff;
}

.service-card .icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
}

.process-step .step-number {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

/* Case Study */
.case-card {
  border-left: 4px solid var(--secondary);
  background: #fff;
}

.case-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.metric {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-light);
  border-radius: 10px;
}

.metric .value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.metric .label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 3rem 0 2rem;
  margin-bottom: 3rem;
}

.page-header h1 {
  color: #fff !important;
  font-size: 2.5rem;
  font-weight: 700;
}

.breadcrumb {
  background: transparent;
  padding: 0 0 1rem;
}

.breadcrumb-item a {
  color: rgba(255,255,255,0.8);
}

.breadcrumb-item.active {
  color: var(--accent-light);
}

/* Footer */
.footer {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.3s;
}

.footer a:hover {
  color: var(--accent-light);
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  margin-right: 0.5rem;
  transition: all 0.3s;
}

.footer .social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* Floating */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  font-size: 1.75rem;
  transition: all 0.3s;
  text-decoration: none;
}

.floating-whatsapp a:hover {
  transform: scale(1.1);
}

.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

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

.back-to-top button {
  width: 50px;
  height: 50px;
  border: none;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.back-to-top button:hover {
  transform: translateY(-3px);
}

/* Utilities */
.bg-light-accent {
  background-color: rgba(0, 180, 216, 0.05) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}

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

/* Pricing Cards */
.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.2);
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  color: var(--text-muted);
}

/* Blog Cards */
.blog-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.blog-card .card-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  visibility: hidden;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 2rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  section {
    padding: 2.5rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .floating-whatsapp {
    bottom: 15px;
    right: 15px;
  }
  
  .floating-whatsapp a {
    width: 50px;
    height: 50px;
  }
}
