/*
Theme Name: RK Fibergrid
Theme URI: https://rkfibergrid.com
Author: RK Fibergrid India Pvt. Ltd.
Author URI: https://rkfibergrid.com
Description: Custom WordPress theme for RK Fibergrid India - Optical Fiber Infrastructure Company
Version: 1.1.1
License: GNU General Public License v2 or later
Text Domain: rk-fibergrid
*/

/* ========================================
   CSS VARIABLES
======================================== */
:root {
  --primary-red: #E31C23;
  --primary-red-dark: #C41820;
  --primary-red-light: #FF2D35;
  --dark-navy: #0A1628;
  --dark-blue: #0F1C2E;
  --mid-blue: #1A2A40;
  --light-gray: #F5F7FA;
  --text-dark: #1A1A2E;
  --text-muted: #6B7280;
  --white: #FFFFFF;
  --gradient-red: linear-gradient(135deg, #E31C23 0%, #FF4D54 100%);
  --gradient-dark: linear-gradient(135deg, #0A1628 0%, #1A2A40 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button, .btn {
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  width: 100%;
  padding: 0 20px;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-red);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary-red);
  border-radius: 2px;
  transform: rotate(45deg);
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background: var(--primary-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227, 28, 35, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

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

.btn-white:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: '→';
  font-size: 16px;
}

/* ========================================
   HEADER / NAVIGATION
======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo img {
  height: 42px;
  width: auto;
}

.site-logo .logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark-navy);
  letter-spacing: -0.5px;
}

.site-logo .logo-text span {
  color: var(--primary-red);
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav-list > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav-list a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  white-space: nowrap;
  display: inline-block;
  padding: 4px 0;
}

.main-nav-list a:hover,
.main-nav-list .current-menu-item > a,
.main-nav-list .current_page_item > a {
  color: var(--primary-red);
}

.main-nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  transition: width 0.3s ease;
}

.main-nav-list a:hover::after,
.main-nav-list .current-menu-item > a::after,
.main-nav-list .current_page_item > a::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-search {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-dark);
  background: transparent;
}

.header-search:hover {
  background: var(--light-gray);
}

.btn-get-in-touch {
  background: var(--primary-red);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.btn-get-in-touch:hover {
  background: var(--primary-red-dark);
  transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

@media (max-width: 1100px) {
  .main-nav {
    display: none !important;
  }
  .mobile-toggle {
    display: flex;
  }
  .header-cta .btn-get-in-touch {
    display: none;
  }
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 40px 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  visibility: hidden;
}

.mobile-nav.active {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a,
.mobile-nav-list a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  color: var(--text-dark);
}

.mobile-nav a:hover,
.mobile-nav-list a:hover {
  color: var(--primary-red);
}

/* ========================================

/* ========================================
   HERO SECTION
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0A1628;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 20px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, #0A1628 0%, #0A1628 42%, rgba(10,22,40,0.55) 65%, rgba(227,28,35,0.4) 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(227,28,35,0.35) 0%, transparent 55%),
    linear-gradient(to left, rgba(227,28,35,0.15), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 24px 140px;
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.hero-text {
  color: #fff;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #E31C23;
  margin-bottom: 20px;
}

.hero-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #E31C23;
  border-radius: 2px;
  transform: rotate(45deg);
}

.hero-title {
  font-size: clamp(36px, 5.2vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: -1px;
}

.hero-title .highlight {
  color: #E31C23;
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.92);
}

.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  max-width: 460px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero visual column */
.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-side-text {
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 5;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-side-text span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  line-height: 1.45;
}

.hero-side-text .accent {
  color: #E31C23;
}

.hero-image-stack {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
}

.hero-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-accent-img {
  position: absolute;
  bottom: -36px;
  left: -48px;
  width: 220px;
  height: 170px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  border: 2px solid rgba(255,255,255,0.12);
  z-index: 2;
}

.hero-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(10,22,40,0.9);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  z-index: 3;
  max-width: 220px;
  line-height: 1.35;
}

.watch-story {
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 6;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.watch-story .play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #E31C23;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(227,28,35,0.5);
  writing-mode: horizontal-tb;
  font-size: 16px;
  padding-left: 3px;
}

.watch-story:hover .play-btn {
  transform: scale(1.1);
  background: #C41820;
}

/* Stats Bar */
.stats-bar {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.stats-inner {
  background: #0A1628;
  border-radius: 16px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.06);
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  background: rgba(227,28,35,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E31C23;
  font-size: 18px;
}

.stat-number {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 2px;
}

.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (max-width: 1000px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 80px;
  }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { min-height: 300px; justify-content: center; }
  .hero-side-text { display: none; }
  .hero-accent-img { display: none; }
  .watch-story {
    writing-mode: horizontal-tb;
    flex-direction: row;
    top: auto;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%);
  }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 500px) {
  .stats-inner { grid-template-columns: 1fr; }
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
  padding: 100px 0 90px;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.about-content .section-title {
  margin-bottom: 8px;
}

.about-iso {
  margin-bottom: 14px;
  color: #1A1A2E;
}

.about-content > p {
  color: #6B7280;
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 15px;
}

.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.about-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 440px;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 440px;
}

.about-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #E31C23;
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: 0 8px 20px rgba(227,28,35,0.35);
}

.about-features-panel {
  background: #fff;
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid #F0F1F5;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 10px;
  border-radius: 10px;
  transition: background 0.25s ease;
}

.feature-item:hover {
  background: #F5F7FA;
}

.feature-item .feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(227,28,35,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E31C23;
  font-size: 16px;
}

