/* ==========================================================================
   GREEN MOUNTAIN COSTA RICA DMC - STYLESHEET
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- Design Tokens --- */
:root {
  /* Colors */
  --primary: #0F4761;          /* Eco-Luxury Deep Blue/Teal */
  --primary-rgb: 15, 71, 97;
  --secondary: #7E9C40;        /* Leaf Green */
  --secondary-rgb: 126, 156, 64;
  --accent: #F2730A;           /* Costa Rican Sunset Orange */
  --accent-rgb: 242, 115, 10;
  
  --dark: #272727;             /* Charcoal Slate */
  --dark-rgb: 39, 39, 39;
  --light: #F8FAFC;            /* Clean light backdrop */
  --light-rgb: 248, 250, 252;
  --white: #FFFFFF;
  --white-rgb: 255, 255, 255;
  
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-500: #64748B;
  --gray-700: #334155;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Borders and Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(15, 71, 97, 0.08);
  --shadow-lg: 0 10px 25px -5px rgba(15, 71, 97, 0.1), 0 8px 10px -6px rgba(15, 71, 97, 0.1);
  --shadow-glow: 0 0 20px rgba(126, 156, 64, 0.25);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Constraints */
  --max-width: 1280px;
  --header-height: 110px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; color: var(--gray-700); }

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

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-full);
  border: 2px solid var(--light);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* ==========================================================================
   LAYOUT & UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

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

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-secondary { color: var(--secondary); }

.badge {
  display: inline-block;
  padding: 0.35em 0.85em;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.badge-primary {
  background-color: rgba(15, 71, 97, 0.1);
  color: var(--primary);
}

.badge-secondary {
  background-color: rgba(126, 156, 64, 0.1);
  color: var(--secondary);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

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

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
}

.btn-primary:hover::after {
  transform: translateX(100%);
  transition: 0.6s ease;
}

.btn-primary:hover {
  background-color: #0c384c;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background-color: #6a8335;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

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

/* ==========================================================================
   SHARED COMPONENTS (HEADER & FOOTER)
   ========================================================================== */

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.header.scrolled {
  height: 80px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.header.scrolled .logo-img {
  height: 64px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--primary);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}

.logo-text span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--secondary);
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-700);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

/* --- Footer --- */
.footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo-desc {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo-desc p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-logo .logo-text span {
  color: var(--secondary);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
  color: var(--white);
}

.footer-title {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-link:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a:hover {
  color: var(--white);
}

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

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ==========================================================================
   PAGE HEROES (CLEAN STYLES, NO BACKDROP IMAGE)
   ========================================================================== */
.page-hero {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 4rem;
  background: linear-gradient(135deg, rgba(15, 71, 97, 0.03) 0%, rgba(126, 156, 64, 0.03) 100%);
  border-bottom: 1px solid var(--gray-100);
}

.page-hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero-desc {
  max-width: 600px;
  font-size: 1.15rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* ==========================================================================
   CAROUSEL SYSTEM (2-COLUMN LAYOUT)
   ========================================================================== */
.carousel-section {
  padding-top: calc(var(--header-height) + 3rem);
}

.carousel-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.carousel-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.carousel-info h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--primary) 30%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.carousel-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 2rem;
}

.carousel-info-actions {
  display: flex;
  gap: 1rem;
}

.carousel-container {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: flex-end;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

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

.carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem 2rem 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  color: var(--white);
  z-index: 3;
}

.carousel-slide-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.carousel-slide-caption {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.carousel-btn-prev { left: 1rem; }
.carousel-btn-next { right: 1rem; }

.carousel-indicators {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background-color: var(--white);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   CERTIFICATIONS & TOURISM TRADE PRESENCE
   ========================================================================== */
.trust-section {
  background: linear-gradient(180deg, var(--white) 0%, rgba(248, 250, 252, 0.75) 100%);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 3rem;
  align-items: stretch;
}

.trust-content h2 {
  max-width: 760px;
  margin-bottom: 1rem;
}

.trust-intro {
  max-width: 840px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 0;
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.certification-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--secondary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: var(--transition);
}

.certification-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(126, 156, 64, 0.35);
}

.certification-logo-link {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 71, 97, 0.08);
  background-color: var(--light);
}

.certification-logo {
  width: auto;
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
}


.certification-card-cst .certification-logo-link {
  background-color: var(--primary);
}

.certification-card-cst .certification-logo {
  max-height: 84px;
}

.certification-logo-cst {
  max-height: 86px;
}

.certification-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.certification-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.1rem;
  flex-grow: 1;
}

.certification-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

.certification-link:hover {
  color: var(--secondary);
}

