/* ==========================================
   TMS Worldwide Express - V2 Overhauled Design
   Premium Earthy Clay, Burnt Sienna & Warm Gold Theme
   ========================================== */

/* Design System Variables */
:root {
  /* Corporate Navy Blue & Express Crimson Red Theme (Matched to New TMS Logo) */
  --v2-espresso: #0b192c;        /* Deep Navy Boardroom Dark */
  --v2-clay-bg: #f0f4f8;         /* Crisp Light Slate Ice Page Background */
  --v2-clay-light: #ffffff;      /* Pure Crisp White Card Backgrounds */
  --v2-sienna: #0f2c59;          /* Deep Corporate Navy Primary Accent */
  --v2-sienna-hover: #081d3d;    /* Rich Dark Navy Hover */
  --v2-gold: #dc2626;            /* Express Crimson Red Secondary Accent */
  --v2-red-accent: #dc2626;      /* Vibrant Express Red for Swoosh Wing accents */
  --v2-border: #cbd5e1;          /* Crisp Slate Border */
  
  /* Text Colors */
  --v2-text-dark: #0f172a;       /* Deep Slate Navy Charcoal Text */
  --v2-text-muted: #475569;      /* Muted Professional Slate Gray */
  --v2-text-white: #ffffff;

  /* Elevation & Shadows */
  --v2-shadow-sm: 0 2px 8px rgba(15, 44, 89, 0.05);
  --v2-shadow-md: 0 10px 30px rgba(15, 44, 89, 0.08);
  --v2-shadow-lg: 0 20px 45px rgba(15, 44, 89, 0.12);
  --v2-shadow-sienna: 0 8px 24px rgba(15, 44, 89, 0.25);
  
  /* Layout */
  --v2-header-height: 80px;
  --v2-radius: 20px;
  --v2-radius-sm: 10px;
  --v2-transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --v2-transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   Global Reset & Base
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--v2-header-height);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--v2-text-dark);
  background-color: var(--v2-clay-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Containers */
.v2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(220, 38, 38, 0.08);
  color: var(--v2-red-accent);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.v2-badge-dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--v2-gold);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.v2-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--v2-text-dark);
}

.v2-section-desc {
  font-size: 0.95rem;
  color: var(--v2-text-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* ==========================================
   Header Navigation
   ========================================== */
.v2-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(240, 244, 248, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--v2-border);
  transition: var(--v2-transition);
}

.v2-header.scrolled {
  background: var(--v2-clay-light);
  box-shadow: var(--v2-shadow-sm);
}

.v2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--v2-header-height);
}

.v2-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.v2-logo-img {
  height: 56px;
  width: auto;
  border-radius: 10px;
  background: #ffffff;
  padding: 4px 10px;
  border: 1.5px solid var(--v2-border);
  box-shadow: 0 3px 10px rgba(15, 44, 89, 0.06);
  object-fit: contain;
  transition: var(--v2-transition);
}

.v2-footer-logo-img {
  height: 50px;
  width: auto;
  border-radius: 10px;
  background: #ffffff;
  padding: 4px 10px;
  border: 1.5px solid var(--v2-border);
  box-shadow: 0 3px 10px rgba(15, 44, 89, 0.06);
  object-fit: contain;
  margin-bottom: 12px;
}

.v2-logo-brand {
  display: flex;
  align-items: center;
  gap: 5px;
}

.v2-logo-tms {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--v2-text-dark);
  letter-spacing: -1px;
}

.v2-logo-swoosh {
  width: 24px;
  height: 3px;
  background-color: var(--v2-sienna);
  border-radius: 2px;
  margin-top: 2px;
}

.v2-logo-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--v2-sienna);
  letter-spacing: 0.06em;
}

.v2-logo-tag {
  font-size: 0.58rem;
  color: var(--v2-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.v2-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.v2-nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--v2-text-dark);
  position: relative;
  padding: 4px 0;
}

.v2-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--v2-sienna);
  border-radius: 3px;
  transition: var(--v2-transition);
}

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

.v2-nav-link:hover::after,
.v2-nav-link.active::after {
  width: 100%;
}

.v2-nav-cta {
  height: 44px;
  padding: 0 24px;
  background: var(--v2-sienna);
  color: var(--v2-text-white) !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--v2-shadow-sienna);
}

