/* 
========================================================================
   BG CARIBE - PREMIUM SYSTEM STYLESHEET
   Razón Social: BG Transportadora del Caribe S.A. de C.V.
   RNT: 0423005C28259
========================================================================
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- Design Tokens --- */
:root {
  /* Color Palette */
  --bg-primary: #FCFBF9;       /* Soft warm white */
  --bg-secondary: #F5F0EA;     /* Warm sand/beige */
  --color-primary: #0D5C63;     /* Ocean deep teal */
  --color-primary-light: #12828C;
  --color-secondary: #78C0A8;   /* Mint green */
  --color-accent: #D1AC70;      /* Sand gold */
  --color-accent-hover: #BFA063;
  --color-accent-light: #FBF7F0;
  --text-main: #1E252B;         /* Slate dark */
  --text-muted: #5C6770;        /* Slate medium */
  --white: #FFFFFF;
  --black: #000000;
  
  /* Nickelodeon Colors (Elevated) */
  --nick-orange: #F37021;
  --nick-orange-light: #FF8F4D;
  
  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Elevation & Glassmorphism */
  --shadow-sm: 0 4px 6px rgba(13, 92, 99, 0.04);
  --shadow-md: 0 12px 24px rgba(13, 92, 99, 0.06);
  --shadow-lg: 0 24px 48px rgba(13, 92, 99, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px rgba(13, 92, 99, 0.05);
  
  /* Layout */
  --container-width: 1200px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
}

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

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

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

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* --- Reusable Components & Typography --- */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--color-primary);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 18px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .section-desc {
    font-size: 1rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  cursor: pointer;
  gap: 10px;
}

.btn-nav-mobile {
  display: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13, 92, 99, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 92, 99, 0.3);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(209, 172, 112, 0.25);
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(209, 172, 112, 0.35);
}

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

.btn-secondary:hover {
  background-color: rgba(13, 92, 99, 0.05);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background-color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-facebook {
  background-color: #1877F2;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.2);
}

.btn-facebook:hover {
  background-color: #166FE5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.3);
}

.header-social-link {
  font-size: 1.4rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: var(--transition-smooth);
}

.header-social-link:hover {
  color: #1877F2;
  transform: scale(1.1);
}

/* Glassmorphism Badge */
.glass-badge {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

/* ========================================================================
   1. NAVIGATION HEADER
   ======================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(252, 251, 249, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  background: rgba(252, 251, 249, 0.95);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition-smooth);
}

.main-header.scrolled .nav-container {
  height: 70px;
}

.logo-link {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  font-weight: 600;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-item a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 8px 0;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-smooth);
}

.nav-item a:hover {
  color: var(--color-primary);
}

.nav-item a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rnt-indicator {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.rnt-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.rnt-number {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
}

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

.mobile-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    box-shadow: -10px 0 30px rgba(13, 92, 99, 0.1);
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu .nav-item {
    width: 100%;
  }
  
  .nav-menu .nav-item a {
    font-size: 1.1rem;
    display: block;
    width: 100%;
    padding: 12px 0;
  }
  
  .rnt-indicator {
    display: none; /* Hide on mobile navbar action area, show in mobile menu */
  }

  .logo-main {
    font-size: 1.4rem;
  }

  .logo-sub {
    font-size: 0.55rem;
  }

  .nav-actions {
    gap: 12px;
  }

  #btnCotizarNav {
    display: none;
  }

  .btn-nav-mobile {
    display: inline-flex !important;
    width: 100% !important;
    margin-top: 20px;
  }

  .header-social-link {
    margin-right: 5px;
  }
}

/* ========================================================================
   2. HERO SECTION
   ======================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  background-color: var(--color-primary);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(1.1) brightness(0.85);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 92, 99, 0.3) 0%, rgba(13, 92, 99, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 800px;
  padding: 40px 0;
}

.hero-badge {
  margin-bottom: 24px;
}

.hero-badge .glass-badge {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-title span {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-secondary);
  margin-bottom: 12px;
  text-shadow: none;
  font-weight: 600;
}

.hero-desc {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

/* Quick Search Widget */
.hero-widget {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: flex-end;
  color: var(--text-main);
  max-width: 1000px;
  margin-top: 20px;
}

.widget-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.widget-group label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