.feature-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 2px;
}

.feature-item span {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { grid-template-columns: 1fr; }
  .about-image-wrap { min-height: 280px; }
  .about-image-wrap img { min-height: 280px; }
}

/* ========================================
   FOCUS AREAS
======================================== */
.focus-section {
  padding: 80px 0 90px;
  background: #F5F7FA;
}

.focus-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 20px;
}

.focus-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.focus-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  display: block;
}

.focus-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.focus-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.focus-card-title {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.focus-card-title span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #E31C23;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s ease;
}

.focus-card:hover .focus-card-title span {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1100px) {
  .focus-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .focus-cards { grid-template-columns: repeat(2, 1fr); }
  .focus-card { height: 200px; }
}

/* ========================================
   IMPACT NUMBERS
======================================== */
.impact-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.impact-item { padding: 20px 12px; }

.impact-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  background: rgba(227,28,35,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E31C23;
  font-size: 22px;
}

.impact-number {
  font-size: 28px;
  font-weight: 800;
  color: #1A1A2E;
  margin-bottom: 4px;
}

.impact-label {
  font-size: 12px;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

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

/* ========================================
   SERVICES
======================================== */
.services-section {
  padding: 80px 0 100px;
  background: #F5F7FA;
  position: relative;
  overflow: hidden;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: stretch;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

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

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border-color: rgba(227,28,35,0.12);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: rgba(227,28,35,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E31C23;
  font-size: 22px;
}

.service-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card .arrow {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F5F7FA;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #E31C23;
  transition: all 0.3s ease;
}

.service-card:hover .arrow {
  background: #E31C23;
  color: #fff;
}

.services-banner {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #E31C23 0%, #C41820 50%, #8B0F14 100%);
  display: flex;
  align-items: flex-end;
  min-height: 100%;
  position: relative;
}

.services-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15) 0%, transparent 50%),
    linear-gradient(45deg, transparent 40%, rgba(0,0,0,0.15) 100%);
}

.services-banner-inner {
  position: relative;
  z-index: 1;
  padding: 32px 24px;
  color: #fff;
}

.banner-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}

.banner-title {
  display: block;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

@media (max-width: 1100px) {
  .services-layout { grid-template-columns: 1fr; }
  .services-banner { min-height: 160px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================
   LEADERSHIP
======================================== */
.leadership-section {
  padding: 80px 0;
  background: #fff;
}

.leadership-card {
  display: grid;
  grid-template-columns: 320px 1fr 260px;
  gap: 0;
  background: #F5F7FA;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.leadership-photo {
  background: #0A1628;
  position: relative;
}

.leadership-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  object-position: top center;
}

.leadership-info {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leadership-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #E31C23;
  margin-bottom: 10px;
}

.leadership-name {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 2px;
}

.leadership-role {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 16px;
}

.leadership-bio {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.75;
  margin-bottom: 20px;
}

.leadership-quote-box {
  background: #fff;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-left: 1px solid #E8EAED;
}

.leadership-quote-box .quote-mark {
  font-size: 72px;
  font-weight: 800;
  color: #E31C23;
  line-height: 0.8;
  opacity: 0.3;
  margin-bottom: 12px;
}

.leadership-quote-box p {
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: #1A1A2E;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .leadership-card {
    grid-template-columns: 1fr;
  }
  .leadership-photo img { min-height: 260px; max-height: 320px; object-position: top; }
  .leadership-quote-box { border-left: none; border-top: 1px solid #E8EAED; }
}

/* ========================================
   NETWORK SECTION
======================================== */
.network-section {
  padding: 90px 0;
  background: #0A1628;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.network-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.network-content .section-label { color: #E31C23; }
.network-content .section-title { color: #fff; }
.network-content p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  line-height: 1.8;
  font-size: 15px;
}

.network-locations {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.location-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E31C23;
  box-shadow: 0 0 0 4px rgba(227,28,35,0.25);
}

.network-map {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.network-map img {
  max-width: 100%;
  width: 100%;
  max-height: 520px;
  min-height: 380px;
  object-fit: contain;
}

.network-side-label {
  position: absolute;
  top: 20px;
  right: 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.network-side-label span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.network-side-label .accent {
  color: #E31C23;
}

@media (max-width: 900px) {
  .network-grid { grid-template-columns: 1fr; }
  .network-side-label { display: none; }
}

/* ========================================
   PROJECTS
======================================== */
.projects-section {
  padding: 80px 0 90px;
  background: #fff;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 240px;
  display: block;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.project-title {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================
   BLOG + CONTACT
======================================== */
.blog-contact-section {
  padding: 80px 0 100px;
  background: #F5F7FA;
}

.blog-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

.blog-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-date {
  font-size: 12px;
  color: #6B7280;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-excerpt {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 16px;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-form-wrapper h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.contact-form-wrapper > p {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group { margin-bottom: 14px; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.25s ease;
  background: #F5F7FA;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E31C23;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(227,28,35,0.1);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

@media (max-width: 900px) {
  .blog-contact-grid { grid-template-columns: 1fr; }
  .blog-card { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
  background: #0A1628;
  color: #fff;
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand .footer-logo span { color: #E31C23; }

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-social a:hover { background: #E31C23; }

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer-col ul a:hover { color: #E31C23; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.footer-contact-item i {
  color: #E31C23;
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

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

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-links a:hover { color: #E31C23; }

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

/* ========================================
   UTILITIES
======================================== */
.text-red { color: #E31C23; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E31C23;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #C41820;
  transform: translateY(-3px);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