.v2-nav-cta:hover {
  transform: translateY(-2px);
  background-color: var(--v2-sienna-hover);
}

.v2-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--v2-text-dark);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================
   V2 Hero — Horizontal Search Banner Layout
   ========================================== */
.v2-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: calc(var(--v2-header-height) + 40px);
  padding-bottom: 80px;
  background-color: var(--v2-clay-bg);
}

.v2-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.v2-hero-content {
  color: var(--v2-text-dark);
}

.v2-hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--v2-sienna);
  border: 1.5px solid var(--v2-red-accent);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--v2-text-white);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(15, 44, 89, 0.25);
}

.v2-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.v2-hero-rotator {
  display: inline-block;
  color: var(--v2-red-accent);
  font-weight: 800;
  transition: opacity 0.35s ease;
}

.v2-hero-desc {
  font-size: 1.05rem;
  color: var(--v2-text-muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 32px;
}

/* Horizontal Search Dashboard Calculator */
.v2-horizontal-search {
  background: var(--v2-clay-light);
  border: 1.5px solid var(--v2-border);
  border-radius: 50px;
  padding: 10px 14px 10px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: var(--v2-shadow-lg);
  margin-bottom: 32px;
  width: 100%;
}

.v2-search-col {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-right: 1px solid var(--v2-border);
  padding-right: 16px;
}

.v2-search-col:nth-child(1) {
  flex: 0.8;
}

.v2-search-col:nth-child(2) {
  flex: 1.4;
}

.v2-search-col:nth-child(3) {
  flex: 1.3;
  border-right: none;
}

.v2-search-col label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--v2-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.v2-search-col input {
  border: none;
  background: transparent;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--v2-text-dark);
  width: 100%;
  outline: none;
  height: 28px;
  padding: 0;
}

.v2-search-col select {
  border: none;
  background: transparent;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--v2-text-dark);
  width: 100%;
  outline: none;
  height: 28px;
  padding: 0 16px 0 0;
  cursor: pointer;
}

.v2-btn-search {
  height: 48px;
  padding: 0 28px;
  background: var(--v2-sienna);
  color: var(--v2-text-white);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--v2-transition);
}

.v2-btn-search:hover {
  background-color: var(--v2-sienna-hover);
  transform: scale(1.02);
}

/* Tab link switcher on top of horizontal bar */
.v2-hero-tabs-mini {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.v2-tab-mini-btn {
  padding: 6px 16px;
  background: transparent;
  border: 1px solid var(--v2-border);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--v2-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.v2-tab-mini-btn.active {
  background: var(--v2-sienna);
  color: var(--v2-text-white);
  border-color: var(--v2-sienna);
}

/* Static horizontal partner logos deck instead of scrolling marquee */
.v2-partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.v2-partner-badge {
  padding: 6px 14px;
  border: 1px solid var(--v2-border);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--v2-text-muted);
}

/* Hero Right Side Graphic - Flat metrics deck */
.v2-hero-graphic {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.v2-graphic-card {
  background: var(--v2-clay-light);
  border: 1.5px solid var(--v2-border);
  border-radius: var(--v2-radius);
  padding: 24px;
  box-shadow: var(--v2-shadow-md);
  display: flex;
  gap: 16px;
  align-items: center;
  transition: var(--v2-transition);
}

.v2-graphic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--v2-shadow-lg);
  border-color: var(--v2-sienna);
}

.v2-graphic-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 75, 49, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--v2-sienna);
}

.v2-graphic-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--v2-text-dark);
}

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

/* ==========================================
   V2 Services — Hover-Accordion Layout with Deep Shadows
   ========================================== */
.v2-services {
  background: var(--v2-clay-light);
  border-top: 1px solid var(--v2-border);
  border-bottom: 1px solid var(--v2-border);
}

.v2-services-header {
  text-align: center;
  margin-bottom: 40px;
}

.v2-services-header .v2-section-desc {
  margin: 0 auto;
}

.v2-services-accordion {
  display: flex;
  gap: 16px;
  height: 420px;
  width: 100%;
}

