/* ============================================
   GAONA CURREA - Estilos Principales
   ============================================ */

/* === CSS Variables === */
:root {
  --green-primary: #a4b52f;
  --green-light: #bdd135;
  --dark-blue: #00384e;
  --text-dark: #0f172a;
  --text-slate: #334155;
  --text-gray: #6b7280;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

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

/* ============================================
   NAVBAR
   ============================================ */
.gc-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 51px;
  transition: background 0.3s ease, padding 0.3s ease;
}

.gc-navbar--scrolled {
  background: rgba(0, 56, 78, 0.95);
  padding: 12px 51px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.gc-logo img {
  height: 70px;
  width: auto;
}

.gc-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.gc-nav-link {
  font-weight: 700;
  font-size: 20px;
  color: #f0f0f0;
  transition: color 0.3s;
  position: relative;
}

.gc-nav-link:hover {
  color: var(--green-light);
}

.gc-nav-link.active {
  color: var(--green-light);
}

.gc-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--green-light);
  border-radius: 2px;
}

.gc-navbar-toggler {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
}

/* ============================================
   BUTTONS
   ============================================ */
.gc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 100px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.gc-btn-primary {
  background: var(--green-light);
  color: var(--text-dark);
}

.gc-btn-primary:hover {
  background: var(--green-primary);
  color: white;
}

.gc-btn-right {
  align-self: flex-end;
}

.gc-btn-full {
  width: 100%;
  padding: 13px 17px;
  font-size: 18px;
  color: var(--dark-blue);
  border-radius: 100px;
}

/* ============================================
   SECTION LABEL
   ============================================ */
.gc-section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.gc-label-line {
  width: 48px;
  height: 2px;
  background: var(--green-primary);
  flex-shrink: 0;
}

.gc-label-text {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--text-slate);
}

.gc-section-label--white .gc-label-text {
  color: white;
}

.gc-label-line--white {
  background: white;
}

/* ============================================
   HERO
   ============================================ */
.gc-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  max-height: 1114px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 56, 78, 0.6) 16.9%, rgba(0, 0, 0, 0) 87.3%);
  z-index: 1;
}

.gc-hero-icon {
  position: absolute;
  top: 189px;
  left: 50%;
  transform: translateX(-50%);
  width: 77px;
  height: 84px;
  z-index: 2;
  opacity: 0.5;
}

.gc-hero-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gc-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: 0 20px;
}

.gc-hero-content h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  color: white;
  margin-bottom: 24px;
}

.gc-hero-content p {
  font-size: 20px;
  line-height: 1.4;
  color: white;
  max-width: 672px;
  margin: 0 auto 40px;
}

.gc-hero-content .gc-btn {
  font-size: 16px;
}

.gc-hero-pagination {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.gc-hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.gc-hero-pagination .swiper-pagination-bullet-active {
  background: white;
}

.gc-hero-prev,
.gc-hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.gc-hero-prev { left: 30px; }
.gc-hero-next { right: 30px; }

.gc-hero-prev::after,
.gc-hero-next::after {
  font-size: 16px;
  font-weight: 700;
}

.gc-hero-prev:hover,
.gc-hero-next:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark-blue);
}

/* ============================================
   ABOUT / SOBRE NOSOTROS
   ============================================ */
.gc-about {
  position: relative;
}

/* --- Franja verde con imagen --- */
.gc-stats-bar {
  position: relative;
  height: 377px;
  background: var(--green-light);
}

.gc-stats-bar-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 72%;
  height: 100%;
  overflow: hidden;
}

.gc-stats-bar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Stats sobre la franja verde --- */
.gc-stats-overlay {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  z-index: 10;
}

.gc-stat {
  text-align: center;
}

.gc-stat-number {
  display: block;
  font-weight: 700;
  font-size: 45px;
  line-height: 1;
  color: white;
}

.gc-stat-text {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: white;
  max-width: 220px;
  margin-top: 10px;
}

.gc-stat-divider {
  width: 1px;
  height: 156px;
  background: rgba(255, 255, 255, 0.3);
  margin-top: 10px;
}

/* --- Layout fotos + texto --- */
.gc-about-wrapper {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}

/* --- Fotos lado izquierdo --- */
.gc-about-images {
  flex: 0 0 55%;
  position: relative;
  z-index: 5;
}

