/*
Theme Name: Geely Experience Theme
Theme URI: https://example.com/geely-experience
Author: Geely Experience
Author URI: https://example.com
Description: A weightless, glassmorphism-based theme for Geely.
Version: 3.1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: geely-experience
*/

/* ========================================
   TABLE OF CONTENTS
   ========================================
   1. CSS VARIABLES
   2. BASE & RESET
   3. LAYOUT CONTAINERS
   4. TYPOGRAPHY & UTILITIES
   5. BUTTONS & FORMS
   6. HERO SECTION
   7. NAVIGATION
   8. CONTENT SECTIONS
   9. COMPONENTS
   10. BLOG
   11. FOOTER
   12. PLUGINS
   13. ANIMATIONS
   14. MEDIA QUERIES
   ======================================== */


/* ========================================
   1. CSS VARIABLES
   ======================================== */
:root {
  --geely-dark-bg: #0f172a;
  --geely-primary: #3b82f6;
  --geely-accent-glow: rgba(59, 130, 246, 0.5);
  --geely-white: #ffffff;
  --geely-glass-bg: rgba(255, 255, 255, 0.05);
  --geely-glass-border: rgba(255, 255, 255, 0.1);
  --geely-font-main: 'Inter', 'Montserrat', sans-serif;
  --geely-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}


/* ========================================
   2. BASE & RESET
   ======================================== */
body {
  background-color: var(--geely-dark-bg);
  color: var(--geely-white);
  font-family: var(--geely-font-main);
  margin: 0;
  padding: 0;
}


/* ========================================
   3. LAYOUT CONTAINERS
   ======================================== */
.geely-hero, 
.geely-services {
  background-color: var(--geely-dark-bg);
  box-sizing: border-box;
  color: var(--geely-white);
  font-family: var(--geely-font-main);
  overflow: hidden;
  padding: 1rem;
  position: relative;
}

.geely-container {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
}

.container-flex-center {
  align-items: center;
  display: flex;
  min-height: 80vh;
}

.container-centered {
  margin: 0 auto;
  max-width: 600px;
  padding: 2rem;
}

.container-finance {
  display: inline-block;
  max-width: 600px;
  text-align: left;
}


/* ========================================
   4. TYPOGRAPHY & UTILITIES
   ======================================== */
.section-header {
  margin-bottom: 1rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--geely-primary);
  font-weight: 600;
}

.text-muted {
  color: #94a3b8;
}

.text-centered {
  text-align: center;
}

.text-white {
  color: white;
}

.text-full-width {
  width: 100%;
}

.text-large {
  font-size: 1.1rem;
}

.text-small {
  font-size: 0.7rem;
  opacity: 0.5;
}

.bg-dark-transparent {
  background: rgba(15, 23, 42, 0.9);
}


/* ========================================
   5. BUTTONS & FORMS
   ======================================== */
.btn-geely {
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: var(--geely-transition);
}

.btn-geely.primary {
  background: var(--geely-primary);
  box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
  color: white;
}

.btn-geely.primary:hover {
  box-shadow: 0 10px 20px 0 rgba(59, 130, 246, 0.5);
  transform: translateY(-4px);
}

.btn-geely.secondary {
  background: transparent;
  border: 1px solid var(--geely-glass-border);
  color: white;
}

.btn-geely.secondary:hover {
  background: var(--geely-glass-bg);
  border-color: var(--geely-white);
}

.btn-geely-submit {
  background: var(--geely-primary);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-weight: 600;
  padding: 12px;
  transition: opacity 0.3s;
  width: 100%;
}

.btn-geely-submit:hover {
  opacity: 0.9;
}


/* ========================================
   6. HERO SECTION
   ======================================== */
