/* ============================================================
   RPC INFRA PROJECTS Pvt. Ltd.
   Official Brand Design System & Stylesheet (HTML5/CSS3)
   ============================================================ */

:root {
  --bg-primary: #F8F8F6;
  --bg-white: #FFFFFF;
  --text-primary: #111111;
  --text-secondary: #666666;
  --border-color: #E6E6E6;
  --accent-orange: #F26522;
  --accent-orange-hover: #D54F10;
  --color-dark: #181818;
  --font-heading: 'Manrope', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0 !important; /* Zero rounded corners across entire website */
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-primary);
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1.1;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

/* Container limits */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.section {
  padding: 8rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.bg-dark-block {
  background-color: var(--color-dark);
  color: var(--bg-white);
}

.bg-dark-block h1, .bg-dark-block h2, .bg-dark-block h3, .bg-dark-block h4, .bg-dark-block p {
  color: var(--bg-white);
}

/* Micro eyebrow label */
.micro-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 1rem;
  display: block;
}

/* Buttons visual hierarchy */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.25rem;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-orange {
  background-color: var(--accent-orange);
  color: var(--bg-white);
}

.btn-orange:hover {
  background-color: var(--accent-orange-hover);
}

.btn-border-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--bg-white);
}

.btn-border-white:hover {
  background-color: var(--bg-white);
  border-color: var(--bg-white);
  color: var(--text-primary);
}

.btn-border-dark {
  background-color: transparent;
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.btn-border-dark:hover {
  background-color: var(--text-primary);
  color: var(--bg-white);
}

/* ============================================================
   STICKY TRANSPARENT NAVBAR & MEGA MENU
   ============================================================ */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.header-nav.scrolled {
  background-color: rgba(24, 24, 24, 0.95);
  border-bottom: 1px solid var(--color-dark);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: height 0.3s ease;
}

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

/* Logo */
.logo-lockup {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--bg-white);
  text-transform: uppercase;
}

.logo-main span {
  color: var(--accent-orange);
  font-weight: 500;
  font-size: 17px;
}

.logo-sub {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Desktop links */
.nav-menu-list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-menu-item {
  position: relative;
  /* Extra padding-bottom acts as a hover hitbox bridge to prevent mega menu gaps */
  padding-bottom: 15px;
  margin-bottom: -15px;
}

.nav-menu-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.65);
  padding: 10px 0;
}

.nav-menu-link:hover, .nav-menu-item.active .nav-menu-link {
  color: var(--bg-white);
}

/* Mega Menu container */
.mega-menu-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 900px;
  background-color: var(--color-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem;
  opacity: 0;
  visibility: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  z-index: 110;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
}

/* Show mega menu on parent hover without gaps */
.nav-menu-item:hover .mega-menu-wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-column h4 {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-orange);
  letter-spacing: 0.15em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.mega-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-menu-list a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  padding: 2px 0;
}

.mega-menu-list a:hover {
  color: var(--bg-white);
  padding-left: 5px;
}

/* Mega menu column 4: Featured content */
.mega-menu-featured {
  display: flex;
  flex-direction: column;
}

.mega-menu-featured img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-menu-featured h5 {
  font-size: 12px;
  color: var(--bg-white);
  margin-bottom: 6px;
}

.mega-menu-featured p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
  margin-bottom: 12px;
}

.mega-menu-featured-link {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mega-menu-featured-link:hover {
  color: var(--bg-white);
}

/* Mobile Toggle */
.mobile-hamburger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--bg-white);
  cursor: pointer;
  padding: 8px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-wrapper {
  position: relative;
  height: 100vh;
  min-height: 650px;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-dark);
  display: flex;
  align-items: center;
}

.hero-backdrop-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.2) 0%, rgba(24, 24, 24, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--bg-white);
  margin-top: 80px;
}

.hero-content h1 {
  color: var(--bg-white);
  max-width: 800px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-cta-row {
  display: flex;
  gap: 1.5rem;
}

.hero-location-badge {
  position: absolute;
  bottom: 40px;
  right: 4rem;
  z-index: 10;
  background-color: rgba(24, 24, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg-white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-location-badge .badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

.hero-scroll-loader {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--bg-white);
  opacity: 0.5;
}

.scroll-text {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: var(--accent-orange);
  animation: scrollAnim 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes scrollAnim {
  0% { transform: translateY(-100%); }
  85%, 100% { transform: translateY(300%); }
}

/* ============================================================
   ABOUT RPC
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
  align-items: start;
}

.about-img-frame {
  border: 1px solid var(--border-color);
  padding: 8px;
  background-color: var(--bg-white);
}

.about-img-frame img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.about-pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.about-pillar-col h4 {
  font-size: 13px;
  margin-bottom: 8px;
}

.about-pillar-col p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ============================================================
   SERVICES ALTERNATING LAYOUTS
   ============================================================ */
.services-section-title-block {
  text-align: center;
  margin-bottom: 6rem;
}

.services-list-container {
  display: flex;
  flex-direction: column;
}

.services-alternating-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
  align-items: center;
  padding: 6rem 0;
  border-bottom: 1px solid var(--border-color);
}

.services-alternating-row:last-child {
  border-bottom: none;
}

.service-content-col h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.service-desc-main {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.service-specs-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.service-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-spec-item h5 {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-orange);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.service-spec-item p {
  font-size: 13px;
  margin-bottom: 0;
  line-height: 1.4;
  color: var(--text-secondary);
}

/* Order shift classes for alternate row logic */
.services-alternating-row.image-right .service-image-col {
  order: 2;
}

.services-alternating-row.image-right .service-content-col {
  order: 1;
}

/* ============================================================
   INDUSTRIES SERVED
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.industry-card {
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
  padding: 8px;
}

.industry-img-container {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.industry-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.industry-card:hover .industry-img-container img {
  transform: scale(1.05);
}

.industry-meta {
  padding: 1.5rem;
}

.industry-meta h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.industry-meta p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 0;
}

/* ============================================================
   OUR PROCESS TIMELINE
   ============================================================ */
.process-timeline-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 4rem;
}

.process-timeline-row::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--border-color);
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 10;
  width: 16%;
}