.widget-input-wrapper {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(13, 92, 99, 0.15);
  border-radius: var(--border-radius-sm);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget-input-wrapper i {
  color: var(--color-primary);
  font-size: 0.9rem;
}

.widget-input-wrapper select,
.widget-input-wrapper input {
  width: 100%;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  background: transparent;
  cursor: pointer;
}

.hero-widget .btn {
  height: 46px;
  padding: 0 24px;
}

@media (max-width: 992px) {
  .hero {
    padding-top: 120px;
    min-height: auto;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-widget {
    grid-template-columns: 1fr 1fr;
  }
  .widget-btn-col {
    grid-column: span 2;
  }
  .widget-btn-col .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

/* ========================================================================
   3. SPECIALISTS & TRUST SECTION
   ======================================================================== */
.specialists {
  background-color: var(--white);
}

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

.specialists-images {
  position: relative;
}

.main-img-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.main-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.specialists-images:hover .main-img-wrapper img {
  transform: scale(1.03);
}

.floating-badge-agent {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
  border: 1px solid rgba(209, 172, 112, 0.2);
}

.agent-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(120, 192, 168, 0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.agent-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
}

.agent-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.deco-box {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  border: 4px solid var(--color-accent-light);
  border-radius: var(--border-radius-lg);
  z-index: 1;
}

.specialists-info {
  display: flex;
  flex-direction: column;
}

.specialists-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-sm);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon {
  background-color: var(--color-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.feature-item h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(13, 92, 99, 0.08);
}

.trust-badge-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-primary);
  padding: 10px 18px;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  border: 1px solid rgba(13, 92, 99, 0.04);
}

.trust-badge-card i {
  color: var(--color-accent);
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .specialists-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .main-img-wrapper img {
    height: 380px;
  }
  .floating-badge-agent {
    right: 20px;
    bottom: -10px;
  }
}

/* ========================================================================
   4. DESTINATIONS SECTION
   ======================================================================== */
.destinations {
  background-color: var(--bg-secondary);
}

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

.dest-card {
  position: relative;
  height: 420px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 2;
  transition: var(--transition-smooth);
}

.dest-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.dest-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(13, 92, 99, 0.85) 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition-smooth);
}

.dest-card-info {
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.dest-tag {
  color: var(--color-secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.dest-title {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.dest-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: var(--transition-smooth);
  margin-top: 15px;
}

.dest-price {
  color: var(--white);
  font-size: 0.9rem;
}

.dest-price span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
}

.dest-btn-link {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--white);
  padding-bottom: 2px;
}

/* Card Hover States */
.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.dest-card:hover .dest-card-overlay {
  background: linear-gradient(180deg, rgba(13, 92, 99, 0.2) 20%, rgba(13, 92, 99, 0.92) 100%);
}

.dest-card:hover .dest-card-info {
  transform: translateY(0);
}

.dest-card:hover .dest-meta {
  opacity: 1;
}

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

@media (max-width: 576px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .dest-card {
    height: 360px;
  }
}

/* ========================================================================
   5. SPECIAL XCARET SECTION
   ======================================================================== */
.xcaret-section {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.xcaret-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--bg-secondary);
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}

.xcaret-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.xcaret-gallery {
  position: relative;
  height: 550px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.xcaret-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.xcaret-gallery-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 3;
}

.xcaret-gallery-badge .glass-badge {
  background: rgba(13, 92, 99, 0.85);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
}

.xcaret-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  color: var(--white);
  z-index: 3;
}

.xcaret-gallery-caption h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.xcaret-gallery-caption p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.xcaret-details {
  display: flex;
  flex-direction: column;
}

/* Tabs for Xcaret sub-brands */
.xcaret-tabs {
  display: flex;
  border-bottom: 2px solid rgba(13, 92, 99, 0.08);
  margin-bottom: 30px;
  gap: 20px;
}

.xcaret-tab-btn {
  padding: 12px 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.xcaret-tab-btn.active {
  color: var(--color-primary);
}

.xcaret-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-fast);
}

.xcaret-tab-btn.active::after {
  width: 100%;
}

/* Tab Panels */
.xcaret-tab-content {
  display: none;
}

.xcaret-tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.xcaret-tab-content h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.xcaret-tab-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.xcaret-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

