/* ==========================================================================
   Base & Reset Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: #0088cc;
  transition: color 0.3s ease;
}

a:hover {
  color: #005580;
}

ul {
  list-style: none;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 60px 0;
}

.bg-light {
  background-color: #f7f9fa;
}

/* ==========================================================================
   Logo & Brand Color Tweaks
   ========================================================================== */

/* Footer Logo Styling */
.footer-logo {
  max-height: 42px;
  width: auto;
  margin-bottom: 15px;
  background: #ffffff; /* White pill background so dark red/grey logo pops on dark footer */
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e9e9e9;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-img {
  max-height: 50px;
  width: auto;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: #0088cc;
  letter-spacing: 1px;
}

.site-nav ul {
  display: flex;
  gap: 25px;
}

.site-nav a {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #444444;
  padding: 5px 0;
}

.site-nav a:hover,
.site-nav a.active {
  color: #0088cc;
  border-bottom: 2px solid #0088cc;
}


/* ==========================================================================
   Hero Section with Transparent Repeating Background
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: #0d1b2a; /* Base dark background color */
  color: #ffffff;
  padding: 130px 0;
  text-align: center;
  overflow: hidden;
}

/* Semi-transparent image background layer */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/images/collage.png');
  background-repeat: repeat;
  background-size: 450px auto;
  background-position: top left;
  opacity: 0.25; /* Controls image transparency (adjust between 0.15 and 0.35) */
  z-index: 1;
}


.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f1f5f9;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-badge {
  display: inline-block;
  background-color: rgba(0, 136, 204, 0.25);
  border: 1px solid #0088cc;
  color: #61dafb;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 13px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #0088cc;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #006699;
  color: #ffffff;
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: #333333;
}


/* ==========================================================================
   Titles & Section Headers
   ========================================================================== */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1b263b;
  margin-bottom: 5px;
}

.section-subtitle {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 15px;
}

.title-underline {
  width: 60px;
  height: 3px;
  background-color: #0088cc;
  margin: 0 auto;
}

.about-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  color: #555555;
}

.about-content p {
  margin-bottom: 18px;
}

/* ==========================================================================
   Product Cards & Parking Grid
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.product-card {
  background: #ffffff;
  padding: 35px 20px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card.featured {
  border-top: 4px solid #0088cc;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.product-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.2rem;
  color: #1b263b;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.95rem;
  color: #666666;
}

.product-icon-svg {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

/* ==========================================================================
   Legacy Features / Petroleum Grid
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.feature-box {
  padding: 25px;
  border-left: 4px solid #415a77;
  background: #fdfdfd;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.feature-box h4 {
  font-size: 1.1rem;
  color: #1b263b;
  margin-bottom: 8px;
}

.feature-box p {
  color: #666666;
  font-size: 0.95rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #0d1b2a;
  color: #aaaaaa;
  padding-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  color: #aaaaaa;
  font-size: 0.9rem;
}

.footer-col ul a:hover {
  color: #ffffff;
}

.footer-bottom {
  background-color: #08101a;
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid #1e2d3d;
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    height: auto;
    padding: 15px;
  }

  .site-nav ul {
    margin-top: 15px;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================================================
   Clients & Partners Grid
   ========================================================================== */
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.client-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 25px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  text-align: center;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.client-card:hover {
  filter: grayscale(0%);
  opacity: 1;
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
  border-color: #0088cc;
}

.client-logo {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
}

.client-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1b263b;
}

/* ==========================================================================
   Portfolio / Project Gallery
   ========================================================================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.portfolio-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.portfolio-thumb {
  position: relative;
  height: 260px;
  width: 100%;
  overflow: hidden;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-thumb img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.92) 0%, rgba(13, 27, 42, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #61dafb;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.portfolio-overlay h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: #ffffff;
}

.portfolio-overlay p {
  font-size: 0.88rem;
  line-height: 1.4;
  color: #d1d5db;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Quote Form & Contact Section
   ========================================================================== */
.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 40px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.quote-info {
  background: #0d1b2a;
  color: #ffffff;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
}

.quote-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.quote-info > p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

.info-icon {
  font-size: 1.3rem;
  background: rgba(0, 136, 204, 0.2);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #61dafb;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-size: 0.9rem;
  color: #ffffff;
}

.info-item p {
  color: #94a3b8;
  font-size: 0.88rem;
  margin: 0;
}

.info-badge-box {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 6px;
  border-left: 3px solid #0088cc;
}

.info-badge-box h4 {
  font-size: 0.95rem;
  color: #61dafb;
  margin-bottom: 10px;
}

.info-badge-box ul li {
  font-size: 0.85rem;
  color: #e2e8f0;
  margin-bottom: 6px;
}

.quote-form-container {
  padding: 40px 35px;
}


.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1b263b;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size: 0.92rem;
  font-family: inherit;
  color: #333333;
  background-color: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0088cc;
  box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.15);
  background-color: #ffffff;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 6px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #475569;
  cursor: pointer;
  font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #0088cc;
  cursor: pointer;
}