.process-num-circle {
  width: 50px;
  height: 50px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.process-step:hover .process-num-circle, .process-step.active .process-num-circle {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.process-step h4 {
  font-size: 13px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 0;
  max-width: 150px;
}

/* ============================================================
   EQUIPMENT & CAPABILITY
   ============================================================ */
.equipment-split {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 4rem;
  align-items: start;
}

.equipment-list-container {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--border-color);
}

.equipment-item-nav {
  padding: 1.25rem 2rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--text-secondary);
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: none;
  position: relative;
}

.equipment-item-nav.active {
  color: var(--accent-orange);
}

.equipment-item-nav::after {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: transparent;
}

.equipment-item-nav.active::after {
  background-color: var(--accent-orange);
}

.equipment-display-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 8px;
}

.equipment-display-box img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin-bottom: 2rem;
}

.equipment-details-pane {
  padding: 1rem 2rem 2rem;
}

.equipment-details-pane h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.equipment-details-pane p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ============================================================
   WHY CHOOSE RPC
   ============================================================ */
.why-grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.why-feature-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.why-feature-card h4 {
  font-size: 14px;
  margin-bottom: 12px;
}

.why-feature-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 0;
}

/* ============================================================
   FAQ (ACCORDION)
   ============================================================ */
.faq-accordion-container {
  max-width: 800px;
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-node {
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
}

.faq-trigger {
  width: 100%;
  padding: 1.5rem 2rem;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-trigger:hover {
  color: var(--accent-orange);
}

.faq-trigger-icon {
  font-size: 18px;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
}

.faq-node.active .faq-trigger-icon {
  transform: rotate(45deg);
  color: var(--accent-orange);
}

.faq-content-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-node.active .faq-content-drawer {
  max-height: 250px;
}

.faq-body-content {
  padding: 0 2rem 1.5rem;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  border-top: 1px solid rgba(0,0,0,0.02);
  padding-top: 1rem;
}

/* ============================================================
   CONTACT CTA SECTION
   ============================================================ */
.contact-cta-wrapper {
  position: relative;
  padding: 10rem 0;
  background-color: var(--color-dark);
  text-align: center;
}

.contact-cta-wrapper h2 {
  color: var(--bg-white);
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.contact-cta-wrapper p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 580px;
  margin: 0 auto 3rem;
}

/* ============================================================
   INNER PAGES STRUCTURE
   ============================================================ */
.inner-hero {
  position: relative;
  background-color: var(--color-dark);
  padding: 12rem 0 6rem;
  border-bottom: 1px solid var(--border-color);
}

.inner-hero-container {
  display: flex;
  flex-direction: column;
  color: var(--bg-white);
}

.inner-hero-container h1 {
  color: var(--bg-white);
  margin-top: 1rem;
}

.inner-hero-container p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  font-size: 18px;
  margin-bottom: 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs a:hover {
  color: var(--bg-white);
}

.breadcrumbs-arrow {
  color: rgba(255, 255, 255, 0.2);
}

/* Split grid for editorial page */
.editorial-split {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 6rem;
}

.sidebar-widget {
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
  padding: 3rem;
}

.sidebar-widget h3 {
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

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

.bullet-item {
  display: flex;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.bullet-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-orange);
  margin-top: 6px;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT US PAGE
   ============================================================ */
.contact-split-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4rem;
}

.contact-info-panel {
  grid-column: span 5;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 3rem;
}

.contact-info-panel h3 {
  font-size: 13px;
  color: var(--accent-orange);
  letter-spacing: 0.12em;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.contact-card-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-block h5 {
  font-size: 12px;
  margin-bottom: 8px;
}

.contact-block p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

.contact-form-panel {
  grid-column: span 7;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 3rem;
}

.contact-form-panel h3 {
  font-size: 13px;
  color: var(--accent-orange);
  letter-spacing: 0.12em;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
  margin-bottom: 24px;
}

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

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

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

.form-group label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}

.form-input {
  width: 100%;
  padding: 1.25rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
  outline: none;
}

.form-input:focus {
  border-color: var(--accent-orange);
}

/* ============================================================
   LARGE PREMIUM FOOTER
   ============================================================ */
.footer-wrapper {
  background-color: var(--color-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8rem 0 4rem;
  color: var(--bg-white);
  position: relative;
  z-index: 10;
}

.footer-top-logo {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 4rem;
  margin-bottom: 4rem;
}

.footer-logo-lockup {
  display: flex;
  flex-direction: column;
}

.footer-logo-main {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--bg-white);
  text-transform: uppercase;
}

.footer-logo-main span {
  color: var(--accent-orange);
  font-weight: 500;
  font-size: 24px;
}

.footer-logo-sub {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-top: 4px;
}

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

.footer-col-block h3 {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-orange);
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

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

.footer-links-list a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}

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

.footer-coordinates-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-coord-row {
  display: flex;
  gap: 10px;
  align-items: start;
}

.footer-coord-row span {
  line-height: 1.5;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

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

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