/* GENZALES TECHNOLOGY - MASTER DESIGN SYSTEM CSS (VERSION 29) */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* COLORS */
  --bg-dark-hero: #050B14;
  --bg-surface-elevated: #FFFFFF;
  --bg-surface-subtle: #F8FAFC;
  --border-subdued: #E2E8F0;
  --border-focus: #1D5EBF;

  --brand-primary: #1D5EBF;
  --brand-secondary: #0F3875;
  --brand-gradient: linear-gradient(135deg, #1D5EBF 0%, #3E8BFF 100%);
  --brand-pill-bg: #EFF6FF;

  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-tertiary: #94A3B8;
  --text-inverse: #FFFFFF;

  /* TYPOGRAPHY */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* SPACING & LAYOUT */
  --nav-height: 80px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* SHADOWS */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
}

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

html {
  font-family: var(--font-main);
  background-color: #FFFFFF;
  color: var(--text-primary);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.5;
}

/* CUSTOM CURSOR */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: var(--brand-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
}

.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--brand-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease-out;
  opacity: 0.5;
}

/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  background-color: var(--bg-dark-hero);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-brand {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.preloader-counter {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: #3E8BFF;
  margin-bottom: 16px;
}

.preloader-bar-bg {
  width: 200px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--brand-gradient);
  transition: width 0.1s linear;
}

/* CLEAN DIRECT PAGE NAVIGATION */
#page-transition-curtain {
  display: none !important;
}

/* 3D WEBGL CANVAS BACKGROUND */
#orbital-webgl-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* HEADER & NAVIGATION */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subdued);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.03em;
}

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

.genzales-header-logo-img {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid rgba(0, 194, 255, 0.4);
  box-shadow: 0 0 10px rgba(0, 194, 255, 0.25);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.logo:hover .genzales-header-logo-img {
  transform: scale(1.08);
  border-color: #00C2FF;
}

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

.main-nav-links a {
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
}

.main-nav-links a:hover,
.main-nav-links a.active {
  color: var(--brand-primary);
}

.main-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--brand-primary);
  transition: width 0.25s ease;
}

.main-nav-links a:hover::after,
.main-nav-links a.active::after {
  width: 100%;
}

.rno1-menu-trigger {
  background: none;
  border: 1px solid var(--border-subdued);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.rno1-menu-trigger:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

/* FULLSCREEN OVERLAY MENU */
.fullscreen-overlay-menu {
  position: fixed;
  inset: 0;
  background-color: var(--bg-dark-hero);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.fullscreen-overlay-menu.active,
.fullscreen-overlay-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.overlay-header .logo {
  color: #FFFFFF;
}

.overlay-close-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
}

.overlay-close-btn:hover {
  border-color: #3E8BFF;
  color: #3E8BFF;
}

.overlay-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  height: 100%;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

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

.overlay-links a {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.overlay-links a:hover,
.overlay-links a.active {
  color: #FFFFFF;
  transform: translateX(12px);
}

.overlay-link-num {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: #3E8BFF;
}

.overlay-meta-panel {
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 48px;
}

.overlay-meta-panel a {
  color: #FFFFFF !important;
  transition: color 0.2s ease;
}

.overlay-meta-panel a:hover {
  color: #3E8BFF !important;
}

.overlay-meta-panel .caption-mono {
  color: #3E8BFF !important;
}

/* CONTAINER & SECTIONS */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 64px 0;
}

/* TYPOGRAPHY */
.h1-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
}

.h2-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.body-large {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.body-base {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background-color: var(--brand-pill-bg);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(29, 94, 191, 0.15);
}

.eyebrow-tag .dot {
  width: 6px;
  height: 6px;
  background-color: var(--brand-primary);
  border-radius: 50%;
}

.caption-mono {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.btn-primary {
  background: var(--brand-gradient);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(29, 94, 191, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 94, 191, 0.4);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: var(--text-primary);
  border: 1px solid var(--border-subdued);
}

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

/* CARDS & COMPONENT PANELS */
.feature-card {
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--border-subdued);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}

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

.feature-card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background-color: var(--brand-pill-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

/* CONTACT FORM & INGEST PORTAL STYLING */
.rno1-contact-portal {
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--border-subdued);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}

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

.form-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background-color: var(--bg-surface-subtle);
  border: 1px solid var(--border-subdued);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: all 0.25s ease;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brand-primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(29, 94, 191, 0.1);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231D5EBF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

/* FAQ ACCORDIONS */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--border-subdued);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item[open] {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 22px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--brand-primary);
  transition: transform 0.3s ease;
  font-weight: 800;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px 24px;
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* PREMIUM CLIENT WORKS SHOWCASE LAYOUT */
.client-works-showcase {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.client-work-item {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subdued);
  border-left: 5px solid transparent;
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: grid;
  grid-template-columns: 70px 1.4fr 1fr;
  align-items: center;
  gap: 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.client-work-item:hover {
  border-left-color: var(--brand-primary);
  border-color: var(--brand-primary);
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  background-color: #FFFFFF;
}

.client-work-num {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-primary);
}

.client-work-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.client-work-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* TEAM CARDS & MODAL LIGHTBOX */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.team-card {
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--border-subdued);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.team-avatar-sm {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--brand-primary);
  background-color: #F1F5F9;
  box-shadow: 0 4px 14px rgba(29, 94, 191, 0.18);
  flex-shrink: 0;
}