.xcaret-features-list li {
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
}

.xcaret-features-list li i {
  color: var(--color-secondary);
  font-size: 0.95rem;
}

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

@media (max-width: 992px) {
  .xcaret-layout {
    grid-template-columns: 1fr;
  }
  .xcaret-gallery {
    height: 380px;
    order: 2;
  }
}

@media (max-width: 576px) {
  .xcaret-tabs {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(13, 92, 99, 0.08);
  }
  .xcaret-tabs::-webkit-scrollbar {
    display: none;
  }
  .xcaret-tab-btn {
    flex-shrink: 0;
    font-size: 0.85rem;
    padding: 8px 2px;
  }
  .xcaret-features-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ========================================================================
   6. NICKELODEON SECTION
   ======================================================================== */
.nickelodeon-section {
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.nickelodeon-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(243, 112, 33, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.nick-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.nick-info {
  display: flex;
  flex-direction: column;
}

.nick-tag {
  color: var(--nick-orange);
}

.nick-title {
  color: #1A3E5C; /* Elegant Nickelodeon Theme Blue */
}

.nick-btn {
  background-color: var(--nick-orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(243, 112, 33, 0.2);
}

.nick-btn:hover {
  background-color: var(--nick-orange-light);
  box-shadow: 0 6px 20px rgba(243, 112, 33, 0.35);
}

.nick-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 35px;
}

.nick-feature-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--nick-orange);
  transition: var(--transition-smooth);
}

.nick-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.nick-feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1A3E5C;
  margin-bottom: 6px;
}

.nick-feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.nick-visuals {
  position: relative;
}

.nick-img-main {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.nick-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.nick-floating-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(243, 112, 33, 0.15);
}

.nick-badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(243, 112, 33, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nick-orange);
  font-size: 1.1rem;
}

.nick-badge-text h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1A3E5C;
}

.nick-badge-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .nick-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .nick-img-main img {
    height: 350px;
  }
  .nick-floating-badge {
    right: 20px;
    bottom: -15px;
    top: auto;
  }
}

@media (max-width: 576px) {
  .nick-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ========================================================================
   7. BENEFITS SECTION
   ======================================================================== */
.benefits {
  background-color: var(--white);
}

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

.benefit-card {
  background: var(--bg-primary);
  border: 1px solid rgba(13, 92, 99, 0.03);
  padding: 40px 30px;
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: var(--transition-smooth);
}

.benefit-card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--bg-secondary);
  color: var(--color-primary);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Benefit Card Hover States */
.benefit-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-color: rgba(209, 172, 112, 0.2);
}

.benefit-card:hover .benefit-card-icon {
  background-color: var(--color-primary);
  color: var(--white);
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ========================================================================
   8. TESTIMONIALS SECTION
   ======================================================================== */
.testimonials {
  background-color: var(--bg-secondary);
}

.testimonials-carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 30px;
}

.testimonial-slide {
  min-width: calc(100% - 0px);
  box-sizing: border-box;
}

.testimonial-card {
  background: var(--white);
  padding: 50px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
}

.quote-icon-bg {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 5rem;
  color: rgba(13, 92, 99, 0.03);
  font-family: var(--font-serif);
  line-height: 1;
}

.testimonial-stars {
  color: var(--color-accent);
  margin-bottom: 20px;
  font-size: 1rem;
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.author-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

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

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Slider Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(13, 92, 99, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px;
  }
  .testimonial-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    padding: 20px;
  }
  .testimonial-text {
    font-size: 0.95rem;
  }
}

/* ========================================================================
   9. BOOKING FORM SECTION
   ======================================================================== */
