/* ==========================================================================
   PESUZOK NIGERIA LIMITED - PREMIUM HOMEPAGE STYLESHEET
   Design Theme: Clean, Premium Energy Light Aesthetic
   Primary Accent Color: #1ab0fe
   ========================================================================== */

/* --- Custom Variables & Tokens --- */
:root {
  --primary-navy: #0B2545; /* Deep Navy/Steel Blue representing engineering stability */
  --accent-blue: #1ab0fe; /* Bright accent blue */
  --accent-blue-hover: #0094db;
  --accent-cyan: #1ab0fe; /* Bright Electric Cyan for highlights and indicators */
  --muted-blue: #8DA9C4;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --bg-light: #EEF4F8; /* Accents: Steel Grey and light backgrounds */
  --bg-white: #FFFFFF;
  --border-color: #D1DBE5;
  
  --font-heading: 'Archivo', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.02);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.02);
  --shadow-hover: 0 20px 25px -5px rgba(26, 176, 254, 0.15), 0 10px 10px -5px rgba(26, 176, 254, 0.05);
}

/* --- Global Overrides & Typography --- */
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-navy);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-navy) 30%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* --- Section Layouts --- */
.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.section-title-wrapper {
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--accent-blue);
  letter-spacing: 2px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* --- Buttons & Micro Interactions --- */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-premium-primary {
  background-color: var(--accent-blue);
  color: var(--bg-white) !important;
}

.btn-premium-primary:hover {
  background-color: var(--accent-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 176, 254, 0.3);
}

.btn-premium-secondary {
  background-color: transparent;
  border-color: var(--accent-blue);
  color: var(--accent-blue) !important;
}

.btn-premium-secondary:hover {
  background-color: var(--accent-blue);
  color: var(--bg-white) !important;
  transform: translateY(-2px);
}

/* --- 1. Hero Section Adjustments (Pro International Standard) --- */
.hero-premium-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary-navy);
  padding: 140px 0 80px;
}

.hero-bg-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Ken Burns Zoom Effect */
.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s ease-out;
}

.swiper-slide-active .hero-slide-bg {
  transform: scale(1.1);
}

.hero-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 29, 55, 0.9) 0%, rgba(10, 29, 55, 0.6) 50%, rgba(26, 176, 254, 0.15) 100%);
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 176, 254, 0.15);
  border: 1px solid rgba(26, 176, 254, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  backdrop-filter: blur(5px);
}

.hero-main-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .hero-main-title {
    font-size: 38px;
  }
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 620px;
}

.hero-action-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Premium Navy Blue Glass Card */
.hero-glass-card {
  background: rgba(10, 29, 55, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(26, 176, 254, 0.25);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 30px 60px rgba(5, 15, 28, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-glass-title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(26, 176, 254, 0.15);
  padding-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 15px;
}

.hero-stat-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.hero-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-blue);
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.4;
}

/* Custom Swiper Controls */
.hero-swiper-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.hero-swiper-pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  position: static !important;
  width: auto !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: var(--transition-smooth);
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  width: 40px;
  background: var(--accent-blue) !important;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: #FFFFFF;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
  text-decoration: none;
  cursor: pointer;
}

.hero-scroll-indicator i {
  display: block;
  font-size: 20px;
  margin-top: 5px;
}


/* --- 2. Corporate Overview Section --- */
.overview-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 991px) {
  .overview-layout {
    grid-template-columns: 1fr;
  }
}

.overview-media {
  position: relative;
}

.overview-media img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.overview-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--accent-blue);
  color: var(--bg-white);
  padding: 20px 30px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-heading);
  text-align: center;
}

.overview-badge span {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.overview-badge label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.overview-content {
  font-size: 16px;
  color: var(--text-muted);
}

.overview-registry-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--accent-blue);
  padding: 25px;
  border-radius: 0 8px 8px 0;
  margin-top: 30px;
  box-shadow: var(--shadow-sm);
}

.overview-registry-box table {
  width: 100%;
  margin: 0;
}

.overview-registry-box td {
  padding: 6px 12px;
  border: none;
}

.overview-registry-box td.label {
  font-weight: 700;
  color: var(--primary-navy);
  width: 140px;
}

/* --- 3. Vision and Mission Section --- */
.vision-mission-bg {
  background-color: var(--bg-light);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 768px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }
}