.v2-accordion-item {
  background: var(--v2-clay-bg);
  border: 1.5px solid var(--v2-border);
  border-radius: var(--v2-radius);
  padding: 32px 24px;
  transition: var(--v2-transition);
  box-shadow: var(--v2-shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  flex: 1;
  height: 100%;
  cursor: pointer;
}

.v2-accordion-item:hover,
.v2-accordion-item.active {
  flex: 2.8;
  background: var(--v2-clay-light);
  border-color: var(--v2-sienna);
  box-shadow: var(--v2-shadow-lg);
}

/* Collapsed Header / Icon */
.v2-accordion-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  height: 100%;
  flex-shrink: 0;
  width: 52px;
}

.v2-accordion-icon {
  width: 52px;
  height: 52px;
  background: var(--v2-clay-light);
  border: 1.5px solid var(--v2-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--v2-sienna);
  box-shadow: var(--v2-shadow-sm);
  transition: var(--v2-transition);
}

.v2-accordion-item.active .v2-accordion-icon,
.v2-accordion-item:hover .v2-accordion-icon {
  background: var(--v2-sienna);
  color: var(--v2-text-white);
  border-color: var(--v2-sienna);
}

.v2-accordion-title-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--v2-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: opacity 0.25s ease;
  transform: rotate(180deg);
}

.v2-accordion-item.active .v2-accordion-title-vertical {
  opacity: 0;
  pointer-events: none;
}

/* Expanded Content */
.v2-accordion-content {
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  width: 0;
  overflow: hidden;
  height: 100%;
}

.v2-accordion-item.active .v2-accordion-content {
  opacity: 1;
  pointer-events: auto;
  width: 100%;
}

.v2-accordion-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--v2-text-dark);
  margin-bottom: 8px;
}

.v2-accordion-desc {
  font-size: 0.84rem;
  color: var(--v2-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.v2-accordion-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  list-style: none;
}

.v2-accordion-bullets li {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--v2-text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.v2-accordion-bullets li i {
  color: var(--v2-red-accent);
  font-size: 0.75rem;
}

.v2-accordion-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--v2-sienna);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
  width: fit-content;
}

.v2-accordion-link i {
  transition: transform var(--v2-transition-fast);
}

.v2-accordion-link:hover i {
  transform: translateX(4px);
}

/* ==========================================
   V2 About Us Section — Editorial Dual Column Layout
   ========================================== */
.v2-about {
  background: var(--v2-clay-bg);
  position: relative;
}

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

/* Left: 3 Core Pillars List */
.v2-about-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.v2-pillar-item {
  border-bottom: 1px solid var(--v2-border);
  padding-bottom: 20px;
}

.v2-pillar-item:last-child {
  border-bottom: none;
}

.v2-pillar-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.v2-pillar-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--v2-sienna);
  opacity: 0.8;
}

.v2-pillar-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--v2-text-dark);
}

.v2-pillar-desc {
  font-size: 0.85rem;
  color: var(--v2-text-muted);
  line-height: 1.6;
}

/* Right: Founder Quote & Quick Timeline */
.v2-about-quote-panel {
  background: var(--v2-clay-light);
  border: 1.5px solid var(--v2-border);
  border-radius: var(--v2-radius);
  padding: 40px;
  box-shadow: var(--v2-shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.v2-quote-text {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--v2-text-dark);
  font-style: italic;
  position: relative;
}

.v2-quote-text::before {
  content: '“';
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  color: var(--v2-sienna);
  opacity: 0.15;
  position: absolute;
  top: -30px;
  left: -20px;
}

.v2-quote-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.v2-quote-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--v2-text-dark);
}

.v2-quote-title {
  font-size: 0.75rem;
  color: var(--v2-sienna);
  font-weight: 700;
  text-transform: uppercase;
}

.v2-about-milestone-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.v2-milestone-pill {
  padding: 6px 14px;
  background: var(--v2-clay-bg);
  border: 1px solid var(--v2-border);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--v2-text-muted);
}

.v2-milestone-pill strong {
  color: var(--v2-sienna);
}

/* ==========================================
   V2 Contact Section — Minimalist Zen Card
   ========================================== */
.v2-contact {
  background: var(--v2-clay-light);
  border-top: 1px solid var(--v2-border);
}

