/* ============================================
   ZANZIBABA EPC - Premium Corporate Profile
   Color Palette: Blue, White, Dark Grey
   ============================================ */

:root {
  --primary-blue: #0a2463;
  --secondary-blue: #1e5aa8;
  --accent-blue: #3e92cc;
  --light-blue: #e8f4fd;
  --dark-grey: #1a1a2e;
  --medium-grey: #2d2d44;
  --light-grey: #f5f7fa;
  --white: #ffffff;
  --gold: #c9a227;
  --text-dark: #1a1a2e;
  --text-light: #ffffff;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.3);
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-blue);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-dark);
  line-height: 1.8;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 36, 99, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 36, 99, 0.98);
  box-shadow: var(--shadow-lg);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.logo-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: width 0.3s ease;
}

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

.nav-links a:hover {
  color: var(--accent-blue);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.55) 0%, rgba(26, 26, 46, 0.65) 100%), url('image/Cover Page.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  text-align: center;
  z-index: 2;
  padding: 2rem;
  max-width: 1000px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.6rem 1.75rem;
  border-radius: 50px;
  color: var(--accent-blue);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  white-space: nowrap;
}

.hero h1 {
  color: var(--white);
  font-size: 3.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.btn-primary:hover {
  background: var(--accent-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-blue);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
}

.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Page Sections */
.page-section {
  min-height: 100vh;
  padding: 120px 2rem 80px;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  background: var(--light-blue);
  color: var(--secondary-blue);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-blue);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 1.5rem auto 0;
}

/* Content Sections */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

.content-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.content-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.image-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
  border-radius: 12px;
}

.content-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
}

.content-text p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-blue);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: var(--light-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-blue);
}

.card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

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

/* Message Section */
.message-section {
  background: var(--light-grey);
}

.message-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}

.message-portrait {
  width: 300px;
  height: 350px;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-grey));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 5rem;
  box-shadow: var(--shadow-lg);
}

.message-text {
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.message-text::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 6rem;
  color: var(--accent-blue);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.message-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
}

.message-text p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
}

.message-author {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.message-author strong {
  display: block;
  color: var(--primary-blue);
  font-size: 1.1rem;
}

.message-author span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-5px);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
}

.value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--primary-blue);
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Why Choose Us */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.why-card-header {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  padding: 2rem;
  text-align: center;
  color: var(--white);
}

.why-card-header .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.why-card-header h4 {
  color: var(--white);
  font-size: 1.2rem;
}

.why-card-body {
  padding: 2rem;
}

.why-card-body ul {
  list-style: none;
  padding: 0;
}

.why-card-body li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.why-card-body li::before {
  content: '✓';
  color: var(--accent-blue);
  font-weight: bold;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-avatar {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-grey));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--white);
}

.team-info {
  padding: 1.5rem;
}

.team-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.team-info .role {
  color: var(--accent-blue);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

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

/* Service Pages */
.service-hero {
  min-height: 60vh;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-grey) 100%);
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.service-hero h1 {
  color: var(--white);
  font-size: 3rem;
}

.service-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
}

/* Section Images */
.section-image {
  width: 100%;
  margin-bottom: 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #f8f9fa;
}

.section-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.section-image:hover img {
  transform: scale(1.02);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-item {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--accent-blue);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.service-item h4 {
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.service-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Materials Section */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.material-category {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.material-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.material-header {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  padding: 1.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.material-header .icon {
  font-size: 2rem;
}

.material-header h4 {
  color: var(--white);
  font-size: 1.1rem;
}

.material-list {
  padding: 1.5rem;
}

.material-list ul {
  list-style: none;
  padding: 0;
}

.material-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.material-list li::before {
  content: '•';
  color: var(--accent-blue);
  font-size: 1.5rem;
  line-height: 1;
}

/* Map Section */
.map-section {
  background: var(--light-grey);
  padding: 100px 2rem;
}

.map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.map-visual {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--light-blue), var(--white));
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

.map-placeholder .icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-item {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent-blue);
}

.location-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.location-item .icon {
  font-size: 1.5rem;
  color: var(--accent-blue);
}

.location-item h5 {
  color: var(--primary-blue);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.location-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

.partner-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.partner-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--light-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-blue);
}

.partner-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

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

/* Safety Section */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.safety-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--accent-blue);
  transition: all 0.3s ease;
}