.vm-card {
  background-color: var(--bg-white);
  padding: 50px 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  border-top: 4px solid var(--accent-blue);
  position: relative;
  overflow: hidden;
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.vm-icon-wrapper {
  font-size: 40px;
  color: var(--accent-blue);
  margin-bottom: 25px;
}

.vm-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.vm-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

/* --- 4. Service Snapshot Section --- */
.services-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .services-snapshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-snapshot-grid {
    grid-template-columns: 1fr;
  }
}

.service-snap-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px 30px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-snap-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-hover);
}

.service-snap-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(26, 176, 254, 0.08);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.service-snap-card:hover .service-snap-icon {
  background-color: var(--accent-blue);
  color: var(--bg-white);
}

.service-snap-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-snap-card p {
  color: var(--text-muted);
  font-size: 14px;
  flex-grow: 1;
  margin-bottom: 25px;
}

.service-snap-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.service-snap-link i {
  transition: var(--transition-smooth);
}

.service-snap-card:hover .service-snap-link {
  color: var(--accent-blue-hover);
}

.service-snap-card:hover .service-snap-link i {
  transform: translateX(4px);
}

/* --- 5. Industries Section --- */
.industries-bg {
  background-color: var(--bg-light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 350px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.industry-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: var(--transition-smooth);
}

.industry-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 29, 55, 0.95) 10%, rgba(10, 29, 55, 0.4) 60%, rgba(10, 29, 55, 0.1) 100%);
  z-index: 1;
  transition: var(--transition-smooth);
}

.industry-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  color: #FFFFFF;
}

.industry-card h3 {
  color: #FFFFFF !important;
  font-size: 20px;
  margin-bottom: 10px;
}

.industry-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  max-height: 0;
  overflow: hidden;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.industry-card:hover .industry-card-bg {
  transform: scale(1.1);
}

.industry-card:hover .industry-card-overlay {
  background: linear-gradient(to top, rgba(10, 29, 55, 0.98) 20%, rgba(10, 29, 55, 0.6) 80%);
}

.industry-card:hover .industry-card-content p {
  opacity: 1;
  transform: translateY(0);
  max-height: 80px;
  margin-top: 10px;
}

/* --- 6. Why Choose Us Section --- */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  padding: 35px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
  position: relative;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-md);
}

.why-icon {
  font-size: 32px;
  color: var(--accent-blue);
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* --- 7. Logo Carousel Section (Infinite Left-to-Right Loop) --- */
.carousel-section {
  background-color: var(--bg-light);
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 50px;
  /* Infinite Left-to-Right Scrolling Animation */
  animation: scroll-left-to-right 25s linear infinite;
  white-space: nowrap;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 160px;
  padding: 10px 20px;
  background-color: var(--bg-white);
  border-radius: 6px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  opacity: 0.8;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.carousel-logo:hover {
  opacity: 1;
  border-color: var(--accent-blue);
  transform: scale(1.05);
}

.carousel-logo svg {
  max-width: 100%;
  max-height: 40px;
  fill: var(--text-muted);
  transition: var(--transition-smooth);
}

.carousel-logo:hover svg {
  fill: var(--accent-blue);
}

/* Left-to-right infinite scroll keyframes */
@keyframes scroll-left-to-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-160px * 6 - 50px * 6)); /* Scroll exactly by one loop width */
  }
}

/* --- 8. Call to Action / Contact Us Section --- */
.cta-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 991px) {
  .cta-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.cta-form-wrapper {
  background-color: #FFFFFF;
  padding: 45px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(11, 37, 69, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(11, 37, 69, 0.08);
  border-top: 4px solid var(--accent-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-form-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11, 37, 69, 0.08), 0 2px 5px rgba(0, 0, 0, 0.03);
}

.cta-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.cta-form-wrapper h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-blue);
  border-radius: 2px;
}

.cta-info-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.cta-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(11, 37, 69, 0.05);
  transition: var(--transition-smooth);
}

.cta-info-item:hover {
  border-color: rgba(26, 176, 254, 0.3);
  box-shadow: 0 5px 15px rgba(26, 176, 254, 0.05);
}

.cta-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: rgba(26, 176, 254, 0.08);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.cta-info-item:hover .cta-info-icon {
  background-color: var(--accent-blue);
  color: #FFFFFF;
  transform: scale(1.05);
}