.v2-contact-zen-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--v2-clay-bg);
  border: 1.5px solid var(--v2-border);
  border-radius: var(--v2-radius);
  padding: 48px;
  box-shadow: var(--v2-shadow-lg);
}

.v2-contact-zen-header {
  text-align: center;
  margin-bottom: 32px;
}

.v2-contact-zen-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--v2-text-dark);
  margin-bottom: 8px;
}

.v2-contact-zen-header p {
  font-size: 0.9rem;
  color: var(--v2-text-muted);
}

/* Top contact grid row */
.v2-contact-row-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  border-bottom: 1.5px solid var(--v2-border);
  padding-bottom: 32px;
}

.v2-contact-link-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.v2-contact-link-box i {
  width: 40px;
  height: 40px;
  background: var(--v2-clay-light);
  border: 1.5px solid var(--v2-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v2-sienna);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--v2-shadow-sm);
}

.v2-contact-link-box h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--v2-text-dark);
  margin-bottom: 4px;
}

.v2-contact-link-box p {
  font-size: 0.78rem;
  color: var(--v2-text-muted);
  line-height: 1.5;
}

.v2-contact-link-box a:hover {
  color: var(--v2-sienna);
}

/* Lead form overrides */
.v2-lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.v2-lead-form label {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--v2-text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.v2-lead-form label .req {
  color: var(--v2-sienna);
}

.v2-lead-form input,
.v2-lead-form select {
  width: 100%;
  height: 38px;
  border: none;
  border-bottom: 2px solid var(--v2-border);
  background: transparent;
  padding: 0 4px;
  font-size: 0.85rem;
  color: var(--v2-text-dark);
  transition: var(--v2-transition-fast);
}

.v2-lead-form input:focus,
.v2-lead-form select:focus {
  outline: none;
  border-bottom-color: var(--v2-sienna);
}

.v2-btn-submit {
  height: 46px;
  background: var(--v2-sienna);
  color: var(--v2-text-white);
  border: none;
  border-radius: var(--v2-radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--v2-transition);
  margin-top: 10px;
  align-self: center;
  padding: 0 48px;
  box-shadow: var(--v2-shadow-sienna);
}

.v2-btn-submit:hover {
  background-color: var(--v2-sienna-hover);
  transform: translateY(-2px);
  box-shadow: var(--v2-shadow-lg);
}

/* ==========================================
   V2 Signature Footer — Premium Boardroom slate
   ========================================== */
.v2-footer {
  background: var(--v2-espresso);
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 30px 0;
  font-size: 0.85rem;
}

.v2-footer-grid-4col {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.85fr 1.3fr;
  gap: 28px;
}

.v2-footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v2-footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #38bdf8;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.v2-footer-bio {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #94a3b8;
}

.v2-footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.v2-social-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--v2-transition);
}

