/* ============================================
   ORGANIZACIÃ“N LB - Main Stylesheet
   Modern Corporate Design
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* Primary Palette */
  --navy: #1B2A4A;
  --navy-dark: #0F1923;
  --navy-light: #2C4066;
  
  /* Blue Accent Tones */
  --wood: #2563EB;
  --wood-light: #60A5FA;
  --wood-dark: #1D4ED8;
  
  /* Accent */
  --gold: #3B82F6;
  --gold-light: #93C5FD;
  
  /* Neutrals */
  --bg-cream: #F8F6F3;
  --bg-white: #FFFFFF;
  --bg-light: #F0EDE8;
  --text-dark: #1A1A1A;
  --text-body: #4A4A4A;
  --text-muted: #7A7A7A;
  --border-light: #E5E0D8;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.06);
  --shadow-md: 0 4px 20px rgba(27, 42, 74, 0.08);
  --shadow-lg: 0 8px 40px rgba(27, 42, 74, 0.12);
  --shadow-xl: 0 16px 60px rgba(27, 42, 74, 0.16);
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 20px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background-color: var(--bg-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: var(--navy);
  transition: var(--transition-base);
}

a:hover {
  color: var(--wood);
}

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

ul {
  list-style: none;
  padding: 0;
}

/* --- Utility Classes --- */
.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: var(--section-padding);
}

.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-wood { color: var(--wood); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

.d-none { display: none; }

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

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--wood), var(--gold));
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 1.1rem;
}

/* --- Buttons --- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
}

.btn-primary-custom:hover {
  background: var(--navy-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
}

.btn-outline-custom:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-wood {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--wood), var(--wood-dark));
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
}

.btn-wood:hover {
  background: linear-gradient(135deg, var(--wood-dark), var(--wood));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.88rem;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #fff;
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
}

.btn-white:hover {
  background: var(--bg-cream);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-olb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-base);
}

.navbar-olb.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-brand img {
  height: 56px;
  width: auto;
}

.navbar-brand-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
}

.navbar-brand-text span {
  color: var(--wood);
}

.navbar-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-nav-links a {
  padding: 8px 16px;
  color: var(--text-body);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  text-decoration: none;
  position: relative;
}

.navbar-nav-links a:hover,
.navbar-nav-links a.active {
  color: var(--navy);
  background: var(--bg-light);
}

.navbar-nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--wood);
  border-radius: 1px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition-base);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--text-body);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

.nav-dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--navy);
}

/* Mobile Menu */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition-base);
}

@media (max-width: 991px) {
  .navbar-toggle {
    display: flex;
  }
  
  .navbar-nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 4px;
    transform: translateX(100%);
    transition: var(--transition-slow);
    overflow-y: auto;
  }
  
  .navbar-nav-links.open {
    transform: translateX(0);
  }
  
  .navbar-nav-links a {
    padding: 14px 16px;
    font-size: 1rem;
  }
  
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    display: none;
    background: transparent;
  }
  
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(160deg, #0F1923 0%, #1B2A4A 35%, #2C4066 60%, #3A5580 100%);
  overflow: hidden;
  margin-top: 0;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 70%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.18) 0%, rgba(59, 130, 246, 0.12) 40%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-cream), transparent);
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.hero-text h1 span {
  background: linear-gradient(135deg, var(--wood-light), #93C5FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-glow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-glow::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(59, 130, 246, 0.12) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-logo-glow::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 50%;
  pointer-events: none;
  animation: pulse-ring 4s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.hero-image img,
.hero-logo-glow img {
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 0 40px rgba(37, 99, 235, 0.3)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

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

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 40px 24px;
  }
  
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image img {
    max-width: 260px;
  }
}

/* ============================================
   BRANCHES / SUCURSALES
   ============================================ */
.branches-section {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.branch-card {
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.branch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wood), var(--gold));
  transform: scaleX(0);
  transition: var(--transition-base);
}

.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.branch-card:hover::before {
  transform: scaleX(1);
}

.branch-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.branch-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.branch-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.branch-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.branch-card .branch-contact {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.branch-card .branch-contact a {
  color: var(--wood);
  font-weight: 500;
  font-size: 0.9rem;
}

.branch-card .branch-contact a:hover {
  color: var(--wood-dark);
}

@media (max-width: 991px) {
  .branches-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ============================================
   ABOUT / NOSOTROS
   ============================================ */
.about-intro {
  padding: var(--section-padding);
  padding-top: 120px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text .tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--wood-light), var(--gold-light));
  color: var(--wood-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-body);
  line-height: 1.8;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-intro {
    padding-top: 100px;
  }
}

/* Mission & Vision */
.values-section {
  padding: var(--section-padding);
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(37, 99, 235, 0.12) 0%, transparent 60%);
}

.values-section .section-header h2 {
  color: #fff;
}

.values-section .section-header h2::after {
  background: linear-gradient(90deg, var(--wood-light), var(--gold));
}

.values-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.value-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(10px);
  transition: var(--transition-base);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.value-card h3 {
  color: var(--gold-light);
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.value-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* Values List */
.values-list-section {
  padding: var(--section-padding);
}

.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition-base);
}