.gc-about-img-main {
  margin-top: -420px;
  margin-left: -48px;
  width: calc(100% + 48px);
}

.gc-about-img-main img {
  width: 100%;
  height: auto;
  display: block;
}

.gc-about-img-secondary {
  display: none;
}

/* Bloque blanco detrás de la parte baja de las fotos */
.gc-about-white-block {
  display: none;
}

/* --- Contenido lado derecho --- */
.gc-about-content {
  flex: 0 0 45%;
  padding: 60px 80px 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 5;
  background: white;
}

.gc-about-content h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.gc-about-content > p {
  font-size: 18px;
  line-height: 1.56;
  color: var(--text-slate);
  margin-bottom: 8px;
}

.gc-about-diff {
  margin-top: 16px;
  margin-bottom: 16px !important;
}

.gc-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
  margin-bottom: 60px;
  width: 100%;
}

.gc-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
  color: var(--text-dark);
}

.gc-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: #10B981;
  color: white;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

/* ============================================
   SERVICIOS
   ============================================ */
.gc-services {
  background: var(--bg-light);
  padding: 80px 105px;
}

.gc-services-header {
  margin-bottom: 48px;
}

.gc-services-header h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.gc-services-header .gc-btn {
  float: right;
  margin-top: 10px;
}

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

.gc-services-swiper {
  width: 100%;
  padding-bottom: 48px;
}

.gc-services-swiper .swiper-slide {
  height: auto;
}

.gc-services-swiper .gc-service-card {
  height: 100%;
}

.gc-service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.gc-service-card:hover {
  transform: translateY(-4px);
}

.gc-service-img {
  position: relative;
  width: 100%;
  height: 712px;
  border-radius: 20px;
  overflow: hidden;
}

.gc-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6) 100%);
  border-radius: 20px;
  pointer-events: none;
}

.gc-service-overlay {
  position: absolute;
  bottom: 30px;
  left: 24px;
  right: 24px;
  z-index: 2;
}

.gc-service-bar {
  width: 207px;
  height: 10px;
  background: var(--green-primary);
  border-radius: 100px;
  margin-bottom: 16px;
}

.gc-service-card h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.27;
  color: white;
  margin: 0;
}

.gc-service-card > p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  margin-top: 20px;
}

/* ============================================
   OFERTAS INMOBILIARIAS
   ============================================ */
.gc-offers {
  position: relative;
  padding: 80px 105px 80px;
  background: white;
}

/* Fondo verde solo la mitad superior */
.gc-offers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: var(--green-primary);
  z-index: 0;
}

.gc-offers-header {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.gc-offers-header h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.125;
  color: white;
}

.gc-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 370px);
  gap: 30px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.gc-offers-swiper {
  width: 100%;
  padding-bottom: 48px;
  position: relative;
  z-index: 1;
}

.gc-offers-swiper .swiper-slide {
  height: auto;
}

a.gc-offer-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.gc-offer-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px -8px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gc-offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.3);
}

.gc-offer-img {
  position: relative;
  height: 438px;
  overflow: hidden;
  border-radius: 12px;
}

.gc-offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-offer-badge {
  position: absolute;
  top: 50px;
  left: 20px;
  background: var(--green-primary);
  color: white;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0 16px;
  height: 30px;
  line-height: 30px;
  border-radius: 6px;
}

.gc-offer-fav {
  position: absolute;
  top: 21px;
  right: 12px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.gc-offer-dots {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 4px;
}

.gc-offer-dots .dot,
.gc-offers-nav-dots .dot,
.gc-automation-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d1d5db;
}

.gc-offer-dots .dot.active,
.gc-offers-nav-dots .dot.active {
  background: var(--green-light);
}

.gc-offer-info {
  padding: 20px 16px;
}

.gc-offer-price {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 24px;
  color: #000;
  margin-bottom: 4px;
}

.gc-offer-location {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 15px;
  color: #000;
}

.gc-offers-nav-dots {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

/* ============================================
   EXPERIENCIA / PROPIEDADES
   ============================================ */
.gc-experience {
  background: var(--bg-light);
  padding: 80px 74px;
  position: relative;
}

.gc-experience-header {
  margin-bottom: 40px;
}

.gc-experience-header h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  color: var(--text-dark);
}


.gc-experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gc-experience-swiper {
  width: 100%;
  padding-bottom: 48px;
}

.gc-experience-swiper .swiper-slide {
  height: auto;
}