.cta-info-text h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.cta-info-text p, .cta-info-text a {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
  text-decoration: none;
  line-height: 1.5;
}

.cta-info-text a {
  transition: var(--transition-smooth);
}

.cta-info-text a:hover {
  color: var(--accent-blue);
}

.map-placeholder {
  height: 220px;
  background-color: var(--bg-light);
  border-radius: 8px;
  border: 1px dashed rgba(26, 176, 254, 0.4);
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.map-placeholder:hover {
  border-color: var(--accent-blue);
  background-color: rgba(26, 176, 254, 0.02);
  color: var(--accent-blue);
}

.map-placeholder i {
  color: var(--accent-blue);
}

/* --- Footer Custom Styling Integration --- */
.site-footer {
  padding: 0; /* Handled by top and bottom bars */
}

.footer-top {
  padding: 80px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col__title {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-blue);
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 20px 0;
}

.footer-socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  background-color: var(--accent-blue);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent-blue);
  padding-left: 5px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list i {
  color: var(--accent-blue);
  font-size: 18px;
  margin-top: 3px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
}

.footer-contact-list a:hover {
  color: var(--accent-blue);
}

.footer-bottom {
  padding: 30px 0;
  background-color: #05101E;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin: 0;
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition-smooth);
}

.footer-legal a:hover {
  color: var(--accent-blue);
}

/* Brand Logo & Name Styling Overrides */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 5px 0;
}

.header .brand_logo {
  height: 90px !important;
  max-height: 120px;
  width: auto !important;
  transition: var(--transition-smooth);
}

@media (max-width: 768px) {
  .header .brand_logo {
    height: 65px !important;
    max-height: 65px;
  }
}

.footer-brand .brand_logo {
  height: 90px !important;
  max-height: 150px;
  width: auto !important;
  transition: var(--transition-smooth);
}

@media (max-width: 768px) {
  .footer-brand .brand_logo {
    height: 65px !important;
    max-height: 65px;
  }
}

/* Hide redundant brand text since it is embedded in the logo */
.brand_name {
  display: none !important;
}

/* ==========================================================================
   ABOUT US PAGE SPECIFIC STYLES
   ========================================================================== */

/* Inner Page Hero */
.inner-hero-section {
  position: relative;
  min-height: 400px;
  height: 50vh;
  max-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary-navy);
  padding-top: 100px; /* offset header */
}

.inner-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.inner-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 29, 55, 0.95) 0%, rgba(10, 29, 55, 0.75) 100%);
  z-index: 2;
}

.inner-hero-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
}

.inner-hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .inner-hero-title {
    font-size: 36px;
  }
}

.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb-item a {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.breadcrumb-item a:hover {
  color: var(--accent-blue-hover);
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-active {
  color: rgba(255, 255, 255, 0.7);
}

/* Timeline */
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 50px auto 0;
  padding: 0 20px;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 3px;
  background-color: var(--border-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}

@media (max-width: 768px) {
  .timeline-container::after {
    left: 31px;
  }
}

.timeline-block {
  position: relative;
  margin-bottom: 50px;
  width: 50%;
}

.timeline-block:nth-child(even) {
  left: 50%;
}

@media (max-width: 768px) {
  .timeline-block {
    width: 100%;
    padding-left: 70px;
    left: 0 !important;
  }
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--bg-white);
  border: 4px solid var(--accent-blue);
  border-radius: 50%;
  top: 15px;
  z-index: 1;
}

.timeline-block:nth-child(even) .timeline-dot {
  left: -10px;
}

@media (max-width: 768px) {
  .timeline-dot {
    left: 22px !important;
  }
}

.timeline-content {
  padding: 20px 30px;
  background-color: var(--bg-light);
  position: relative;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--accent-blue);
}

.timeline-block:nth-child(odd) {
  padding-right: 40px;
}

.timeline-block:nth-child(even) {
  padding-left: 40px;
}

@media (max-width: 768px) {
  .timeline-block:nth-child(odd) {
    padding-right: 0;
  }
  .timeline-block:nth-child(even) {
    padding-left: 70px;
  }
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 5px;
  display: block;
}

.timeline-content h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 700;
}

.timeline-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* Leadership Spotlight */
.leader-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .leader-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.leader-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
  aspect-ratio: 4 / 5;
}