.btn-submit {
  border: none;
  cursor: pointer;
  padding: 14px 28px;
  font-size: 0.95rem;
  margin-top: 10px;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .quote-wrapper {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Compact Media Sizing for Projects Section
   ========================================================================== */

/* Restrict maximum media height to 140px - 160px */
.project-media {
  position: relative;
  height: 150px; /* Reduced from 260px/180px */
  width: 100%;
  overflow: hidden;
  background-color: #0d1b2a;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Prevents stretching and crops cleanly */
  object-position: center;
  transition: transform 0.4s ease;
}

.project-card:hover .project-media img {
  transform: scale(1.06);
}

.project-media .project-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(13, 27, 42, 0.88);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #61dafb;
  letter-spacing: 0.5px;
  border-left: 2px solid #0088cc;
}

.project-header {
  background: #0d1b2a;
  color: #ffffff;
  padding: 12px 16px;
  border-bottom: 2px solid #0088cc;
}

.project-header h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.project-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-body p {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.4;
  margin-bottom: 8px;
}

.project-features {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed #e2e8f0;
  list-style: none;
}

.project-features li {
  font-size: 0.8rem;
  color: #0088cc;
  font-weight: 600;
  margin-bottom: 4px;
}

/* ==========================================================================
   Our Stats Section
   ========================================================================== */
.stats-section {
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  color: #ffffff;
  padding: 50px 0;
  border-top: 3px solid #990000;
  border-bottom: 3px solid #990000;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-card {
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: #990000;
  background: rgba(255, 255, 255, 0.06);
}

.stat-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #61dafb;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 2rem;
  }
}

.stat-icon-svg {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
/* ==========================================================================
   Our Story Vertical Timeline
   ========================================================================== */
.story-timeline {
  position: relative;
  max-width: 820px;
  margin: 40px auto 0 auto;
  padding-left: 20px;
}

/* Vertical red connector line */
.story-timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 45px;
  width: 4px;
  background-color: #990000;
  z-index: 1;
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  z-index: 2;
}

.timeline-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background-color: #990000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(153, 0, 0, 0.25);
  margin-right: 25px;
}

.timeline-content {
  background: #ffffff;
  padding: 5px 0;
}

.timeline-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #990000;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.timeline-content p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.5;
  margin: 0;
}

/* Bottom Quote Banner */
.story-banner {
  max-width: 820px;
  margin: 40px auto 0 auto;
  border: 2px solid #990000;
  border-radius: 6px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  background-color: #fdf2f2;
}

.banner-icon {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.banner-text {
  font-size: 0.95rem;
  color: #990000;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.banner-text strong {
  font-weight: 800;
}

@media (max-width: 600px) {
  .story-timeline::before {
    left: 35px;
  }
  .timeline-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    margin-right: 15px;
  }
  .timeline-icon svg {
    width: 22px;
    height: 22px;
  }
  .story-banner {
    flex-direction: column;
    text-align: center;
  }
  .banner-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* ==========================================================================
   Mission & Vision Page Styles
   ========================================================================== */
.page-hero {
  background-color: #0d1b2a;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
  border-bottom: 3px solid #990000;
}

.mission-vision-grid {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 50px auto;
  align-items: stretch;
}

.mv-card {
  flex: 1;
  background: #ffffff;
}

.mv-divider {
  width: 2px;
  background-color: #990000;
  align-self: stretch;
}

.mv-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.mv-header h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #990000;
  letter-spacing: 0.5px;
  margin: 0;
}

.mv-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 16px;
}

/* Core Values Strip */
.core-values-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 50px auto;
  padding: 25px 0;
  border-top: 2px solid #990000;
  border-bottom: 2px solid #990000;
  flex-wrap: wrap;
  gap: 20px;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.value-item span {
  font-size: 0.85rem;
  font-weight: 800;
  color: #990000;
  letter-spacing: 0.8px;
}

/* Dedication Box */
.dedication-box {
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid #990000;
  border-radius: 6px;
  padding: 25px 35px;
  text-align: center;
  background-color: #fdf2f2;
}

.dedication-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #990000;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.dedication-text {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .mission-vision-grid {
    flex-direction: column;
  }
  .mv-divider {
    width: 100%;
    height: 2px;
  }
}

/* ==========================================================================
   Pillars & Active Projects Styling
   ========================================================================== */
.solutions-grid,
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.solution-card,
.project-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.solution-card:hover,
.project-card:hover {
  transform: translateY(-5px);
  border-color: #990000;
}

.featured-pillar {
  border-top: 4px solid #990000;
}

.partner-badge {
  display: inline-block;
  background-color: #fdf2f2;
  color: #990000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.solution-icon-svg {
  margin-bottom: 15px;
}

.solution-card h3,
.project-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 8px;
}

.project-category {
  font-size: 0.85rem;
  font-weight: 700;
  color: #990000;
  margin-bottom: 12px;
}

.project-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  background-color: #e0f2fe;
  color: #0369a1;
  margin-bottom: 10px;
}

.project-status.completed {
  background-color: #f1f5f9;
  color: #475569;
}

/* ==========================================================================
   Contact Page Styles & Form Layout
   ========================================================================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.contact-info-card h2,
.contact-form-card h3 {
  color: #0d1b2a;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-intro {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 35px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background-color: #fdf2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-details h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 2px;
}

.info-details p,
.info-details a {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.4;
  text-decoration: none;
}

.info-details a:hover {
  color: #990000;
}

.contact-pillars-box {
  background-color: #fdf2f2;
  border-left: 4px solid #990000;
  padding: 20px;
  border-radius: 4px;
}

.contact-pillars-box h4 {
  font-size: 0.9rem;
  color: #990000;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.contact-pillars-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-pillars-box li {
  font-size: 0.85rem;
  color: #334155;
  margin-bottom: 6px;
}

.contact-pillars-box li:last-child {
  margin-bottom: 0;
}

/* Form Controls */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0d1b2a;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #1e293b;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #990000;
  box-shadow: 0 0 0 3px rgba(153, 0, 0, 0.1);
}

.btn-block {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

@media (max-width: 850px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}