a.gc-experience-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

a.gc-experience-card:hover {
  transform: translateY(-4px);
}

.gc-experience-card {
  display: flex;
  flex-direction: column;
}

.gc-experience-img {
  width: 100%;
  height: 522px;
  border-radius: 20px;
  overflow: hidden;
}

.gc-experience-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-experience-card h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.58;
  color: #000;
  margin-top: 16px;
}

/* === Swiper Flechas (global) === */
.swiper-button-prev,
.swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark-blue);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--green-light);
  color: white;
  border-color: var(--green-light);
}

/* Flechas ofertas (fondo verde) */
.gc-offers-swiper .swiper-button-prev,
.gc-offers-swiper .swiper-button-next {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.gc-offers-swiper .swiper-button-prev:hover,
.gc-offers-swiper .swiper-button-next:hover {
  background: white;
  color: var(--dark-blue);
}

/* === Swiper Dots (global) === */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--green-light);
}

/* Swipers con padding para dots */
.gc-services-swiper,
.gc-offers-swiper,
.gc-experience-swiper {
  position: relative;
}

.gc-experience-pagination {
  text-align: center;
}

/* Dots ofertas (fondo verde) */
.gc-offers-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
}

.gc-offers-pagination .swiper-pagination-bullet-active {
  background: white;
}

/* ============================================
   AUTOMATIZACIONES
   ============================================ */
.gc-automation {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gc-automation-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-bottom-right-radius: 250px;
  overflow: hidden;
}

.gc-automation-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-automation-bg .swiper-automation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gc-automation-bg .swiper-automation .swiper-wrapper {
  height: 100%;
}

.gc-automation-bg .swiper-automation .swiper-slide {
  width: 100%;
  height: 100%;
}

.gc-automation-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.swiper-pagination-automation {
  position: relative;
  z-index: 3;
}

.swiper-pagination-automation .dot {
  background: #d1d5db;
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-pagination-automation .dot.swiper-pagination-bullet-active {
  background: var(--green-light);
  opacity: 1;
}

.gc-auto-prev,
.gc-auto-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 5;
  cursor: pointer;
  transition: all 0.3s;
}
.gc-auto-prev { left: 30px; }
.gc-auto-next { right: 30px; }
.gc-auto-prev:hover, .gc-auto-next:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark-blue);
}

.gc-automation-decor {
  position: absolute;
  right: -100px;
  bottom: 0;
  width: 397px;
  height: 661px;
  background: var(--green-primary);
  border-radius: 198.5px;
  z-index: 0;
}

.gc-automation-content {
  position: relative;
  z-index: 2;
  padding: 100px 164px;
  max-width: 800px;
}

.gc-automation-icon {
  width: 77px;
  height: 84px;
  margin-bottom: 24px;
}

.gc-automation-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gc-automation-label {
  display: block;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 7px;
  color: white;
  margin-bottom: 8px;
}

.gc-automation-content h2 {
  font-weight: 700;
  font-size: 60px;
  line-height: 1.25;
  color: white;
  margin-bottom: 8px;
}

.gc-automation-content > p {
  font-size: 20px;
  line-height: 1.4;
  color: white;
  margin-bottom: 32px;
}

.gc-automation-dots {
  display: flex;
  gap: 8px;
  margin-top: 48px;
}

.gc-automation-dots .dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.gc-automation-dots .dot.active {
  background: var(--green-light);
}

/* ============================================
   COTIZACIÓN / FORMULARIO
   ============================================ */
.gc-quote {
  padding: 80px 105px;
  background: white;
  position: relative;
}

/* Franja verde en la parte inferior */
.gc-quote::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: var(--green-primary);
  z-index: 0;
}

.gc-quote-card {
  background: var(--bg-light);
  border-radius: 30px;
  box-shadow: 0 19px 53px -23px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  max-width: 1732px;
  margin: 0 auto;
  min-height: 700px;
  position: relative;
  z-index: 1;
}

.gc-quote-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  margin: 30px;
  min-height: 500px;
  overflow: hidden;
}

.gc-quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.gc-quote-form-wrapper {
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gc-quote-form-wrapper h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.11;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.gc-quote-form-wrapper > p {
  font-size: 18px;
  line-height: 1.56;
  color: var(--text-slate);
  text-align: center;
  margin-bottom: 32px;
}

.gc-quote-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gc-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gc-form-group label {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.43;
}

.gc-form-group input,
.gc-form-group select,
.gc-form-group textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--text-slate);
  background: white;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  outline: none;
  transition: border-color 0.3s;
}

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