.geely-hero {
  display: block;
  min-height: 80vh;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.geely-hero::before {
  animation: pulse-glow 8s infinite alternate;
  background: radial-gradient(circle, var(--geely-accent-glow) 0%, transparent 70%);
  content: '';
  filter: blur(80px);
  height: 50vw;
  left: -10%;
  opacity: 0.4;
  position: absolute;
  top: -20%;
  width: 50vw;
  z-index: 0;
}

/* Hero Slider */
.hero-slider-container {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  height: 100vh;
  max-width: 100vw;
  -ms-overflow-style: none;
  overflow-x: scroll !important;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  width: 100%;
}

.hero-slider-container::-webkit-scrollbar { 
  display: none;
  height: 0;
  width: 0;
}

.hero-slide {
  align-items: center;
  background-position: center;
  background-size: cover;
  display: flex;
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  scroll-snap-align: start;
  width: 100%;
}

.hero-slide::before {
  background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
  bottom: 0;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

.hero-slide-content-wrapper {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 1rem;
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero-content {
  animation: fadeUp 1s ease-out;
  max-width: 700px;
}

.hero-badge {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  color: var(--geely-primary);
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
}

.hero-title {
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-description {
  color: #94a3b8;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-subtitle {
  color: #cbd5e1;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 800px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions .btn-geely {
  min-width: 200px;
  text-align: center;
}

/* Hero Utility Classes */
.hero-section-wrapper {
  align-items: center;
  display: flex;
  isolation: isolate;
  min-height: 80vh;
  overflow: hidden;
  overflow-x: hidden;
  position: relative;
}

.hero-section-wrapper--medium {
  min-height: 70vh;
}

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

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

.hero-overlay-layer {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.hero-overlay-layer--medium {
  background: rgba(0, 0, 0, 0.5);
}

.hero-floating-elements {
  z-index: 2;
}

.hero-content-layer {
  position: relative;
  z-index: 2;
}

.hero-content-layer--top {
  position: relative;
  z-index: 3;
}

.hero-content--centered {
  text-align: center;
}

/* Floating Elements */
.floating-elements {
  display: none;
  height: 100%;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
}

.float-orb {
  background: var(--ag-primary);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.2;
  position: absolute;
}

.orb-1 { 
  animation: float 6s ease-in-out infinite;
  height: 100px;
  right: 20%;
  top: 20%;
  width: 100px;
}

.orb-2 { 
  animation: float 8s ease-in-out infinite reverse;
  bottom: 30%;
  height: 150px;
  right: 10%;
  width: 150px;
}

.float-card {
  align-items: center;
  animation: float-card 5s ease-in-out infinite;
  color: white;
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  position: absolute;
  right: 15%;
  top: 30%;
}

.hero-bg-fallback {
  background: radial-gradient(circle, #3b82f6 0%, #0f172a 70%);
  height: 100%;
  width: 100%;
}


/* ========================================
   7. NAVIGATION
   ======================================== */
.geely-header {
  backdrop-filter: blur(0px);
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
  border-bottom: none;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.header-wrapper {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 60px;
  padding: 1rem 1.5rem;
}

.header-brand {
  align-items: center;
  display: flex;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.brand-text {
  color: white;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-tagline {
  color: var(--geely-primary);
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-top: 2px;
  text-transform: uppercase;
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
  margin-left: auto;
  margin-right: 2rem;
}

.header-socials {
  display: flex;
  gap: 1rem;
}

.header-socials a {
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
}

.header-socials a:hover {
  color: var(--geely-primary);
  transform: translateY(-2px);
}

.desktop-socials {
  display: none;
}

.mobile-socials {
  justify-content: center;
  margin-top: 2rem;
}

.nav-menu {
  align-items: center;
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.current {
  background: rgba(59, 130, 246, 0.1);
  color: white;
}

.nav-menu a::after {
  background: var(--geely-primary);
  bottom: 0;
  content: '';
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transition: transform 0.3s ease;
  width: 80%;
}

.nav-menu a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 25px;
  justify-content: space-around;
  padding: 0;
  width: 30px;
  z-index: 1001;
}

.hamburger-line {
  background: white;
  border-radius: 2px;
  height: 3px;
  transition: all 0.3s ease;
  width: 100%;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(15, 23, 42, 0.98);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding-top: 80px;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  z-index: 999;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  padding: 2rem;
  width: 100%;
}

.mobile-menu {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu li {
  opacity: 0;
  text-align: center;
  transform: translateY(20px);
  transition: all 0.3s ease;
  width: 100%;
}

.mobile-nav-overlay.active .mobile-menu li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu li:nth-child(5) { transition-delay: 0.5s; }

.mobile-menu a {
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.current {
  background: rgba(59, 130, 246, 0.2);
  color: white;
  transform: scale(1.05);
}


/* ========================================
   8. CONTENT SECTIONS
   ======================================== */

/* Services Grid */
.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Service Cards */
.service-card {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 overflow: hidden;
 padding: 2.5rem;
 position: relative;
 flex-wrap: nowrap;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-15px) scale(1.02);
}

.service-card::after {
  background: radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.2), transparent 50%);
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  align-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  font-size: 3rem;
  height: 80px;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 80px;
}

.service-title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-text {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.service-link {
  align-items: center;
  color: var(--geely-primary);
  display: flex;
  font-weight: 600;
  gap: 0.5rem;
  margin-top: auto;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.service-link:hover {
  color: white;
  gap: 1rem;
}

/* Vehicle Catalog Section */
#catalogo .section-header {
  padding-top: 2rem;
}

#catalogo .services-grid {
  display: flex; 
  gap: 2rem;
  overflow-x: auto; 
  padding: 2rem 1rem 1rem 1rem; 
  scroll-snap-type: x mandatory; 
  scrollbar-color: var(--geely-primary) transparent;
}

#catalogo .services-grid::-webkit-scrollbar {
  height: 6px;
}

#catalogo .services-grid::-webkit-scrollbar-track {
  background: transparent;
}

#catalogo .services-grid::-webkit-scrollbar-thumb {
  background-color: var(--geely-primary);
  border-radius: 20px;
}

/* Vehicle Cards */
.vehicle-card {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  max-width: 350px;
  min-width: 300px;
  padding: 0;
  scroll-snap-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vehicle-card:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-10px) scale(1.02);
}

.vehicle-image-container {
  border-bottom: 1px solid var(--geely-glass-border);
  height: 200px;
  overflow: hidden;
  width: 100%;
}

.vehicle-image {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  width: 100%;
}

.vehicle-content {
  padding: 2rem;
}

.vehicle-title {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.vehicle-tag {
  color: var(--geely-primary);
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.vehicle-features {
  color: #cad5e2;
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.vehicle-features li {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.vehicle-features li::before {
  color: var(--geely-primary);
  content: '✓';
}

.vehicle-features--muted {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.vehicle-features--large {
  font-size: 1.2rem;
}

/* Technology Features Grid */
.tech-features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Advisor Profile */
.advisor-section {
  padding: 2rem 1rem;
  text-align: center;
}

.advisor-card {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto;
  max-width: 800px;
  padding: 3rem;
}

.advisor-image {
  border: 4px solid rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
  height: 150px;
  object-fit: cover;
  width: 150px;
}

.advisor-bio h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Financing Section */
.finance-details {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  margin-top: 1.5rem;
  padding: 1.5rem;
}

/* FAQ Accordion */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
  max-width: 800px;
}

details.glass-card {
  padding: 0;
  transition: all 0.3s ease;
}

details.glass-card[open] {
  background: rgba(255, 255, 255, 0.1);
}

summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 1.1rem;
  font-weight: 600;
  justify-content: space-between;
  list-style: none;
  padding: 1.5rem;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  color: var(--geely-primary);
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s;
}

details[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  border-top: 1px solid rgba(255,255,255,0.05);
  color: #cbd5e1;
  line-height: 1.6;
  margin-top: 0.5rem;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Three Pillars Section */
.pillars-section {
  background-color: var(--geely-dark-bg);
  padding: 3rem 1rem;
  position: relative;
}
.pillars-section .section-header .hero-badge{
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.pillars-grid {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr) !important;
  margin-top: 3rem;
}

.pillar-card {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: var(--geely-glass-bg);
  border: 1px solid var(--geely-glass-border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
  padding: 2.5rem;
  position: relative;
  transition: var(--geely-transition);
}

.pillar-card:hover {
  border-color: var(--geely-primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-10px);
}

.pillar-icon-wrapper {
  align-items: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  color: var(--geely-primary);
  display: flex;
  font-size: 1.5rem;
  height: 60px;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 60px;
}

.pillar-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pillar-details {
  color: #cbd5e1;
  flex-grow: 1;
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
}

.pillar-details li {
  align-items: baseline;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pillar-details strong {
  color: white;
}

.pillar-hook {
  border-left: 3px solid var(--geely-primary);
  color: #94a3b8;
  font-style: italic;
  margin-top: 1rem;
  padding-left: 1rem;
}

/* Technical Specs Section */
.specs-section {
  background: rgba(255,255,255,0.02);
  padding: 4rem 1rem;
}

.specs-title {
  margin-bottom: 2rem;
}

.specs-table-container {
  border: 1px solid var(--geely-glass-border);
  border-radius: 12px;
  overflow-x: auto;
}

.specs-table {
  border-collapse: collapse;
  color: #cbd5e1;
  width: 100%;
}

.specs-table th, 
.specs-table td {
  border-bottom: 1px solid var(--geely-glass-border);
  padding: 1.5rem;
  text-align: left;
}

.specs-table th {
  background: rgba(59, 130, 246, 0.1);
  color: white;
  font-weight: 700;
  width: 40%;
}

.specs-table tr:last-child td,
.specs-table tr:last-child th {
  border-bottom: none;
}

.specs-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

.datasheet-pdf-link {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.pdf-download-btn {
  align-items: center;
  display: inline-flex;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.pdf-download-btn svg {
  transition: transform 0.3s ease;
}

.pdf-download-btn:hover svg {
  transform: translateY(3px);
}

/* ========================================
   9. COMPONENTS
   ======================================== */

/* Glassmorphism Card */
.glass-card {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: var(--geely-glass-bg);
  border: 1px solid var(--geely-glass-border);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: var(--geely-transition);
}

/* WhatsApp Float */
.whatsapp-float {
  align-items: center;
  animation: pulse-glow 3s infinite;
  background-color: #25D366;
  border-radius: 50%;
  bottom: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  color: white;
  display: flex;
  font-size: 2rem;
  height: 60px;
  justify-content: center;
  position: fixed;
  right: 2rem;
  text-decoration: none;
  transition: transform 0.3s ease;
  width: 60px;
  z-index: 1000;
}

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

/* Lead Capture Modal */
.geely-modal-overlay {
  align-items: center !important;
  animation: fadeIn 0.3s ease;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.8) !important;
  display: none !important;
  height: 100% !important;
  justify-content: center !important;
  left: 0 !important;
  pointer-events: auto !important;
  position: fixed !important;
  top: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
}

.geely-modal-content {
  animation: slideUp 0.3s ease;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  margin: auto;
  max-width: 400px;
  padding: 2.5rem;
  position: relative;
  text-align: center;
  transform: none;
  width: 90%;
}

.geely-modal-close {
  color: #94a3b8;
  cursor: pointer;
  font-size: 1.5rem;
  position: absolute;
  right: 15px;
  top: 10px;
  transition: color 0.2s;
}

.geely-modal-close:hover {
  color: white;
}

.geely-modal-content h3 {
  color: white;
  margin-bottom: 1rem;
}

.geely-modal-content p {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.geely-input-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.geely-input-group label {
  color: #94a3b8;
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.geely-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  padding: 12px;
  transition: border-color 0.3s;
  width: 100%;
}

.geely-input:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--geely-primary);
  outline: none;
}

.geely-input-error {
  background: rgba(239, 68, 68, 0.05) !important;
  border-color: #ef4444 !important;
}

.geely-input-error:focus {
  background: rgba(239, 68, 68, 0.08) !important;
  border-color: #dc2626 !important;
}

.geely-error-message {
  animation: errorSlide 0.3s ease-out;
  color: #ef4444;
  display: none;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

/* Gallery Slider & Lightbox */
.geely-gallery-slider {
  background: transparent;
  overflow: hidden;
  padding: 2rem 0;
  width: 100%;
}

.geely-gallery-slider .swiper-slide {
  background: #000;
  border-radius: 12px;
  height: 400px;
  overflow: hidden;
  transition: transform 0.3s;
}

.geely-gallery-slider .swiper-slide img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}

.geely-gallery-slider .swiper-slide:hover img {
  transform: scale(1.05);
}

.geely-gallery-slider .swiper-button-next,
.geely-gallery-slider .swiper-button-prev {
  backdrop-filter: blur(5px);
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--geely-primary);
  height: 40px;
  width: 40px;
}

.geely-gallery-slider .swiper-button-next:after,
.geely-gallery-slider .swiper-button-prev:after {
  font-size: 1.2rem;
  font-weight: bold;
}

.geely-gallery-slider .swiper-pagination-bullet-active {
  background: var(--geely-primary);
}

#geely-lightbox {
  align-items: center;
  animation: fadeIn 0.3s;
  background-color: rgba(0,0,0,0.9);
  display: none;
  height: 100%;
  justify-content: center;
  left: 0;
  overflow: auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.lightbox-content {
  animation: zoomIn 0.3s;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  display: block;
  margin: auto;
  max-height: 90vh;
  max-width: 90%;
}

.lightbox-close {
  color: #f1f1f1;
  cursor: pointer;
  font-size: 40px;
  font-weight: bold;
  position: absolute;
  right: 35px;
  top: 20px;
  transition: 0.3s;
  z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: var(--geely-primary);
  cursor: pointer;
  text-decoration: none;
}


/* ========================================
   10. BLOG
   ======================================== */
.geely-blog-archive {
  min-height: 80vh;
  padding: 4rem 1rem;
}

.blog-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image-container {
  height: 200px;
  overflow: hidden;
  width: 100%;
}

.blog-image {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  width: 100%;
}

.blog-card:hover .blog-image {
  transform: scale(1.1);
}

.blog-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.blog-meta {
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  font-size: 0.85rem;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-date,
.blog-category a {
  color: var(--geely-primary);
  text-decoration: none;
}

.blog-title {
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.blog-title a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--geely-primary);
}

.blog-excerpt {
  color: rgba(255, 255, 255, 0.7);
  flex: 1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-pagination {
  grid-column: 1 / -1;
  margin-top: 3rem;
  text-align: center;
}

.pagination {
  display: inline-flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination a,
.pagination span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--geely-primary);
}

.pagination .current {
  background: var(--geely-primary);
  border-color: var(--geely-primary);
}

/* Single Post */
.geely-single-post {
  min-height: 80vh;
  padding: 4rem 1rem;
}

.post-header {
  margin-bottom: 2rem;
  text-align: center;
}

.post-categories {
  margin-bottom: 1rem;
}

.post-categories a {
  background: rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  color: var(--geely-primary);
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-categories a:hover {
  background: rgba(59, 130, 246, 0.3);
}

.post-title {
  color: white;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.post-meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.meta-divider {
  margin: 0 0.5rem;
}

.post-featured-image {
  border-radius: 16px;
  margin: 2rem 0;
  overflow: hidden;
}

.post-featured-image img {
  display: block;
  height: auto;
  width: 100%;
}

.post-content {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.8;
}

.post-content h2,
.post-content h3 {
  color: white;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content a {
  color: var(--geely-primary);
  text-decoration: underline;
}

.post-content a:hover {
  color: white;
}

.post-content img {
  border-radius: 12px;
  height: auto;
  margin: 2rem 0;
  max-width: 100%;
}

.post-tags {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
}

.tags-label {
  color: rgba(255, 255, 255, 0.6);
  margin-right: 1rem;
}

.post-tags a {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  padding: 0.3rem 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-tags a:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--geely-primary);
  color: white;
}

.post-navigation {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 2rem;
}

.nav-previous,
.nav-next {
  flex: 1;
}

.nav-next {
  text-align: right;
}

.post-navigation a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-navigation a:hover {
  color: var(--geely-primary);
}

.empty-state-card {
  grid-column: 1 / -1;
  padding: 3rem;
  text-align: center;
}


/* ========================================
   11. FOOTER
   ======================================== */

/* Vehicle Page Specific Styles */
.vehicle-main-content {
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.vehicle-faq-section {
  background: var(--geely-dark-bg);
  padding: 4rem 1rem;
}

.vehicle-content-section {
  background: rgba(255,255,255,0.02);
  padding: 4rem 1rem;
}

.vehicle-content-wrapper {
  color: #e2e8f0;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.vehicle-content-wrapper h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.vehicle-content-wrapper p {
  margin-bottom: 1.5rem;
}

.vehicle-content-wrapper ul,
.vehicle-content-wrapper ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.vehicle-content-wrapper img {
  border-radius: 12px;
  height: auto;
  margin: 2rem 0;
  max-width: 100%;
}

.vehicle-gallery-section {
  background: rgba(255,255,255,0.02);
  padding: 1rem 1rem;
}

.vehicle-gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  margin-top: 2rem;
}

.gallery-item {
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.footer-contact-text {
  margin-bottom: 2rem;
}

.site-footer {
  background: #020617;
  border-top: 1px solid var(--geely-glass-border);
  color: #94a3b8;
  padding: 4rem 1rem;
  text-align: center;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.footer-socials a {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  height: 48px;
  justify-content: center;
  transition: all 0.3s ease;
  width: 48px;
}

.footer-socials a:hover {
  background: var(--geely-primary);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
  color: white;
  transform: translateY(-3px);
}

.footer-socials svg {
  height: 24px;
  fill: currentColor;
  width: 24px;
}


/* ========================================
   12. PLUGINS
   ======================================== */

/* WPForms Glassmorphism */
div.wpforms-container-full .wpforms-form input[type=text],
div.wpforms-container-full .wpforms-form input[type=email],
div.wpforms-container-full .wpforms-form input[type=tel],
div.wpforms-container-full .wpforms-form input[type=url],
div.wpforms-container-full .wpforms-form input[type=password],
div.wpforms-container-full .wpforms-form input[type=number],
div.wpforms-container-full .wpforms-form select,
div.wpforms-container-full .wpforms-form textarea {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(59, 130, 246, 0.3) !important;
  border-radius: 8px !important;
  color: white !important;
  padding: 10px 15px !important;
  transition: all 0.3s ease;
}

div.wpforms-container-full .wpforms-form input:focus,
div.wpforms-container-full .wpforms-form select:focus,
div.wpforms-container-full .wpforms-form textarea:focus {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--geely-primary) !important;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.3) !important;
}

div.wpforms-container-full .wpforms-form label,
div.wpforms-container-full .wpforms-form .wpforms-field-label {
  color: #ffffff !important;
  font-weight: 600 !important;
}

div.wpforms-container-full .wpforms-form button[type=submit] {
  background-color: var(--geely-primary) !important;
  border: none !important;
  border-radius: 8px !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 12px 24px !important;
  transition: transform 0.2s ease !important;
}

div.wpforms-container-full .wpforms-form button[type=submit]:hover {
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.wpforms-field-row-block {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.wpforms-field-row-block .wpforms-one-half {
  float: none !important;
  margin: 0 !important;
  width: calc(50% - 8px) !important;
}

.wpforms-container input.wpforms-field-medium,
.wpforms-container select.wpforms-field-medium,
.wpforms-container .wpforms-field-row.wpforms-field-medium,
.wp-core-ui div.wpforms-container input.wpforms-field-medium,
.wp-core-ui div.wpforms-container select.wpforms-field-medium,
.wp-core-ui div.wpforms-container .wpforms-field-row.wpforms-field-medium {
  max-width: 100% !important;
}

/* Join.Chat Plugin */
.joinchat {
  bottom: 20px !important;
  z-index: 999999 !important;
}

.joinchat__button {
  height: 50px !important;
  width: 50px !important;
}


/* ========================================
   13. ANIMATIONS
   ======================================== */
@keyframes fadeUp {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

@keyframes float-card {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-glow {
  0% { 
    opacity: 0.3;
    transform: scale(1);
  }
  100% { 
    opacity: 0.5;
    transform: scale(1.1);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from { transform: scale(0.9); }
  to { transform: scale(1); }
}

@keyframes errorSlide {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ========================================
   14. MEDIA QUERIES
   ======================================== */

/* Tablet & Desktop (768px+) */
@media (min-width: 768px) {
  .desktop-nav {
    display: block;
  }
  
  .desktop-socials {
    display: flex;
  }
  
  .header-wrapper {
    min-height: 80px;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .floating-elements {
    display: block;
  }
  
  .advisor-card {
    flex-direction: row;
    padding: 3rem;
    text-align: left;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .specs-section{
    padding: 2rem 1rem;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet (992px max) */
@media (max-width: 992px) {
  .pillars-grid {
   display: flex;
   flex-direction: column;
   flex-wrap: nowrap;
  }
}

/* Mobile (768px max) */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .geely-hero, 
  .geely-services .advisor-section {
    padding: 3rem 1.5rem;
  }
  
  #catalogo .section-header {
    padding-top: 0rem;
  }
  
  #catalogo .section-title {
    font-size: 2rem;
    padding: 0 1rem;
  }
  
  #catalogo .services-grid {
    flex-direction: row !important;
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .vehicle-card {
    max-width: 85vw;
    min-width: 85vw;
  }
  
  .tech-features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .tech-features-grid .service-card {
    margin-bottom: 0;
    min-width: unset;
  }
  
  .advisor-card {
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .advisor-image {
    height: 100px;
    margin-bottom: 0.5rem;
    width: 100px;
  }
  
  .advisor-bio h3 {
    font-size: 1.5rem;
  }
  
  .advisor-bio p {
    font-size: 0.95rem;
  }
  
  .finance-details {
    padding: 2rem;
  }
  
  .pillar-card {
    padding: 1.5rem;
  }
}

/* Small Mobile (600px max) */
@media (max-width: 600px) {
  .wpforms-field-row-block .wpforms-one-half {
    width: 100% !important;
  }
}

/* Vehicle Filter Buttons */
.vehicle-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--geely-primary);
    border-color: var(--geely-primary);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}
