/* =======================================================================
   THEME: GEOLOG CORPORATE (Harpia Inspired)
   CONCEPT: High-Trust, Established, Professional
   COLORS: Orange (#F05023) & Deep Navy (#0F172A)
   ======================================================================= */

:root {
  /* -- Palette: Corporate Brand -- */
  --brand-primary: #F05023;
  /* Vibrant Orange */
  --brand-primary-dark: #D13B10;
  /* Darker Orange for Hover */
  --brand-secondary: #0F172A;
  /* Deep Navy (Footer/Headings) */
  --brand-accent: #334155;
  /* Slate for secondary text */

  /* -- Backgrounds -- */
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  /* Very light gray for alternate sections */
  --bg-dark: #0F172A;
  /* Navy Background */

  /* -- Text -- */
  --text-main: #1E293B;
  /* Slate 800 - Body */
  --text-dark: #020617;
  /* Slate 950 - Headings */
  --text-light: #94A3B8;
  /* Slate 400 - Muted */
  --text-white: #FFFFFF;
  /* Text on Dark/Orange */

  /* -- Utility -- */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-orange: 0 10px 25px -5px rgba(240, 80, 35, 0.3);

  /* -- Typography -- */
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* -- Layout -- */
  --container-width: 1240px;
  --radius-sm: 4px;
  /* More square/corporate */
  --radius-md: 8px;
  --radius-pill: 999px;

  /* -- Velogi Brand (LogTech) -- */
  --velogi-blue: #185FA5;
  --velogi-green: #1D9E75;
  --velogi-dark: #0D1B2A;
  --velogi-light: #F1F5F9;
}

/* =======================================================================
   RESET & CORE
   ======================================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-white);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

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

/* =======================================================================
   TYPOGRAPHY
   ======================================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  /* Actually text-accent usually better, fix below */
  color: var(--brand-accent);
  max-width: 700px;
  margin-bottom: 2rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--brand-primary);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

/* =======================================================================
   LAYOUT UTILS
   ======================================================================= */

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
}

section {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-white {
  background-color: var(--bg-white);
}

/* =======================================================================
   BUTTONS
   ======================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--brand-primary);
  color: var(--text-white);
  border: none;
}

.btn-primary:hover {
  background-color: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border-radius: var(--radius-sm);
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background-color: #1FAF54;
}

/* =======================================================================
   HEADER (Fixed White Stick)
   ======================================================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand img {
  height: 130px;
  /* Requested size */
  width: auto;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.nav-link:hover {
  color: var(--brand-primary);
}

/* =======================================================================
   HERO SECTION (Cinematic Gradient)
   =======================================================================*/
/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: -80px;
  padding-top: 220px;
  /* Increased to account for larger 130px logo + padding */
  overflow: hidden;
  color: white;
  background-color: #0F172A;
  /* Deep Navy Background for transparent image to fade into */
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/logistica.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  /* Behind content but above background color */
  opacity: 0.55;
  /* Make it very subtle as requested ("diminua") */
}

.hero .container {
  position: relative;
  z-index: 2;
  /* Ensure content is above image */
}

/* Optional Gradient Overlay - simplified */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(15, 23, 42, 0.8) 100%);
  z-index: 1;
}

.hero .container {
  z-index: 2;
  text-align: left;
  max-width: 1240px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero-title span {
  color: var(--brand-primary);
}

.hero p {
  font-size: 1.125rem;
  color: #CBD5E1;
  max-width: 600px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* =======================================================================
   SERVICES (Standard Grid)
   ======================================================================= */
/* Small Hero for internal pages */
.hero-small {
  min-height: 50vh;
  /* Reduced height for subpages */
}

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

.service-card {
  background: var(--bg-white);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-img-wrapper {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.05);
}

.service-content {
  padding: 1.5rem;
  flex: 1;
}

.service-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--brand-secondary);
}

.service-content p {
  color: var(--brand-accent);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* =======================================================================
   NEWS / BLOG SECTION (New)
   ======================================================================= */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 220px;
}

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