.leader-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.leader-image-wrapper:hover img {
  transform: scale(1.05);
}

.leader-title-box {
  margin-bottom: 25px;
}

.leader-name {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 5px;
}

.leader-role {
  font-size: 16px;
  color: var(--accent-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leader-quote {
  font-style: italic;
  font-size: 18px;
  color: var(--primary-navy);
  border-left: 4px solid var(--accent-blue);
  padding-left: 20px;
  margin: 25px 0;
  line-height: 1.6;
}

.leader-bio {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Objectives Grid */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 768px) {
  .objectives-grid {
    grid-template-columns: 1fr;
  }
}

.objective-box {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.objective-box:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-hover);
}

.objective-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.objective-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(26, 176, 254, 0.08);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.objective-box:hover .objective-icon {
  background-color: var(--accent-blue);
  color: var(--bg-white);
  transition: var(--transition-smooth);
}

.objective-header h3 {
  font-size: 20px;
  margin: 0;
}

.objective-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.objective-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.objective-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: bold;
}

/* ==========================================================================
   SERVICES PAGE TABS SYSTEM
   ========================================================================== */
.services-tabs-container {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 991px) {
  .services-tabs-container {
    grid-template-columns: 1fr;
  }
}

.services-tabs-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: var(--bg-white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

@media (max-width: 991px) {
  .services-tabs-menu {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 15px;
    gap: 8px;
  }
}

.service-tab-btn {
  background: none;
  border: 1px solid var(--border-color);
  padding: 16px 20px;
  border-radius: 8px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

@media (max-width: 991px) {
  .service-tab-btn {
    width: calc(50% - 4px);
    font-size: 13px;
    padding: 12px 15px;
  }
}

@media (max-width: 576px) {
  .service-tab-btn {
    width: 100%;
  }
}

.service-tab-btn:hover {
  background-color: rgba(26, 176, 254, 0.05);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.service-tab-btn.active {
  background-color: var(--primary-navy);
  border-color: var(--primary-navy);
  color: var(--bg-white);
}

.service-tab-btn.active i {
  color: var(--accent-blue);
}

.service-tab-btn i {
  font-size: 18px;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

/* Tab Panels */
.services-tab-panels {
  background-color: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
}

.service-tab-panel {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.service-tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-panel-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--primary-navy);
}

@media (max-width: 768px) {
  .service-panel-hero {
    aspect-ratio: 4 / 3;
  }
}

.service-panel-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-panel-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 29, 55, 0.2) 0%, rgba(10, 29, 55, 0.7) 100%);
}

.service-panel-content {
  padding: 40px;
}

@media (max-width: 576px) {
  .service-panel-content {
    padding: 25px;
  }
}

.service-panel-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 20px;
}

.service-panel-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.service-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 30px;
  padding: 25px;
  background-color: var(--bg-light);
  border-radius: 8px;
  border-left: 4px solid var(--accent-blue);
}

@media (max-width: 768px) {
  .service-spec-grid {
    grid-template-columns: 1fr;
  }
}

.service-spec-item h4 {
  font-size: 15px;
  color: var(--primary-navy);
  margin-bottom: 8px;
  font-weight: 700;
}

.service-spec-item p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   SAFETY & COMPLIANCE PREMIUM CTA CARD
   ========================================================================== */
.safety-cta-card {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #05101E 100%);
  border-radius: 16px;
  padding: 60px 80px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 991px) {
  .safety-cta-card {
    padding: 40px;
  }
}

.safety-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 176, 254, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.safety-cta-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26, 176, 254, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.safety-cta-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 991px) {
  .safety-cta-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.safety-cta-left {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

@media (max-width: 576px) {
  .safety-cta-left {
    flex-direction: column;
    gap: 15px;
  }
}

.safety-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background-color: rgba(26, 176, 254, 0.15);
  border: 1px solid rgba(26, 176, 254, 0.3);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.safety-cta-headings h3 {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--accent-blue);
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
}

.safety-cta-headings h2 {
  font-size: 32px;
  line-height: 1.25;
  color: #FFFFFF;
  margin: 0;
  font-weight: 800;
}

@media (max-width: 768px) {
  .safety-cta-headings h2 {
    font-size: 26px;
  }
}

.safety-cta-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.safety-cta-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.safety-cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.safety-cta-buttons .btn-premium {
  padding: 12px 24px;
  font-size: 14px;
}

.safety-cta-buttons .btn-premium-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF !important;
}

