/* Global Channel - Site Styles */
:root {
  --gc-primary: #1d4ed8;
  --gc-primary-dark: #1e40af;
  --gc-dark: #0f172a;
  --gc-gray: #64748b;
  --gc-light: #f8fafc;
  --gc-border: #e2e8f0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #334155;
}

/* Navbar */
.gc-navbar {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  padding: .5rem 0;
}
.gc-navbar .navbar-brand img {
  height: 45px;
}
.gc-navbar .nav-link {
  color: var(--gc-dark);
  font-weight: 500;
  font-size: .9rem;
  padding: .5rem 1rem !important;
  transition: color .2s;
}
.gc-navbar .nav-link:hover,
.gc-navbar .nav-link.active {
  color: var(--gc-primary);
}
.gc-navbar .navbar-toggler {
  border: none;
  padding: .25rem .5rem;
}
.gc-navbar .navbar-toggler:focus {
  box-shadow: none;
}
.gc-top-bar {
  background: var(--gc-dark);
  color: #cbd5e1;
  font-size: .8rem;
  padding: .4rem 0;
}
.gc-top-bar a {
  color: #fff;
  text-decoration: none;
}

/* Hero */
.gc-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.gc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.85) 0%, rgba(29,78,216,.7) 100%);
}
.gc-hero .container {
  position: relative;
  z-index: 1;
}
.gc-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.gc-hero p {
  font-size: 1.15rem;
  opacity: .9;
  max-width: 600px;
  margin-bottom: 2rem;
}
.gc-hero .btn {
  padding: .7rem 2rem;
  font-weight: 600;
  border-radius: 6px;
}

/* Features Row */
.gc-features {
  margin-top: -50px;
  position: relative;
  z-index: 2;
}
.gc-features .card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,.08);
  transition: transform .2s;
}
.gc-features .card:hover {
  transform: translateY(-4px);
}
.gc-features .card-body {
  padding: 1.5rem;
}
.gc-features .feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(29,78,216,.1);
  color: var(--gc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: .8rem;
}

/* Sections */
.gc-section {
  padding: 5rem 0;
}
.gc-section-gray {
  background: var(--gc-light);
}
.gc-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gc-dark);
  margin-bottom: .5rem;
}
.gc-section-subtitle {
  color: var(--gc-gray);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* Service Cards */
.gc-service-card {
  border: 1px solid var(--gc-border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  background: #fff;
  height: 100%;
}
.gc-service-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.gc-service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.gc-service-card .card-body {
  padding: 1.5rem;
}
.gc-service-card h5 {
  font-weight: 600;
  color: var(--gc-dark);
}
.gc-service-card p {
  color: var(--gc-gray);
  font-size: .9rem;
}
.gc-service-card .btn-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--gc-primary);
  padding: 0;
  font-size: .9rem;
}
.gc-service-card .btn-link:hover {
  color: var(--gc-primary-dark);
}

/* Stats Section */
.gc-stats {
  background: linear-gradient(135deg, var(--gc-dark) 0%, #1e293b 100%);
  color: #fff;
  padding: 5rem 0;
}
.gc-stats img {
  height: 50px;
  margin-bottom: 1rem;
}
.gc-stats h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
.gc-stats p.stat-label {
  opacity: .7;
  font-size: .95rem;
}
.gc-stats .stat-desc {
  font-size: 1rem;
  opacity: .8;
  max-width: 700px;
}

/* YoPublico Section */
.gc-yopublico .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gc-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

/* Clients */
.gc-clients img {
  max-height: 70px;
  filter: grayscale(100%);
  opacity: .6;
  transition: all .3s;
}
.gc-clients img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Inner Banner (subpages) */
.gc-inner-banner {
  background: linear-gradient(135deg, var(--gc-dark) 0%, var(--gc-primary-dark) 100%);
  color: #fff;
  padding: 4rem 0 3rem;
}
.gc-inner-banner h1 {
  font-size: 2.2rem;
  font-weight: 700;
}
.gc-inner-banner .breadcrumb {
  margin-bottom: 0;
}
.gc-inner-banner .breadcrumb a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
}
.gc-inner-banner .breadcrumb-item.active {
  color: rgba(255,255,255,.5);
}

/* Contact Form */
.gc-contact-form .form-control {
  border: 1px solid var(--gc-border);
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .95rem;
}
.gc-contact-form .form-control:focus {
  border-color: var(--gc-primary);
  box-shadow: 0 0 0 3px rgba(29,78,216,.15);
}
.gc-contact-form textarea {
  min-height: 140px;
}

/* Contact Info Card */
.gc-contact-info {
  background: var(--gc-dark);
  color: #fff;
  border-radius: 12px;
  padding: 2.5rem;
}
.gc-contact-info a {
  color: #93c5fd;
  text-decoration: none;
}
.gc-contact-info .info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.gc-contact-info .info-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Footer */
.gc-footer {
  background: var(--gc-dark);
  color: #94a3b8;
  padding: 4rem 0 0;
}
.gc-footer h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.gc-footer a {
  color: #94a3b8;
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s;
}
.gc-footer a:hover {
  color: #fff;
}
.gc-footer ul {
  list-style: none;
  padding: 0;
}
.gc-footer ul li {
  margin-bottom: .5rem;
}
.gc-footer .footer-logo img {
  height: 40px;
  margin-bottom: 1rem;
}
.gc-footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-size: .85rem;
}
.gc-footer .social-links a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: .5rem;
  font-size: 1rem;
  transition: background .2s;
}
.gc-footer .social-links a:hover {
  background: var(--gc-primary);
  color: #fff;
}

/* About page */
.gc-about-content h4 {
  font-weight: 600;
  color: var(--gc-dark);
  margin-bottom: 1rem;
}
.gc-about-content p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Privacy page */
.gc-privacy-content h4 {
  font-weight: 600;
  color: var(--gc-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.gc-privacy-content p {
  line-height: 1.8;
}
.gc-privacy-content ul li {
  margin-bottom: .8rem;
  line-height: 1.7;
}

/* Utility */
.btn-gc-primary {
  background: var(--gc-primary);
  color: #fff;
  border: none;
}
.btn-gc-primary:hover {
  background: var(--gc-primary-dark);
  color: #fff;
}
.btn-gc-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-gc-outline:hover {
  background: #fff;
  color: var(--gc-dark);
  border-color: #fff;
}

/* Animations */
.gc-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.gc-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .gc-hero h1 { font-size: 2rem; }
  .gc-hero { min-height: 400px; }
  .gc-features { margin-top: -30px; }
  .gc-section { padding: 3.5rem 0; }
}
@media (max-width: 575px) {
  .gc-hero h1 { font-size: 1.6rem; }
  .gc-hero p { font-size: 1rem; }
  .gc-section-title { font-size: 1.5rem; }
  .gc-stats h2 { font-size: 2rem; }
}