.value-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--wood-light);
}

.value-item h4 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.value-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 991px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  .values-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .values-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SERVICES
   ============================================ */
.services-hero {
  padding-top: 72px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.02)" width="1" height="1"/></svg>');
  opacity: 0.5;
}

.services-hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.services-hero h1 {
  color: #fff;
  margin-bottom: 20px;
}

.services-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  line-height: 1.8;
}

.services-section {
  padding: var(--section-padding);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border-light);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse > * {
  direction: ltr;
}

.service-number {
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--bg-light);
  line-height: 1;
  margin-bottom: 12px;
}

.service-block h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.service-block p {
  color: var(--text-body);
  line-height: 1.8;
}

.service-block ul {
  margin-top: 16px;
}

.service-block ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-body);
}

.service-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--wood);
  border-radius: 50%;
}

.service-image-placeholder {
  background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
}

.service-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .service-block,
  .service-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 30px;
    padding: 40px 0;
  }
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-section {
  padding: var(--section-padding);
  padding-top: 120px;
}

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
  margin-bottom: 30px;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.product-card-image {
  background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-card-content h3 {
  margin-bottom: 16px;
}

.product-card-content p {
  color: var(--text-body);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .product-card-inner {
    grid-template-columns: 1fr;
  }
  
  .product-card-content {
    padding: 28px;
  }
}

/* ============================================
   EVENTS
   ============================================ */
.events-section {
  padding: var(--section-padding);
  padding-top: 120px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-base);
}

.event-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.event-card-image {
  height: 200px;
  background: var(--bg-light);
  overflow: hidden;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.event-card:hover .event-card-image img {
  transform: scale(1.05);
}

.event-card-body {
  padding: 20px;
}

.event-card-body h5 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.event-card-body a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--wood);
}

.event-card-body a:hover {
  color: var(--wood-dark);
  gap: 10px;
}

.event-featured {
  grid-column: 1 / -1;
}

.event-featured .event-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.event-featured .event-card-image {
  height: 100%;
  min-height: 300px;
}

.event-featured .event-card-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 991px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .event-featured .event-card-inner {
    grid-template-columns: 1fr;
  }
}

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

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  padding: var(--section-padding);
  padding-top: 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form-wrapper {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-cream);
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--wood);
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.15);
  background: var(--bg-white);
}

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

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition-base);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-sm);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.contact-info-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.contact-map {
  margin-top: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: none;
}

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

/* ============================================
   VACANCIES / VACANTES
   ============================================ */
.vacancies-section {
  padding: var(--section-padding);
  padding-top: 120px;
}

.vacancy-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  margin-bottom: 24px;
  transition: var(--transition-base);
}

.vacancy-card:hover {
  box-shadow: var(--shadow-md);
}

.vacancy-card-inner {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 0;
}

.vacancy-content {
  padding: 32px;
}

.vacancy-content .vacancy-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-light);
  color: var(--text-muted);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.vacancy-content h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.vacancy-content .requirements-title {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.vacancy-content ul {
  margin-bottom: 16px;
}

.vacancy-content ul li {
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text-body);
  font-size: 0.93rem;
}

.vacancy-content ul li::before {
  content: 'â€”';
  position: absolute;
  left: 0;
  color: var(--wood);
  font-weight: 700;
}

.vacancy-content .schedule {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 20px;
}

.vacancy-image {
  background: var(--bg-light);
  overflow: hidden;
}

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

@media (max-width: 768px) {
  .vacancy-card-inner {
    grid-template-columns: 1fr;
  }
  
  .vacancy-image {
    height: 200px;
    order: -1;
  }
}

/* ============================================
   THERMAL TREATMENT
   ============================================ */
.thermal-section {
  padding: var(--section-padding);
  padding-top: 120px;
}

.thermal-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 40px 0;
  box-shadow: var(--shadow-lg);
}

.thermal-hero-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.thermal-content {
  max-width: 800px;
  margin: 0 auto;
}

.thermal-content p {
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.thermal-highlight {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 40px 0;
  text-align: center;
}

.thermal-highlight p {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
}

/* ============================================
   PRIVACY POLICY
   ============================================ */
.privacy-section {
  padding: var(--section-padding);
  padding-top: 120px;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.privacy-content h2 {
  margin-bottom: 32px;
}

.privacy-content p {
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.privacy-content ul {
  margin: 16px 0;
  padding-left: 20px;
}

.privacy-content ul li {
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
  font-size: 0.95rem;
}

.privacy-content ul li::before {
  content: 'â€¢';
  position: absolute;
  left: 0;
  color: var(--wood);
  font-weight: bold;
}

.privacy-sign {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-olb {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 300px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--wood-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--wood-light);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

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

/* ============================================
   PAGE HEADER (Internal pages)
   ============================================ */
.page-header {
  padding-top: 72px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(37, 99, 235, 0.12) 0%, transparent 60%);
}

.page-header-content {
  padding: 60px 0 50px;
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
}

.breadcrumb-custom {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-custom a:hover {
  color: var(--wood-light);
}

.breadcrumb-custom span {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-custom .current {
  color: var(--wood-light);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--wood-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--wood);
}