.gc-form-group input::placeholder,
.gc-form-group textarea::placeholder {
  color: var(--text-gray);
}

.gc-form-group input:focus,
.gc-form-group select:focus,
.gc-form-group textarea:focus {
  border-color: var(--green-primary);
}

/* === Error de validacion en campos === */
.gc-field-error {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.05) !important;
}

.gc-field-error::placeholder {
  color: #ef4444 !important;
}

.gc-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23334155' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* ============================================
   FOOTER
   ============================================ */
.gc-footer {
  background: var(--dark-blue);
  padding: 66px 0 32px;
  position: relative;
  overflow: hidden;
}

.gc-footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 45px 0 45px;
}

.gc-footer-cols {
  display: grid;
  grid-template-columns: 331px 1fr 1fr auto;
  gap: 67px;
  padding-bottom: 49px;
  border-bottom: 1px solid #1f2937;
}

.gc-footer-logo {
  margin-bottom: 12px;
}

.gc-footer-logo img {
  width: 100%;
  height: auto;
}

.gc-footer-col--info > p {
  font-size: 14px;
  line-height: 1.43;
  color: #f0f0f0;
  margin-bottom: 24px;
}

.gc-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7.5px;
}

.gc-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #f0f0f0;
}

.gc-footer-contact-item i {
  font-size: 14px;
  color: var(--green-primary);
}

.gc-footer-col h4 {
  font-weight: 700;
  font-size: 20px;
  color: white;
  margin-bottom: 24px;
}

.gc-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  margin: 0;
}

.gc-footer-col ul a {
  font-size: 16px;
  color: #f0f0f0;
  transition: color 0.3s;
}

.gc-footer-col ul a:hover {
  color: var(--green-light);
}

.gc-footer-social {
  display: flex;
  gap: 12px;
}

.gc-footer-social a {
  color: #f0f0f0;
  font-size: 20px;
  transition: color 0.3s;
}

.gc-footer-social a:hover {
  color: var(--green-light);
}

.gc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 48px;
}

.gc-footer-bottom > span {
  font-size: 14px;
  color: var(--text-gray);
}

.gc-footer-developed {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.gc-footer-developed a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.gc-footer-developed a img {
  height: 18px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.gc-footer-links {
  display: flex;
  gap: 24px;
}

.gc-footer-links a {
  font-size: 14px;
  color: var(--text-gray);
  transition: color 0.3s;
}

.gc-footer-links a:hover {
  color: #f0f0f0;
}

/* ============================================
   WHATSAPP FLOATING
   ============================================ */
.gc-whatsapp {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 73px;
  height: 73px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s;
}

.gc-whatsapp:hover {
  transform: scale(1.1);
  color: white;
}

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

  .gc-offers-grid {
    grid-template-columns: repeat(2, 370px);
  }

  .gc-offers-swiper .gc-offer-card {
    max-width: 370px;
    margin: 0 auto;
  }

  .gc-about-img-secondary {
    width: 400px;
    height: 420px;
    left: 280px;
    top: 180px;
  }

  .gc-stats-overlay {
    right: 4%;
  }
}

@media (max-width: 1200px) {
  .gc-about-wrapper {
    flex-direction: column;
  }

  .gc-about-images {
    display: none !important;
  }

  .gc-about-content {
    flex: 1;
    padding: 40px;
  }

  .gc-stats-overlay {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    justify-content: center;
    padding: 30px 20px;
  }

  .gc-stats-bar {
    height: auto;
    padding-bottom: 20px;
  }

  .gc-stats-bar-img {
    display: none;
  }

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

  .gc-quote-card {
    grid-template-columns: 1fr;
  }

  .gc-quote-image {
    height: 400px;
  }
}

@media (max-width: 991px) {
  .gc-navbar-toggler {
    display: block;
    z-index: 1002;
  }

  .gc-nav {
    position: fixed;
    inset: 0;
    background: rgba(0, 56, 78, 0.97);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    padding: 40px 20px;
  }

  .gc-nav.active {
    transform: translateX(0);
  }

  .gc-nav.active ~ .gc-navbar-toggler {
    opacity: 0;
    pointer-events: none;
  }

  .gc-nav-link {
    font-size: 28px;
    font-weight: 700;
    padding: 16px 0;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
    text-align: center;
  }

  .gc-nav-link:hover,
  .gc-nav-link.active {
    opacity: 1;
    color: var(--green-light);
  }

  .gc-nav-link.active::after {
    display: none;
  }

  .gc-hero-content h1 {
    font-size: 40px;
  }

  .gc-hero-content p {
    font-size: 16px;
  }

  .gc-services {
    padding: 60px 40px;
  }

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

  .gc-service-img {
    height: 400px;
  }

  .gc-offers {
    padding: 60px 40px;
  }

  .gc-offers-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .gc-experience {
    padding: 60px 40px;
  }

  .gc-experience-grid {
    grid-template-columns: 1fr;
  }

  .gc-experience-img {
    height: 350px;
  }

  .gc-automation-content {
    padding: 60px 40px;
  }

  .gc-automation-content h2 {
    font-size: 40px;
  }

  .gc-automation-decor {
    display: none;
  }

  .gc-quote {
    padding: 60px 20px;
  }

  .gc-quote-form-wrapper {
    padding: 40px 30px;
  }

  .gc-form-row {
    grid-template-columns: 1fr;
  }

  .gc-footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* ============================================
   MOBILE NAV ELEMENTS
   ============================================ */
.gc-nav-mobile-header {
  display: none;
}

.gc-nav-mobile-social {
  display: none;
}

@media (max-width: 991px) {
  .gc-nav-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 30px;
  }

  .gc-nav-mobile-logo {
    height: 50px;
    width: auto;
  }

  .gc-nav-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
  }

  .gc-nav-close:hover {
    color: var(--green-light);
  }

  .gc-nav-mobile-social {
    display: flex;
    gap: 20px;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
  }

  .gc-nav-mobile-social a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    transition: color 0.3s;
  }

  .gc-nav-mobile-social a:hover {
    color: var(--green-light);
  }
}