.safety-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.safety-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--secondary-blue);
}

.safety-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.safety-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Sustainability */
.sustainability-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.sustainability-item {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.sustainability-item:hover {
  box-shadow: var(--shadow-lg);
}

.sustainability-item .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent-blue);
}

.sustainability-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.sustainability-item p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* Strategy */
.strategy-timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
  padding-left: 50px;
}

.strategy-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-blue), var(--accent-blue));
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: var(--accent-blue);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}

.timeline-item h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.timeline-item .year {
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.92) 0%, rgba(26, 26, 46, 0.95) 100%), url('image/Closing Page.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 100px 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  color: var(--white);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-item .icon {
  font-size: 2rem;
  color: var(--accent-blue);
  min-width: 50px;
}

.contact-item h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-item p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem;
}

.contact-form h3 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
}

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

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--secondary-blue);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--dark-grey);
  color: var(--white);
  padding: 60px 2rem 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.footer-links h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-blue);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-blue);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent-blue);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* Print Styles */
@media print {
  .navbar, .hero-cta, .btn {
    display: none;
  }
  
  .page-section {
    min-height: auto;
    padding: 40px 20px;
    page-break-inside: avoid;
  }
  
  body {
    font-size: 12pt;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .card-grid,
  .why-choose-grid,
  .values-grid,
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .message-content {
    grid-template-columns: 1fr;
  }
  
  .message-portrait {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .logo-text {
    font-size: 1.1rem;
    letter-spacing: 0.3px;
  }
  
  .logo-tagline {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-badge {
    font-size: 0.65rem;
    padding: 0.45rem 1rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    white-space: nowrap;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .card-grid,
  .why-choose-grid,
  .values-grid,
  .service-list,
  .materials-grid,
  .safety-grid,
  .sustainability-content,
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .map-container {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-logo {
    height: 50px;
  }
  
  .section-image img {
    height: 220px;
  }
  
  .strategy-timeline {
    padding-left: 40px;
  }
  
  .timeline-item {
    margin-bottom: 2.5rem;
    padding-left: 30px;
  }
  
  .timeline-item h4 {
    font-size: 1.1rem;
  }
  
  .timeline-item p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .timeline-item .year {
    font-size: 0.85rem;
  }
}

/* ============================================
   NEW STYLES FOR REFINED SECTIONS
   ============================================ */

/* SVG Icon System */
svg {
  display: inline-block;
  vertical-align: middle;
}

.icon-hero {
  width: 80px;
  height: 80px;
  color: var(--white);
}

.icon-hero-large {
  width: 160px;
  height: 160px;
  color: var(--white);
}

/* Image Placeholders */
.image-placeholder svg {
  width: 120px;
  height: 120px;
  color: var(--white);
}

.image-placeholder-blue {
  background: linear-gradient(135deg, var(--secondary-blue), var(--accent-blue));
}

.image-placeholder-blue svg {
  width: 100px;
  height: 100px;
  color: var(--white);
}

/* Section Light Background */
.section-light {
  background: var(--light-grey);
}

/* Vision Section */
.vision-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-grey) 100%);
}

.vision-title {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 600;
  max-width: 900px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.section-tag-light {
  background: rgba(255,255,255,0.1);
  color: var(--accent-blue);
}

.vision-pillars {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.vision-pillar {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

.vision-pillar-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.2);
}

.vision-pillar-icon svg {
  width: 36px;
  height: 36px;
  color: var(--accent-blue);
}

.vision-pillar h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.vision-pillar p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* Leadership Message Section - Premium Executive Layout */
.leadership-section {
  background: var(--light-grey);
}

.leadership-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.leadership-content {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
}

.leadership-portrait {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-grey) 100%);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.portrait-frame {
  width: 280px;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  margin-bottom: 2rem;
  border: 4px solid rgba(255,255,255,0.2);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.leader-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.leader-name {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.leader-title {
  color: var(--accent-blue);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.leadership-message {
  padding: 3.5rem;
}

.leadership-message h3 {
  font-size: 1.75rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.leadership-message h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-blue);
}

.leadership-message p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.leadership-message p:last-child {
  margin-bottom: 0;
}

/* Procurement List */
.procurement-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  text-align: left;
}

.procurement-list li {
  padding: 0.4rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  position: relative;
  padding-left: 1rem;
}

.procurement-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--accent-blue);
  border-radius: 50%;
}

/* Mission List */
.mission-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.mission-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  gap: 1rem;
  align-items: start;
}