.trade-fairs-panel {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.trade-fairs-panel h3 {
  color: var(--white);
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.trade-fairs-panel p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.fair-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fair-link {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.fair-link:hover {
  transform: translateX(4px);
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(126, 156, 64, 0.65);
}

.fair-link span {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

.fair-link small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.4;
}
/* ==========================================================================
   VALUES & WHY CHOOSE US
   ========================================================================== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.why-us-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--secondary);
  transition: var(--transition);
}

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.why-us-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(15, 71, 97, 0.08) 0%, rgba(126, 156, 64, 0.08) 100%);
  border: 1px solid rgba(126, 156, 64, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.why-us-card:hover .why-us-card-icon {
  background: linear-gradient(135deg, rgba(126, 156, 64, 0.15) 0%, rgba(15, 71, 97, 0.15) 100%);
  border-color: rgba(126, 156, 64, 0.3);
  transform: scale(1.08) rotate(5deg);
}

.why-us-card-icon svg {
  width: 32px;
  height: 32px;
  transition: var(--transition);
}

.why-us-card-icon .icon-primary {
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-us-card-icon .icon-secondary {
  stroke: var(--secondary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-us-card-icon .icon-accent {
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-us-card-icon .icon-filled {
  fill: currentColor;
}

.why-us-card-icon .icon-primary-filled {
  fill: var(--primary);
  opacity: 0.15;
}

.why-us-card-icon .icon-secondary-filled {
  fill: var(--secondary);
  opacity: 0.20;
}

.why-us-card-icon .icon-accent-filled {
  fill: var(--accent);
  opacity: 0.20;
}

.why-us-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.why-us-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- Misión, Visión, Valores --- */
.mvv-section {
  background: linear-gradient(135deg, rgba(15, 71, 97, 0.05) 0%, rgba(126, 156, 64, 0.05) 100%);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.mv-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 15px;
  font-size: 10rem;
  font-family: var(--font-heading);
  color: rgba(15, 71, 97, 0.03);
  font-weight: 800;
  line-height: 1;
}

.mv-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.mv-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
}

.mv-card-mision h3::after { background-color: var(--secondary); }
.mv-card-vision h3::after { background-color: var(--primary); }

.mv-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 0;
  font-style: italic;
}

.values-title {
  text-align: center;
  margin-bottom: 3rem;
}

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

.value-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

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

.value-card-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(126, 156, 64, 0.08);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.25rem;
}

.value-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ==========================================================================
   SERVICES PAGE (CARDS + LIGHTBOX INTEGRATION)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

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

.service-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

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

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

.service-zoom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 71, 97, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  transition: var(--transition);
}

.service-img-wrapper:hover .service-zoom-overlay {
  opacity: 1;
}

.service-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-content p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.service-more-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.service-more-btn:hover {
  color: var(--secondary);
}

.service-more-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.service-more-btn:hover svg {
  transform: translateX(3px);
}

/* ==========================================================================
   DYNAMIC GALLERY (CATEGORIES, LAZY LOADING, LOAD MORE)
   ========================================================================== */
.gallery-filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 0.65rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  background-color: var(--light);
  color: var(--gray-700);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.filter-btn:hover {
  background-color: var(--gray-200);
  color: var(--primary);
}

.filter-btn.active {
  background-color: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  box-shadow: var(--shadow-glow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 240px;
  cursor: pointer;
  animation: fadeIn 0.5s ease forwards;
}

.gallery-item-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 71, 97, 0.8) 0%, rgba(15, 71, 97, 0.2) 70%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
  z-index: 2;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.gallery-item-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
}

.gallery-item-video-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 3;
}

.gallery-item-video-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.load-more-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

/* ==========================================================================
   PLANNER & CUSTOM CONTACT FORMS
   ========================================================================== */
.planner-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: start;
}

.planner-form-container {
  background-color: var(--white);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.form-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group-full {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  font-size: 0.95rem;
  color: var(--dark);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 10px rgba(126, 156, 64, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
}

.checkbox-input {
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  cursor: pointer;
  margin-top: 3px;
  flex-shrink: 0;
}

.checkbox-label {
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.4;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary);
  font-weight: 600;
}

.checkbox-label a:hover {
  color: var(--secondary);
}

.form-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-card {
  background-color: var(--light);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-card-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.sidebar-card-item-title {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.sidebar-card-item svg {
  width: 24px;
  height: 24px;
  fill: var(--secondary);
  flex-shrink: 0;
}

.sidebar-card-item a:hover {
  color: var(--secondary);
}

/* ==========================================================================
   CONTACT SECTION (DETAILED WITH ICONS AND NO FORMS)
   ========================================================================== */
.contact-section-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-details-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card-box {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.contact-card-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(126, 156, 64, 0.4);
}

.contact-icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: rgba(15, 71, 97, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1.5rem;
}

.contact-card-box:hover .contact-icon-wrapper {
  background-color: var(--secondary);
  color: var(--white);
}

.contact-card-box h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.contact-card-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-card-box a:hover {
  color: var(--secondary);
}

/* ==========================================================================
   PRIVACY POLICY PAGE (META INTEGRATION FORMAT)
   ========================================================================== */
.privacy-content-box {
  background-color: var(--white);
  padding: 4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  max-width: 900px;
  margin: 0 auto;
}

.privacy-content-box h2 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
}

.privacy-content-box p, .privacy-content-box li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.privacy-content-box ul {
  list-style-type: disc;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.privacy-content-box li {
  margin-bottom: 0.5rem;
}

.privacy-content-box p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   MODAL / LIGHTBOX SYSTEM
   ========================================================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 71, 97, 0.4);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--white);
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  transform: translateY(30px);
  transition: var(--transition);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.modal-close:hover {
  background-color: var(--primary);
  color: var(--white);
}

.modal-img-wrapper {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

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

.modal-body {
  padding: 2.5rem;
}

.modal-body h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.modal-body p {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* --- Lightbox for Gallery (Imágenes & Videos) --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 15, 20, 0.95);
  backdrop-filter: blur(5px);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 3010;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--secondary);
  transform: rotate(90deg);
}