.v2-social-icon-circle.wa:hover { background: #25d366; box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3); }
.v2-social-icon-circle.fb:hover { background: #1877f2; box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3); }
.v2-social-icon-circle.ig:hover { background: #e1306c; box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3); }
.v2-social-icon-circle.li:hover { background: #0077b5; box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3); }

.v2-footer-links-list,
.v2-footer-networks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v2-footer-link {
  color: #cbd5e1;
  transition: var(--v2-transition);
  display: inline-block;
}

.v2-footer-link:hover {
  color: var(--v2-sienna);
  transform: translateX(4px);
}

.v2-footer-networks-list li {
  font-size: 0.82rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.v2-footer-networks-list li i {
  color: var(--v2-red-accent);
  font-size: 0.75rem;
}

.v2-footer-contact-info {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.v2-footer-contact-info i {
  color: var(--v2-sienna);
  margin-top: 4px;
}

.v2-footer-contact-link {
  color: #cbd5e1;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--v2-transition);
}

.v2-footer-contact-link:hover {
  color: var(--v2-sienna);
}

.v2-footer-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 40px 0 24px 0;
}

.v2-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.8rem;
}

.v2-footer-copyright {
  color: #64748b;
}

.v2-scroll-top-pill {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--v2-transition);
}

.v2-scroll-top-pill:hover {
  background: var(--v2-sienna);
  border-color: var(--v2-sienna);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================
   V2 Right-Side Floating Glass Social Bubble Stack
   ========================================== */
.v2-social-float-stack {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.v2-social-float-item {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(250, 248, 246, 0.9); /* Platinum White Glass */
  border: 1.5px solid var(--v2-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--v2-shadow-md);
  transition: var(--v2-transition);
  color: var(--v2-text-dark);
  text-decoration: none;
}

.v2-social-float-item i {
  font-size: 1.15rem;
}

.v2-social-float-item.v2-wa:hover {
  border-color: #25d366;
  color: #25d366;
  transform: scale(1.1) translateX(-4px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.v2-social-float-item.v2-fb:hover {
  border-color: #1877f2;
  color: #1877f2;
  transform: scale(1.1) translateX(-4px);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.25);
}

.v2-social-float-item.v2-ig:hover {
  border-color: #e4405f;
  color: #e4405f;
  transform: scale(1.1) translateX(-4px);
  box-shadow: 0 4px 15px rgba(228, 64, 95, 0.25);
}

body {
  padding-bottom: 0;
}

/* ==========================================
   V2 Success Modal
   ========================================== */
.v2-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(37, 30, 28, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: var(--v2-transition);
}

.v2-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.v2-modal-box {
  background: var(--v2-clay-light);
  border-radius: var(--v2-radius);
  padding: 36px;
  max-width: 460px;
  width: 90%;
  text-align: center;
  transform: scale(0.9);
  transition: var(--v2-transition-slow);
  box-shadow: var(--v2-shadow-lg);
  border: 1px solid var(--v2-border);
}

.v2-modal-overlay.open .v2-modal-box {
  transform: scale(1);
}

.v2-modal-box .success-icon {
  width: 58px;
  height: 58px;
  background: var(--v2-border);
  color: var(--v2-sienna);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 16px;
}

.v2-modal-box h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--v2-text-dark);
}

.v2-modal-box > p {
  color: var(--v2-text-muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.v2-lead-summary {
  background: var(--v2-clay-bg);
  border-radius: var(--v2-radius-sm);
  padding: 12px;
  margin-bottom: 16px;
  text-align: left;
}

.v2-lead-summary .lead-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid var(--v2-border);
  font-size: 0.8rem;
}

.v2-lead-summary .lead-row:last-child {
  border-bottom: none;
}

.v2-lead-summary .lead-label {
  color: var(--v2-text-muted);
}

.v2-lead-summary .lead-val {
  font-weight: 700;
  color: var(--v2-text-dark);
}

.v2-follow-note {
  font-weight: 700;
  color: var(--v2-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.v2-follow-note i {
  color: var(--v2-sienna);
  animation: v2Pulse 1.5s infinite;
}

.v2-btn-close-modal {
  width: 100%;
  height: 42px;
  background: var(--v2-text-dark);
  color: var(--v2-text-white);
  border: none;
  border-radius: var(--v2-radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: var(--v2-transition-fast);
}

.v2-btn-close-modal:hover {
  background-color: var(--v2-sienna);
}

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

@keyframes v2Pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.v2-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.v2-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1025px) {
  .v2-services,
  .v2-about {
    height: 100vh;
    max-height: 100vh;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
  }

  .v2-contact {
    min-height: 100vh;
    height: auto !important;
    max-height: none !important;
    padding: 100px 0 !important; /* Spacious spacing above/below form */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
    box-sizing: border-box;
  }

  .v2-hero {
    height: 100vh;
    max-height: 100vh;
    padding-top: var(--v2-header-height) !important; /* Offset fixed header to balance bottom spacing */
    padding-bottom: 30px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
  }
}

/* ==========================================
   Responsive Viewports
   ========================================== */
@media (max-width: 1024px) {
  .v2-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .v2-hero-content { margin: 0 auto; }
  .v2-hero-features { justify-content: center; }

  .v2-horizontal-search {
    flex-direction: column;
    border-radius: var(--v2-radius);
    padding: 24px;
    gap: 14px;
  }

  .v2-search-col {
    border-right: none;
    padding-right: 0;
    width: 100%;
  }

  .v2-btn-search {
    width: 100%;
    justify-content: center;
  }

  .v2-services-accordion {
    flex-direction: column;
    height: auto;
  }
  
  .v2-accordion-item {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    min-height: 100px;
    padding: 24px;
    gap: 16px;
  }

  .v2-accordion-item:hover,
  .v2-accordion-item.active {
    flex: none;
    height: auto;
  }

  .v2-accordion-title-vertical {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.1rem;
    margin-top: 0;
  }

  .v2-accordion-header {
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: auto;
  }
  
  .v2-accordion-item.active .v2-accordion-title-vertical {
    display: none;
  }

  .v2-about-editorial {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v2-contact-row-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .v2-contact-zen-card {
    padding: 24px;
  }

  .v2-footer-inner-boardroom {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .v2-footer-actions-side {
    align-items: center;
  }

  .v2-footer-links-inline {
    justify-content: center;
    flex-wrap: wrap;
  }

  .v2-services, .v2-about, .v2-contact {
    min-height: auto;
    height: auto !important;
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .v2-mobile-toggle { display: block; }

  .v2-nav {
    position: fixed;
    top: var(--v2-header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--v2-header-height));
    background: var(--v2-clay-light);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--v2-transition);
    box-shadow: 4px 0 20px rgba(0,0,0,0.05);
  }

  .v2-nav.open { left: 0; }

  .v2-nav-link {
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    color: var(--v2-text-dark) !important;
  }

  .v2-nav-cta {
    width: 100%;
    justify-content: center;
  }

  .v2-hero-title { font-size: 2.3rem; }
  
  .v2-social-btn span { display: none; }
  .v2-social-btn { padding: 8px 16px; }
  
  .v2-social-bar {
    width: 90%;
    bottom: 12px;
  }

  .v2-services-accordion {
    flex-direction: column;
  }

  .v2-timeline-horizontal {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* ==========================================
   V2 Content Additions & Animations
   ========================================== */

/* Split Network groups layout */
.v2-networks-wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.v2-network-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.v2-network-group-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--v2-sienna);
  opacity: 0.85;
}

/* Standout styling for Self-Network badge */
.v2-partner-badge.v2-self-net-badge {
  background: var(--v2-sienna);
  color: var(--v2-clay-light);
  border: 1px solid var(--v2-sienna-hover);
  font-weight: 700;
}

/* Social link row inside footer */
.v2-footer-social-row a {
  transition: var(--v2-transition);
}
.v2-footer-social-row a:hover {
  color: var(--v2-clay-light) !important;
  transform: translateY(-2px);
}

/* Clay Hover Zoom micro-animations */
.v2-graphic-card.v2-clickable-card {
  transition: var(--v2-transition);
}
.v2-graphic-card.v2-clickable-card:hover {
  transform: translateY(-5px) scale(1.03);
  background: var(--v2-clay-light);
  border-color: var(--v2-sienna);
  box-shadow: var(--v2-shadow-lg);
}

.v2-partner-badge {
  transition: var(--v2-transition);
}
.v2-partner-badge:hover {
  transform: scale(1.05);
  box-shadow: var(--v2-shadow-sm);
  background-color: var(--v2-clay-light);
}

.v2-social-float-item {
  transition: var(--v2-transition);
}
.v2-social-float-item:hover {
  transform: translateX(-5px) scale(1.1);
}

.v2-social-float-item.v2-li {
  background: #0077b5;
}
.v2-social-float-item.v2-li:hover {
  background: #005582;
}

.v2-accordion-item {
  transition: var(--v2-transition);
}
.v2-accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--v2-shadow-md);
}

.v2-nav-cta, .v2-btn-submit, .v2-btn-search {
  transition: var(--v2-transition);
}
.v2-nav-cta:hover, .v2-btn-submit:hover, .v2-btn-search:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--v2-shadow-sienna);
}

/* Timeline Modal Overlay */
#v2-timeline-modal.v2-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 27, 25, 0.6);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--v2-transition);
}

#v2-timeline-modal.v2-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.v2-timeline-modal-box {
  background: var(--v2-clay-light);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  max-width: 650px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: var(--v2-shadow-lg);
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: var(--v2-transition);
}

#v2-timeline-modal.v2-modal-overlay.open .v2-timeline-modal-box {
  transform: translateY(0) scale(1);
}

.v2-timeline-modal-box h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  color: var(--v2-text-dark);
  margin-bottom: 6px;
}

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