.mission-list li:last-child {
  border-bottom: none;
}

.list-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Card Icons */
.card-icon svg,
.value-icon svg,
.safety-icon svg,
.sustainability-icon svg,
.procurement-icon svg,
.partner-logo svg {
  width: 36px;
  height: 36px;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Why Choose Us Icons */
.why-card-header .icon svg {
  width: 48px;
  height: 48px;
  color: var(--white);
}

.why-card-header .icon {
  margin-bottom: 1rem;
}

/* Team Avatar Icons */
.team-avatar svg {
  width: 60px;
  height: 60px;
  color: var(--white);
}

/* Material Category Icons */
.material-header svg {
  width: 32px;
  height: 32px;
  color: var(--white);
  flex-shrink: 0;
}

/* Location Icons */
.location-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.location-item {
  display: flex;
  gap: 1rem;
  align-items: start;
}

/* Contact Icons */
.contact-icon {
  width: 28px;
  height: 28px;
  color: var(--accent-blue);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: start;
}

/* Footer Social Icons */
.footer-social a svg {
  width: 20px;
  height: 20px;
}

/* Tanzania Map */
.tanzania-map {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.tanzania-map svg {
  width: 100%;
  height: auto;
  max-height: 400px;
}

/* Procurement Grid */
.procurement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.procurement-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.procurement-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-blue);
}

.procurement-icon {
  width: 70px;
  height: 70px;
  background: var(--light-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.procurement-icon svg {
  width: 36px;
  height: 36px;
  color: var(--secondary-blue);
}

.procurement-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--primary-blue);
}

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