.lightbox-content-container {
  width: 90%;
  max-width: 1000px;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.lightbox-media {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
  z-index: 3010;
  transition: var(--transition);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  color: var(--secondary);
  background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-prev { left: -100px; }
.lightbox-next { right: -100px; }

.lightbox-caption-container {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--white);
}

.lightbox-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

.lightbox-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* --- Width: 1200px --- */
@media (max-width: 1200px) {
  :root {
    --header-height: 95px;
  }
  .logo-img {
    height: 75px;
  }
  .logo-text {
    font-size: 1.3rem;
  }
  .nav {
    gap: 1.1rem;
  }
  .nav-link {
    font-size: 0.9rem;
  }
}

/* --- Width: 1024px --- */
@media (max-width: 1024px) {
  :root {
    --header-height: 90px;
  }
  .logo-img {
    height: 70px;
  }
  .logo-text {
    font-size: 1.2rem;
  }
  .logo-text span {
    font-size: 0.75rem;
  }
  .nav {
    gap: 0.95rem;
  }
  .nav-link {
    font-size: 0.85rem;
  }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  
  .carousel-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .carousel-info h1 {
    font-size: 3rem;
  }
  
  .carousel-container {
    height: 400px;
  }
  
  .why-us-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .planner-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-section-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* --- Width: 768px --- */
@media (max-width: 768px) {
  .header {
    height: 80px;
  }
  
  .logo-img {
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.25rem;
  }
  
  .logo-text span {
    font-size: 0.7rem;
  }
  
  .nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition-slow);
    z-index: 999;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  }
  
  .nav.active {
    left: 0;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  /* Toggle Active State */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
  }
  
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .planner-form-container {
    padding: 2rem;
  }
  
  .form-group-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .privacy-content-box {
    padding: 2rem;
  }
  
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 2rem;
  }
  
  .lightbox-prev { left: -10px; }
  .lightbox-next { right: -10px; }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

/* --- Width: 480px --- */
@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  
  .container {
    padding: 0 1rem;
  }
  
  .carousel-info h1 {
    font-size: 2.3rem;
  }
  
  .carousel-container {
    height: 300px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    height: 280px;
  }
}

/* ==========================================================================
   BILINGUAL SWITCHER STYLING
   ========================================================================== */
.lang-switch-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.5rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-500);
  background-color: var(--gray-100);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
}

.lang-btn {
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray-500);
}

.lang-btn:hover {
  color: var(--primary);
}

.lang-btn.active {
  color: var(--primary);
  font-weight: 800;
}

/* ==========================================================================
   ABOUT PAGE STYLING
   ========================================================================== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

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

.about-intro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-intro-img-wrapper:hover .about-intro-img {
  transform: scale(1.03);
}

/* ==========================================================================
   CONTACT PAGE STYLING
   ========================================================================== */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.contact-page-info {
  background-color: var(--white);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.contact-map-card {
  background-color: var(--light);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  height: 100%;
}

.contact-map-placeholder {
  width: 100%;
  height: 250px;
  background-color: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
  border: 1px dashed var(--gray-300);
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .lang-switch-container {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-page-info {
    padding: 2rem;
  }
}

/* ==========================================================================
   ABOUT US PAGE LAYOUTS (MISSION, VISION, VALUES)
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.about-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.about-card-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.about-card-icon svg {
  display: block;
}

.about-card-title {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

.about-card-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background-color: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-150);
  transition: var(--transition);
  position: relative;
  border-top: 4px solid var(--secondary);
}

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

.value-card-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(126, 156, 64, 0.12);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


@media (max-width: 1024px) {
  .trust-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .trade-fairs-panel {
    max-width: none;
  }
}

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

  .trade-fairs-panel {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .trust-intro {
    font-size: 0.98rem;
  }

  .certification-logo-link {
    min-height: 96px;
  }

  .certification-logo {
    max-height: 68px;
  }
}