.quote-section {
  background-color: var(--white);
  position: relative;
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.quote-info-side {
  display: flex;
  flex-direction: column;
}

.quote-info-side h2 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.quote-info-side p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-primary);
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(13, 92, 99, 0.03);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(13, 92, 99, 0.05);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-card-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.contact-card-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* Actual Form Card */
.quote-form-card {
  background: var(--white);
  border: 1px solid rgba(13, 92, 99, 0.06);
  padding: 48px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

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

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

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input-wrapper {
  position: relative;
}

.form-input-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-input-wrapper input,
.form-input-wrapper select,
.form-input-wrapper textarea {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid rgba(13, 92, 99, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 12px 14px 12px 40px;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.form-input-wrapper textarea {
  padding-left: 14px;
  resize: vertical;
  min-height: 100px;
}

.form-input-wrapper input:focus,
.form-input-wrapper select:focus,
.form-input-wrapper textarea:focus {
  border-color: var(--color-accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(209, 172, 112, 0.15);
}

/* Submit Actions */
.form-actions {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-actions .btn {
  width: 100%;
}

.form-notice {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 15px;
}

@media (max-width: 992px) {
  .quote-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .quote-info-side h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .quote-form-card {
    padding: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-col-full {
    grid-column: span 1;
  }
}

/* ========================================================================
   10. FOOTER
   ======================================================================== */
.main-footer {
  background-color: #111B21; /* Ultra-dark slate teal */
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-logo span {
  color: var(--color-secondary);
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.legal-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
}

.legal-box h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-secondary);
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--color-secondary);
  font-size: 1rem;
  margin-top: 4px;
}

.footer-contact-item strong {
  color: var(--white);
  display: block;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-fast);
}

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

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

.footer-legal-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

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

/* ========================================================================
   11. FLOATING WHATSAPP BUTTON & UTILITIES
   ======================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #20BA5A;
}

@media (max-width: 576px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ========================================================================
   12. TESTIMONIALS MODAL AND CLIENT WALL
   ======================================================================== */
.testimonials-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 92, 99, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeInModal 0.3s ease;
}

.testimonials-modal.active {
  display: flex;
}

.testimonials-modal-content {
  background: var(--bg-primary);
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  border-radius: var(--border-radius-lg);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  padding: 40px;
  position: relative;
  border: 1px solid rgba(209, 172, 112, 0.15);
}

.testimonials-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(13, 92, 99, 0.1);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.testimonials-modal-header h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-primary);
}

.close-modal {
  font-size: 2.2rem;
  cursor: pointer;
  color: var(--text-muted);
  font-weight: 700;
  transition: var(--transition-fast);
  line-height: 1;
}

.close-modal:hover {
  color: var(--color-accent);
}

.testimonials-modal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(13, 92, 99, 0.05);
  padding-bottom: 15px;
}

.filter-tab {
  padding: 8px 16px;
  border-radius: 30px;
  background: var(--bg-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-fast);
  border: 1px solid rgba(13, 92, 99, 0.04);
}

.filter-tab.active, .filter-tab:hover {
  background: var(--color-primary);
  color: var(--white);
  border-color: var(--color-primary);
}

.testimonials-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.modal-card {
  background: var(--white);
  border: 1px solid rgba(13, 92, 99, 0.05);
  padding: 24px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition-smooth);
}

.modal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(209, 172, 112, 0.15);
}

.modal-card-stars {
  color: var(--color-accent);
  font-size: 0.85rem;
}

.modal-card-text {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.5;
  font-style: italic;
}

.modal-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid rgba(13, 92, 99, 0.04);
  padding-top: 12px;
}

.modal-author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.modal-author-info h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
}

.modal-author-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testimonials-action-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

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

@media (max-width: 768px) {
  .testimonials-modal-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-modal-content {
    padding: 24px;
  }
  .testimonials-modal-header h3 {
    font-size: 1.5rem;
  }
}

/* ========================================================================
   11. OFFICES SECTION
   ======================================================================== */
.offices-section {
  background-color: var(--white);
  position: relative;
}

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

.offices-info {
  display: flex;
  flex-direction: column;
}

.offices-card {
  background: var(--bg-secondary);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
  margin-top: 25px;
}

.offices-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.offices-detail-item:last-child {
  margin-bottom: 0;
}

.offices-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(13, 92, 99, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.offices-detail-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.offices-detail-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.offices-visuals {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offices-img-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.offices-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

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

.offices-logo-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(13, 92, 99, 0.08);
  transition: var(--transition-smooth);
}

.offices-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.offices-logo-card img {
  max-height: 90px;
  width: auto;
  object-fit: contain;
}

.offices-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.offices-logo-main {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal-vivid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offices-logo-sub {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
}

.offices-logo-rnt {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 1px;
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(13, 92, 99, 0.12);
}

@media (max-width: 992px) {
  .offices-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .offices-img-wrapper img {
    height: 400px;
  }
}