/* Partners Grid Expanded */
.partners-grid-expanded {
  grid-template-columns: repeat(3, 1fr);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .procurement-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners-grid-expanded {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vision-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .procurement-grid {
    grid-template-columns: 1fr;
  }
  
  .partners-grid-expanded {
    grid-template-columns: 1fr;
  }
  
  .vision-pillars {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .leadership-content {
    grid-template-columns: 1fr;
  }
  
  .leadership-portrait {
    padding: 2.5rem 2rem;
  }
  
  .portrait-frame {
    width: 240px;
    height: 280px;
  }
  
  .leadership-message {
    padding: 2rem;
  }
  
  .leadership-message h3 {
    font-size: 1.4rem;
  }
}

/* ============================================
   NATIONWIDE COVERAGE SECTION
   ============================================ */

.coverage-section {
  background: var(--light-grey);
}

.coverage-description {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.coverage-map-container {
  position: relative;
}

.tanzania-map-professional {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.coverage-map-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.coverage-zones {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.zone-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
}

.zone-header svg {
  width: 32px;
  height: 32px;
  color: var(--secondary-blue);
}

.zone-header h3 {
  font-size: 1.4rem;
  color: var(--primary-blue);
  margin: 0;
}

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

.zone-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--light-grey);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.zone-card:hover {
  background: var(--white);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-sm);
}

.zone-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zone-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.zone-icon-secondary {
  background: var(--secondary-blue);
}

.zone-info h5 {
  font-size: 0.95rem;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.zone-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* Responsive for Coverage Section */
@media (max-width: 1024px) {
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .zone-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .coverage-description {
    font-size: 1rem;
  }
  
  .zone-grid {
    grid-template-columns: 1fr;
  }
  
  .zone-card {
    padding: 0.875rem;
  }
  
  .zone-icon {
    width: 40px;
    height: 40px;
  }
  
  .zone-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ============================================
   CORPORATE STRUCTURE SECTION
   ============================================ */

/* Corporate Presence */
.corporate-presence {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.presence-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  min-width: 280px;
  transition: all 0.3s ease;
}

.presence-card:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-lg);
}

.presence-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.presence-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.presence-card h4 {
  font-size: 1.1rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.presence-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.presence-connector {
  width: 80px;
}

.presence-connector svg {
  width: 100%;
  height: auto;
}

/* Organizational Chart */
.org-chart {
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.org-level {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.org-level-group {
  margin-bottom: 0;
}

.org-level-subsidiaries {
  margin-top: 0;
}

/* Group Card */
.org-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.org-card-group {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-grey) 100%);
  color: var(--white);
  padding: 2.5rem 4rem;
  text-align: center;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
}

.org-card-group h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.org-card-group p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.org-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.org-card-group .org-card-icon {
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}

.org-card-group .org-card-icon svg {
  width: 36px;
  height: 36px;
  color: var(--white);
}

/* Connectors */
.org-connectors {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0;
}

.org-connector-line {
  width: 3px;
  height: 40px;
  background: var(--primary-blue);
}

.org-connector-branches {
  display: flex;
  justify-content: center;
  gap: 280px;
  position: relative;
}

.org-connector-branches::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 3px;
  background: var(--primary-blue);
}

.org-branch {
  width: 3px;
  height: 30px;
  background: var(--primary-blue);
  margin-top: 0;
}

/* Subsidiary Cards */
.org-card-subsidiary {
  width: 380px;
  padding: 2rem;
  border: 2px solid var(--border-color);
}

.org-card-subsidiary:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.org-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.org-card-icon-primary {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.org-card-icon-primary svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.org-card-icon-secondary {
  width: 50px;
  height: 50px;
  background: var(--secondary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.org-card-icon-secondary svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.org-card-badge {
  background: var(--light-blue);
  color: var(--secondary-blue);
  padding: 0.4rem 0.875rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.org-card-badge-secondary {
  background: #e8f8e8;
  color: #2d7a2d;
}

.org-card-badge-featured {
  background: var(--primary-blue);
  color: var(--white);
}

.org-card-featured {
  border: 2px solid var(--primary-blue);
  background: linear-gradient(180deg, rgba(10, 36, 99, 0.03) 0%, var(--white) 100%);
}

.org-card-featured:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-xl);
}

.org-card-icon-featured {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.org-card-icon-featured svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.org-level-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.org-level-three .org-card-subsidiary {
  width: 100%;
}

.org-card-subsidiary h4 {
  font-size: 1.35rem;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.org-card-subtitle {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.org-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.org-card-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.org-card-list li:last-child {
  border-bottom: none;
}

.org-card-list li svg {
  width: 18px;
  height: 18px;
  color: var(--accent-blue);
  flex-shrink: 0;
}

/* Coverage Banner */
.coverage-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-grey) 100%);
  border-radius: 16px;
  padding: 2rem 3rem;
  max-width: 600px;
  margin: 0 auto;
}

.coverage-banner-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverage-banner-icon svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

.coverage-banner-content h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.coverage-banner-content p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

/* Responsive for Corporate Structure */
@media (max-width: 1024px) {
  .org-connector-branches {
    gap: 150px;
  }
  
  .org-connector-branches::before {
    width: 150px;
  }
  
  .org-level-three {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .org-level-three .org-card-featured {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .corporate-presence {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .presence-connector {
    transform: rotate(90deg);
    width: 60px;
  }
  
  .presence-card {
    width: 100%;
    max-width: 320px;
  }
  
  .org-level-three {
    grid-template-columns: 1fr;
  }
  
  .org-level-three .org-card-featured {
    grid-column: span 1;
  }
  
  .org-level-subsidiaries {
    flex-direction: column;
    align-items: center;
  }
  
  .org-card-subsidiary {
    width: 100%;
    max-width: 380px;
  }
  
  .org-connector-branches {
    gap: 0;
    flex-direction: column;
    align-items: center;
  }
  
  .org-connector-branches::before {
    display: none;
  }
  
  .org-branch {
    width: 60px;
    height: 3px;
    background: var(--primary-blue);
  }
  
  .org-card-group {
    padding: 2rem;
  }
  
  .org-card-group h3 {
    font-size: 1.4rem;
  }
  
  .coverage-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}