.safety-cta-buttons .btn-premium-secondary:hover {
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #FFFFFF !important;
}

/* ==========================================================================
   PROJECTS PAGE (CASE STUDIES)
   ========================================================================== */
.case-study-item {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 80px;
  align-items: center;
}

.case-study-item:nth-child(even) {
  grid-template-columns: 1.2fr 1fr;
}

@media (max-width: 991px) {
  .case-study-item, .case-study-item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }
}

.case-study-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

.case-study-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.case-study-item:hover .case-study-media img {
  transform: scale(1.05);
}

.case-study-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary-navy);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.case-study-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-study-client {
  font-family: var(--font-heading);
  font-size: 13px;
  text-transform: uppercase;
  color: var(--accent-blue);
  letter-spacing: 2px;
  font-weight: 700;
  margin: 0;
}

.case-study-title {
  font-size: 28px;
  color: var(--primary-navy);
  font-weight: 800;
  margin: 0;
  line-height: 1.25;
}

.case-study-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  background-color: var(--bg-light);
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 3px solid var(--accent-blue);
}

.case-study-meta-item span {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.case-study-meta-item strong {
  font-size: 14px;
  color: var(--primary-navy);
}

.case-study-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.case-study-metrics {
  display: flex;
  gap: 30px;
  margin-top: 10px;
}

.case-metric-box {
  display: flex;
  flex-direction: column;
}

.case-metric-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-blue);
  line-height: 1;
}

.case-metric-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
}

/* Recent Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.project-grid-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-grid-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-hover);
}

.project-grid-tag {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--accent-blue);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.project-grid-card h3 {
  font-size: 18px;
  color: var(--primary-navy);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.project-grid-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 20px;
  flex-grow: 1;
}

.project-grid-client {
  font-size: 12px;
  color: var(--primary-navy);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  margin-top: auto;
}

.project-gallery-grid {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 8px;
  box-sizing: border-box;
  background-color: rgba(10, 29, 55, 0.03);
}

.project-gallery-grid img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0;
  min-width: 0;
  object-fit: cover !important;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.project-gallery-grid img:hover {
  transform: scale(1.04);
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 29, 55, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: visible;
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #FFFFFF;
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.lightbox-close:hover {
  color: var(--accent-blue);
  transform: rotate(90deg);
}

.project-gallery-grid img {
  cursor: pointer;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 50px;
  align-items: start;
}

@media (max-width: 991px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card-premium {
  background-color: var(--primary-navy);
  color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card-premium::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 176, 254, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: start;
}

.contact-detail-icon {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--accent-blue);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-detail-content h4 {
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 5px 0;
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

.contact-detail-content p, .contact-detail-content a {
  font-size: 15px;
  color: #FFFFFF !important;
  margin: 0;
  line-height: 1.6;
  text-decoration: none;
  display: block;
}

.contact-detail-content a:hover {
  color: var(--accent-blue) !important;
}

.contact-map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  height: 320px;
  width: 100%;
}

.contact-form-card {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 24px;
  color: var(--primary-navy);
  margin: 0 0 10px 0;
  font-weight: 800;
}

.contact-form-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0 0 30px 0;
}

.form-group-premium {
  margin-bottom: 20px;
}

.form-label-premium {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
}

.form-control-premium {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: var(--font-body);
  transition: var(--transition-smooth);
  box-sizing: border-box;
}

.form-control-premium:focus {
  outline: none;
  border-color: var(--accent-blue);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(26, 176, 254, 0.15);
}

textarea.form-control-premium {
  resize: vertical;
  min-height: 120px;
}

.btn-premium-full {
  width: 100%;
  justify-content: center;
  padding: 14px;
  box-sizing: border-box;
}

/* Success Modal */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 29, 55, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.success-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.success-modal-content {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.success-modal.active .success-modal-content {
  transform: translateY(0);
}

.success-modal-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(26, 176, 254, 0.1);
  color: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.success-modal-content h3 {
  font-size: 22px;
  color: var(--primary-navy);
  margin-bottom: 10px;
  margin-top: 0;
}

.success-modal-content p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 25px;
}