.v2-modal-close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  color: var(--v2-text-muted);
  line-height: 1;
  transition: var(--v2-transition);
}

.v2-modal-close-btn:hover {
  color: var(--v2-sienna);
}

/* Vertical Timeline Flow */
.v2-timeline-flow {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--v2-border);
}

.v2-timeline-item-node {
  display: flex;
  position: relative;
  align-items: flex-start;
  text-align: left;
}

.v2-timeline-marker {
  position: absolute;
  left: -37px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--v2-sienna);
  color: var(--v2-clay-light);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--v2-shadow-sienna);
  border: 2px solid var(--v2-clay-light);
}

.v2-timeline-node-content {
  padding-left: 20px;
}

.v2-timeline-node-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--v2-text-dark);
  margin-bottom: 4px;
}

.v2-timeline-node-content p {
  font-size: 0.85rem;
  color: var(--v2-text-muted);
  line-height: 1.6;
}

/* ==========================================
   V2 Right-Column Networks Card & Social Colors
   ========================================== */

/* Networks box styled as a clay card on the right side */
.v2-networks-card {
  background: var(--v2-clay-light);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--v2-shadow-md);
  text-align: left;
  transition: var(--v2-transition);
}

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

.v2-partner-grid-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.v2-partner-badge-mini {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: var(--v2-clay-bg);
  border: 1px solid var(--v2-border);
  border-radius: 6px;
  color: var(--v2-text-dark);
  font-weight: 500;
  transition: var(--v2-transition);
}