@media (max-width: 768px) {
  .gc-navbar--scrolled {
    padding: 10px 20px;
  }

  .gc-offers-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .gc-quote-image {
    display: none;
  }

  .gc-offer-img {
    height: 300px;
  }

  .gc-service-img {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .gc-navbar {
    padding: 15px 20px;
  }

  .gc-logo img {
    height: 45px;
  }

  .gc-hero-content h1 {
    font-size: 28px;
  }

  .gc-hero-icon {
    display: none;
  }

  .gc-about-images {
    display: none !important;
  }

  .gc-about-img-secondary {
    position: absolute;
    width: 50%;
    height: 200px;
    right: 20px;
    left: auto;
    top: 80px;
    border-radius: 20px;
  }

  .gc-about-content {
    padding: 30px 20px;
  }

  .gc-about-content h2 {
    font-size: 28px;
  }

  .gc-about-content h2 br {
    display: none;
  }

  .gc-features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gc-stat-number {
    font-size: 32px;
  }

  .gc-stat-text {
    font-size: 12px;
    max-width: 130px;
    line-height: 1.35;
  }

  .gc-stat-divider {
    height: 70px;
  }

  .gc-stats-overlay {
    gap: 24px;
    padding: 20px 16px;
  }

  .gc-offers-header h2 {
    font-size: 28px;
  }

  .gc-automation-label {
    font-size: 16px;
    letter-spacing: 4px;
  }

  .gc-automation-content h2 {
    font-size: 26px;
  }

  .gc-automation-content {
    padding: 40px 20px;
  }

  .gc-automation-content > p {
    font-size: 16px;
  }

  .gc-services {
    padding: 40px 20px;
  }

  .gc-offers {
    padding: 40px 20px;
  }

  .gc-experience {
    padding: 40px 20px;
  }

  .gc-quote {
    padding: 40px 16px;
  }

  .gc-quote-form-wrapper {
    padding: 30px 20px;
  }

  .gc-quote-form-wrapper h2 {
    font-size: 24px;
  }

  .gc-service-card h3 {
    font-size: 22px;
  }

  .gc-services-header h2 {
    font-size: 28px;
  }

  .gc-experience-header h2 {
    font-size: 28px;
  }

  .gc-footer-content {
    padding: 0 20px;
  }

  .gc-footer-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gc-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .gc-whatsapp {
    width: 56px;
    height: 56px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
}