.team-avatar-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

.team-title {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--brand-primary);
  font-weight: 500;
  margin-top: 2px;
}

.team-role-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background-color: var(--brand-pill-bg);
  color: var(--brand-primary);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  width: fit-content;
}

.team-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.view-profile-btn {
  background: none;
  border: none;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-primary);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.view-profile-btn:hover {
  gap: 10px;
}

/* HERO HOMEPAGE STAGE - EXACT 100VH INITIAL VIEWPORT FRAME */
.hero-stage-centered {
  height: 100vh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: calc(var(--nav-height) + 16px) 24px 36px;
  position: relative;
  box-sizing: border-box;
}

.hero-top-pill-container {
  margin-top: 0;
  margin-bottom: 0;
  z-index: 10;
}

.hero-cta-bottom-container {
  margin-top: 0;
  margin-bottom: 0;
  z-index: 10;
}

.btn-hero-dark-pill {
  background-color: #0B2545;
  color: #FFFFFF;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(11, 37, 69, 0.4);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-dark-pill:hover {
  transform: translateY(-3px) scale(1.02);
  background-color: #0F3875;
  box-shadow: 0 12px 32px rgba(11, 37, 69, 0.55);
  color: #FFFFFF;
}

/* MARQUEE TICKER */
.services-marquee {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  background-color: var(--bg-surface-subtle);
  border-top: 1px solid var(--border-subdued);
  border-bottom: 1px solid var(--border-subdued);
  padding: 20px 0;
}

.marquee-track {
  display: inline-flex;
  gap: 32px;
  animation: marquee-scroll 24s linear infinite;
}

.marquee-item {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.marquee-gradient-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-gradient-overlay.left {
  left: 0;
  background: linear-gradient(to right, #FFFFFF, transparent);
}

.marquee-gradient-overlay.right {
  right: 0;
  background: linear-gradient(to left, #FFFFFF, transparent);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTORS WE SERVE SLIDING MARQUEE CAROUSEL */
.sectors-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0 24px;
}

.sectors-slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: sectors-slide 32s linear infinite;
}

.sectors-slider-wrapper:hover .sectors-slider-track {
  animation-play-state: paused;
}

@keyframes sectors-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.sector-slide-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--border-subdued);
  padding: 18px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  min-width: 240px;
}

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

.sector-slide-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.sector-slide-title {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-primary);
}

/* MULTI-COLUMN FOOTER STYLING MATCHING USER DESIGN */
.footer {
  background-color: var(--bg-surface-subtle);
  border-top: 1px solid var(--border-subdued);
  padding: 60px 0 32px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

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

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 20px;
}

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

.footer-links-list a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--brand-primary);
  transform: translateX(4px);
}

.footer-contact-item {
  margin-bottom: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.footer-contact-item strong {
  color: var(--text-primary);
}

.footer-contact-link {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: var(--brand-primary);
  text-decoration: underline;
}

.footer-maps-link {
  color: var(--text-secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  transition: color 0.2s ease;
}

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

.footer-divider {
  border: none;
  border-top: 1px solid var(--border-subdued);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* FLOATING QUICK ACTIONS CONTAINER (PHONE & MESSAGE BUTTONS) */
.floating-actions-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.floating-action-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2B7FFF, #1D5EBF);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(43, 127, 255, 0.45), 0 0 20px rgba(59, 130, 246, 0.35);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid rgba(255, 255, 255, 0.35);
  position: relative;
}

.floating-action-btn.phone-btn {
  background: linear-gradient(135deg, #0284C7, #0369A1);
  box-shadow: 0 10px 28px rgba(2, 132, 199, 0.45), 0 0 20px rgba(3, 105, 161, 0.35);
}

.floating-action-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 38px rgba(43, 127, 255, 0.65), 0 0 28px rgba(59, 130, 246, 0.5);
  border-color: #FFFFFF;
}

.floating-action-btn.phone-btn:hover {
  box-shadow: 0 14px 38px rgba(2, 132, 199, 0.65), 0 0 28px rgba(3, 105, 161, 0.5);
}

.floating-action-tooltip {
  position: absolute;
  right: 74px;
  background-color: var(--text-primary);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.floating-action-btn:hover .floating-action-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* CIRCULAR SOCIAL MEDIA BUTTONS */
.social-icons-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-subdued);
  background-color: var(--bg-surface-elevated);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.social-icon-btn:hover {
  transform: translateY(-3px);
  border-color: var(--brand-primary);
  background-color: var(--brand-pill-bg);
  color: var(--brand-primary);
  box-shadow: 0 6px 16px rgba(29, 94, 191, 0.25);
}

.social-icon-btn.dark-theme {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
}

.social-icon-btn.dark-theme:hover {
  border-color: #3E8BFF;
  background-color: #1D5EBF;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(62, 139, 255, 0.4);
}

/* REVEAL ANIMATIONS */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .overlay-nav-grid {
    grid-template-columns: 1fr;
  }

  .client-work-item {
    grid-template-columns: 60px 1fr;
  }

  .client-work-tags {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

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

@media (max-width: 768px) {
  .main-nav-links {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .rno1-contact-portal {
    padding: 28px 20px;
  }

  .client-work-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 20px;
  }

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

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

/* ALL ELEMENTS INSTANTLY VISIBLE WITHOUT ANIMATION DELAYS */
.reveal-on-scroll {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