.v2-partner-badge-mini:hover {
  transform: scale(1.05);
  background: var(--v2-sienna);
  color: var(--v2-clay-light);
  border-color: var(--v2-sienna-hover);
}

/* Standout Self-Network mini badge */
.v2-partner-badge-mini.v2-self-net-badge-mini {
  background: var(--v2-sienna);
  color: var(--v2-clay-light);
  border-color: var(--v2-sienna-hover);
  font-weight: 600;
}

/* Constantly colored floating social icons (matching brand values) */
.v2-social-float-item.v2-wa {
  background: #25d366;
  color: #ffffff;
  border-color: #20ba5a;
}
.v2-social-float-item.v2-wa:hover {
  background: #20ba5a;
  color: #ffffff !important;
  transform: scale(1.1) translateX(-4px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.v2-social-float-item.v2-fb {
  background: #1877f2;
  color: #ffffff;
  border-color: #166fe5;
}
.v2-social-float-item.v2-fb:hover {
  background: #166fe5;
  color: #ffffff !important;
  transform: scale(1.1) translateX(-4px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.v2-social-float-item.v2-ig {
  background: #e1306c;
  color: #ffffff;
  border-color: #c12255;
}
.v2-social-float-item.v2-ig:hover {
  background: #c12255;
  color: #ffffff !important;
  transform: scale(1.1) translateX(-4px);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.v2-social-float-item.v2-li {
  background: #0077b5;
  color: #ffffff;
  border-color: #006396;
}
.v2-social-float-item.v2-li:hover {
  background: #006396;
  color: #ffffff !important;
  transform: scale(1.1) translateX(-4px);
  box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}


/* Global Text Justification for Editorial Feel */
.v2-hero-desc,
.v2-accordion-desc,
.v2-pillar-desc,
.v2-quote-text,
.v2-footer-bio,
.v2-section-desc {
  text-align: justify !important;
}

/* ==========================================
   V2 Mobile & Tablet Responsive Overrides
   ========================================== */

/* Tablet & Smaller Devices (1024px) */
@media (max-width: 1024px) {
  /* Collapse empty Hero height spacing to shorten page */
  .v2-hero {
    min-height: auto !important;
    height: auto !important;
    max-height: none !important;
    padding-top: 92px !important;
    padding-bottom: 36px !important;
  }

  /* Center mini-tabs buttons horizontally */
  .v2-hero-tabs-mini {
    justify-content: center !important;
  }

  /* Prevent Search widget horizontal squishing by stacking inputs vertically */
  #v2-hero-search-form,
  #v2-hero-track-form {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
  }

  .v2-search-col {
    border-right: none !important;
    padding-right: 0 !important;
    border-bottom: 1.5px solid var(--v2-border) !important;
    padding-bottom: 10px !important;
    width: 100% !important;
  }

  /* Disable Services Accordion and display as standard side-by-side bento cards */
  .v2-services-accordion {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
    height: auto !important;
  }

  .v2-accordion-item {
    flex-direction: column !important;
    align-items: stretch !important;
    height: auto !important;
    padding: 32px 24px !important;
    background: var(--v2-clay-light) !important;
    border-color: var(--v2-border) !important;
    cursor: default !important;
    flex: none !important;
    box-shadow: var(--v2-shadow-md) !important;
  }

  .v2-accordion-item:hover,
  .v2-accordion-item.active {
    flex: none !important;
    border-color: var(--v2-sienna) !important;
    box-shadow: var(--v2-shadow-lg) !important;
  }

  /* Re-align header to sit horizontally */
  .v2-accordion-header {
    flex-direction: row !important;
    align-items: center !important;
    width: 100% !important;
    height: auto !important;
    gap: 16px !important;
    margin-bottom: 20px !important;
  }

  /* Heading wrap settings to prevent text cutting off */
  .v2-accordion-title-vertical {
    writing-mode: horizontal-tb !important;
    transform: none !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: var(--v2-text-dark) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    display: block !important;
    white-space: normal !important;
    line-height: 1.25 !important;
  }

  /* Expand accordion contents by default */
  .v2-accordion-content {
    opacity: 1 !important;
    pointer-events: auto !important;
    width: 100% !important;
    height: auto !important;
    display: flex !important;
  }

  /* Remove internal duplicate heading */
  .v2-accordion-content h3 {
    display: none !important;
  }

  /* Footer layout */
  .v2-footer-grid-4col {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
  }
}

/* Portrait Mobile & Smaller Devices (768px) */
@media (max-width: 768px) {
  .v2-header-inner {
    height: 68px !important;
  }

  .v2-logo-img {
    height: 48px !important;
    padding: 4px 8px !important;
    border-radius: 8px !important;
  }

  .v2-mobile-toggle {
    font-size: 1.35rem !important;
  }

  .v2-hero {
    padding-top: 86px !important;
  }

  .v2-hero-tagline {
    padding: 7px 18px !important;
    font-size: 0.75rem !important;
    margin-bottom: 16px !important;
  }

  /* Offset container width symmetrically to keep content centered and prevent overlapping */
  .v2-container {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }

  /* Stack services vertically */
  .v2-services-accordion {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Force 1-column layout inside contact form so placeholders do not cut off */
  .v2-lead-form .v2-form-row {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .v2-form-row {
    flex-direction: column !important;
    gap: 16px !important;
    margin-bottom: 16px !important;
  }
  
  /* Keep social float on the right side ONLY (vertical dock) */
  .v2-social-float-stack {
    right: 8px !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    flex-direction: column !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    gap: 8px !important;
  }

  .v2-social-float-item {
    width: 36px !important;
    height: 36px !important;
    box-shadow: var(--v2-shadow-md) !important;
  }

  .v2-social-float-item:hover {
    transform: scale(1.1) translateX(-4px) !important;
  }
}

/* Small Portrait Mobile Devices (576px) */
@media (max-width: 576px) {
  .v2-logo-img {
    height: 44px !important;
    padding: 3px 6px !important;
  }

  .v2-footer-logo-img {
    height: 44px !important;
  }

  .v2-footer-grid-4col {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    text-align: center !important;
  }

  .v2-footer-social-row {
    justify-content: center !important;
  }

  .v2-footer-networks-list li,
  .v2-footer-contact-info {
    justify-content: center !important;
    text-align: center !important;
  }

  .v2-footer-contact-info {
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
  }

  .v2-footer-bottom {
    flex-direction: column !important;
    gap: 16px !important;
    text-align: center !important;
    align-items: center !important;
  }

  .v2-timeline-modal-box {
    padding: 24px 16px !important;
    width: 95% !important;
  }

  .v2-timeline-modal-box h3 {
    font-size: 1.4rem !important;
  }

  .v2-hero-title {
    font-size: 2.1rem !important;
    letter-spacing: -1px !important;
  }

  .v2-section-title {
    font-size: 2rem !important;
  }
}