.news-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
}

.news-title {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--brand-secondary);
  transition: color 0.2s;
}

.news-card:hover .news-title {
  color: var(--brand-primary);
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* =======================================================================
   ARTICLE PAGE TYPOGRAPHY
   ======================================================================= */
.article-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 260px 1rem 4rem;
  /* Increased to ensure title clears header */
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.article-card {
  background-color: var(--bg-light);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.article-meta {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--brand-secondary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.article-featured-image {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
}

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

.article-body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-main);
}

.article-body h2 {
  font-size: 1.75rem;
  color: var(--brand-secondary);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.article-body h3 {
  font-size: 1.5rem;
  color: var(--brand-secondary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #E2E8F0;
  text-align: center;
}

/* =======================================================================
   TEAM & SPECIALISTS SECTION
   ======================================================================= */

.bg-cream {
  background-color: #FDFBF7;
  /* Warm cream background from image */
}

.serif-heading {
  font-family: 'Playfair Display', serif;
  /* Ensure this is imported */
  color: var(--brand-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.team-card {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
}

/* Profile Card Specifics */
.profile-img {
  width: 300px;
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.profile-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C0A062;
  /* Gold/Metallic accent */
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.profile-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--brand-secondary);
  margin-bottom: 1.5rem;
}

.profile-bio {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.8;
  max-width: 90%;
  margin: 0 auto;
}

/* Specialist Card Specifics */
.specialist-card .list-header {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  /* Darker for better contrast */
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.specialist-list {
  text-align: left;
  list-style: disc;
  /* Or custom bullet */
  padding-left: 1.5rem;
  color: var(--text-main);
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {

  /* Stack the Header */
  .navbar .container {
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 0.5rem;
  }

  .brand {
    order: 1;
    margin-bottom: 0.5rem;
  }

  .brand img {
    height: 100px;
    /* Increased from 60px as requested ("um pouco maior") */
  }

  .nav-links {
    order: 2;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 0;
    width: 100%;
  }

  .nav-link {
    font-size: 0.95rem;
    /* Slightly clearer text */
  }

  /* Fix Button Overflow */
  .header-actions {
    order: 3;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .header-actions .btn,
  .header-actions .btn-velogi-nav {
    width: 90%;
    /* prevent overflow */
    max-width: 300px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    text-align: center;
  }

  /* Hero Adjustments */
  .hero {
    /* Huge padding to clear the stacked header (Logo 100 + Nav + Btn + Gaps ~ 300px+) */
    padding-top: 340px;
    text-align: center;
    align-items: center;
    /* Center vertically in the remaining space */
    height: auto;
    min-height: 120vh;
    /* Allow it to grow to fit content + header */
  }

  .hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 2.2rem;
    /* Smaller for mobile */
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero div[style*="display: flex"] {
    flex-direction: column;
    /* Stack buttons */
    gap: 1rem;
    width: 100%;
    align-items: center;
  }

  .hero .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Grid Stacking */
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-cta-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-info-item {
    justify-content: center;
  }
}

.specialist-item {
  margin-bottom: 1.5rem;
}

.specialist-item strong {
  display: block;
  color: var(--brand-secondary);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.specialist-item p {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.5;
}

.specialist-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 3rem;
  font-style: italic;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Layer 1: Orange CTA Strip */
.footer-cta-strip {
  background-color: var(--brand-primary);
  color: white;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

/* Geometric decoration (Harpia Style) */
.footer-cta-strip::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 200px;
  background: rgba(0, 0, 0, 0.1);
  transform: skewX(-20deg);
}

.footer-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.footer-cta-text h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.footer-cta-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* Layer 2: Main Navy Footer */
.footer-main {
  background-color: var(--brand-secondary);
  color: white;
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand img {
  height: 130px;
  /* filter: brightness(0) invert(1); REMOVED: User wants original colors */
  margin-bottom: 2rem;
}

/* Reduced gaps for tighter, more professional look */
.footer-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  /* Tighter gap */
  margin-bottom: 0.5rem;
  /* Much less vertical space between items */
  color: #CBD5E1;
  font-size: 0.95rem;
  /* Reset to slightly smaller for elegance */
  font-weight: 300;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
}

.footer-info-item:hover {
  color: white;
  transform: translateX(3px);
}

.footer-info-item span:first-child {
  font-size: 1.2rem;
  min-width: 24px;
  text-align: center;
  color: var(--brand-primary);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--brand-primary);
  transform: translateY(-3px);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-secondary);
  padding-right: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  /* Clickable */
}

.faq-icon {
  width: 24px;
  height: 24px;
  background-color: #F1F5F9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Rotate icon when active */
.faq-card.active .faq-icon {
  transform: rotate(180deg);
  background-color: var(--brand-primary);
  color: white;
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  max-height: 0;
  /* Hidden by default */
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}

/* Show answer when active */
.faq-card.active .faq-answer {
  max-height: 200px;
  /* Arbitrary large height */
  margin-top: 1rem;
}

/* Layer 3: Copyright */
.footer-bottom {
  background-color: #020617;
  /* Even darker navy */
  padding: 1.5rem 0;
  text-align: center;
  color: #64748B;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-cta-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =======================================================================
   FORMS & INPUTS
   ======================================================================= */

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
  background: #F8FAFC;
  margin-bottom: 1rem;
  font-family: var(--font-main);
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: white;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #F1F5F9;
  color: var(--text-main);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 99px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* =======================================================================
   TESTIMONIALS (Carousel)
   ======================================================================= */
.carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 3rem;
  /* Space for arrows */
}

.carousel-track-container {
  overflow: hidden;
  height: auto;
}

.carousel-track {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  padding: 1rem;
}

.testimonial-card {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: left;
  /* User requested "canto esquerdo" styling */
  border: 1px solid #E2E8F0;
  position: relative;
}

.quote-icon {
  margin-bottom: 1.5rem;
  opacity: 0.8;
  /* Make it more visible */
  color: var(--brand-primary);
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-family: var(--font-main);
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-top: 1px solid #E2E8F0;
  padding-top: 1.5rem;
}

.client-avatar {
  width: 50px;
  height: 50px;
  background: var(--bg-light);
  color: var(--brand-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  border: 2px solid var(--brand-primary);
}

.client-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 0.2rem;
  text-align: left;
}

.client-role {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: left;
}

/* Controls */
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #E2E8F0;
  color: var(--brand-secondary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-button:hover {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}

.carousel-button--left {
  left: -1rem;
}

.carousel-button--right {
  right: -1rem;
}

/* Dots */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel-indicator {
  border: 0;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background: #E2E8F0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-indicator.current-slide {
  background: var(--brand-secondary);
  transform: scale(1.2);
}

@media (max-width: 600px) {
  .testimonial-text {
    font-size: 1.1rem;
  }

  .carousel-button {
    width: 40px;
    height: 40px;
  }

  .carousel-container {
    padding: 0;
  }

  .carousel-button--left {
    left: 0;
  }

  .carousel-button--right {
    right: 0;
  }
}

/* =======================================================================
   WHY CHOOSE US SECTION
   ======================================================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
}

/* Stylish Number Bullet */
.feature-number {
  min-width: 48px;
  height: 48px;
  background: white;
  border: 2px solid #E2E8F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brand-primary);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  /* Prevent squishing */
  font-family: var(--font-header);
}

.feature-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Right Card */
.why-card {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #E2E8F0;
}

.badges-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.badge {
  padding: 0.5rem 1rem;
  border: 1px solid #CBD5E1;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-main);
  background: white;
  transition: all 0.3s ease;
}

.badge:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: 0;
  width: 2px;
  background: #E2E8F0;
  z-index: 0;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.timeline-dot {
  min-width: 14px;
  height: 14px;
  background: var(--brand-primary);
  border-radius: 50%;
  margin-top: 5px;
  box-shadow: 0 0 0 4px #FFEDD5;
  /* Soft orange ring */
}

.timeline-content h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 0.25rem;
}

.timeline-date {
  font-size: 0.8rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-card {
    padding: 2rem;
  }
}

.carousel-button--right {
  right: 0;
}
}

/* =======================================================================
   CONTACT FORM SECTION
   ======================================================================= */
.contact-section {
  background-color: var(--bg-light);
  position: relative;
}

/* Orange CTA Banner */
.cta-banner {
  background: linear-gradient(90deg, #F05023 0%, #EA580C 100%);
  padding: 3rem;
  color: white;
  margin-bottom: 4rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 25px -5px rgba(240, 80, 35, 0.3);
}

.cta-banner-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.cta-banner-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  color: white;
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  transition: background 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  color: white;
}

/* Form Styles */
.form-card {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid #E2E8F0;
  width: 100%;
}

.form-title-block {
  margin-bottom: 2rem;
  border-bottom: 1px solid #E2E8F0;
  padding-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-secondary);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text-main);
  background-color: #F8FAFC;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(240, 80, 35, 0.1);
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  background-color: #D97706;
  /* Bronze/Gold */
  color: white;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  /* Pill */
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 1rem;
  border: 2px solid #D97706;
}

.form-submit-btn:hover {
  background-color: white;
  color: #D97706;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
  .cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }

  .cta-banner-content {
    padding-left: 0 !important;
  }

  .cta-banner div:last-child {
    padding-right: 0 !important;
  }

  .col-lg-4,
  .col-lg-8 {
    width: 100%;
    flex: 0 0 100%;
  }
}

/* =======================================================================
   VIDEO SECTION
   ======================================================================= */
.video-section {
  background-color: #F8FAFC;
  overflow: hidden;
  position: relative;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.video-text-content .eyebrow {
  color: var(--brand-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

.video-text-content h2 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--brand-secondary);
}

.video-text-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: black;
  aspect-ratio: 16 / 9;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Decoration lines behind video (Enforce Small Size) */
.video-decoration {
  position: relative;
  width: 100%;
  max-width: 600px !important;
  /* Force small size */
  margin: 0 auto;
  /* Center in the grid cell */
}

.video-decoration::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  z-index: 0;
}

.video-decoration::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100%;
  height: 100%;
  border: 1px solid #F1F5F9;
  border-radius: var(--radius-lg);
  z-index: -1;
}

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

@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .video-decoration {
    max-width: 100%;
    /* Allow full width on mobile */
  }

  .video-decoration::before,
  .video-decoration::after {
    display: none;
  }
}
/* =======================================================================
   VELOGI APP SECTION (LogTech Premium)
   ======================================================================= */
.velogi-section {
  background-color: var(--velogi-dark);
  color: white;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.velogi-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(29, 158, 117, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.velogi-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.velogi-tag {
  color: var(--velogi-green);
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  display: block;
}

.velogi-title {
  color: white;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.velogi-title span {
  color: var(--velogi-green);
}

.velogi-description {
  font-size: 1.2rem;
  color: #94A3B8;
  margin-bottom: 3rem;
  max-width: 500px;
}

.velogi-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.pillar-item {
  display: flex;
  gap: 1rem;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--velogi-green);
}

.pillar-text h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.pillar-text p {
  color: #64748B;
  font-size: 0.85rem;
  line-height: 1.4;
}

.btn-velogi {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--velogi-blue);
  color: white;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-velogi:hover {
  background-color: #144e8a;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(24, 95, 165, 0.3);
}

.btn-velogi-nav {
  background-color: var(--velogi-blue);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.btn-velogi-nav:hover {
  background-color: #144e8a;
}

.velogi-mockup {
  position: relative;
}

.mockup-wrapper {
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.mockup-img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

@media (max-width: 992px) {
  .velogi-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .velogi-description {
    margin-left: auto;
    margin-right: auto;
  }

  .pillar-item {
    text-align: left;
  }

  .velogi-mockup {
    order: -1;
  }
}
