@charset "utf-8";
/* CSS Document */

/* CSS VARIABLES - Brand colors and typography control */
:root {
  --primary-color: #17365F;   /* Your brand dark blue */
  --secondary-color: #ffcd33; /* Your brand gold/yellow */
  --text-dark: #2d3748;       /* Charcoal for readability */
  --text-muted: #4a5568;      /* Subdued gray for body text */
  --bg-light: #f7fafc;        /* Soft neutral gray background */
  --bg-white: #ffffff;
  --font-headings: 'Inter', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --max-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* GLOBAL RESET & STYLES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER & NAVIGATION */
.site-header {
  background-color: var(--primary-color);
  color: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.site-logo {
  font-family: var(--font-headings);
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}

/* GLOBAL LOGO STYLING - Moved outside of media queries so it works on desktop */
.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  max-height: 35px; /* Scaled to 1/4 size globally */
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: 'Bernhard Std', 'Bernhard Modern', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.main-nav a {
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
}

/* HERO SECTION */
.hero {
  position: relative;
  background-image: url('../images/mainphoto.jpg'); /* Your existing city skyline background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  text-align: center;
  color: var(--bg-white);
}

/* Dark Overlay to make the text highly readable */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(27, 54, 93, 0.85) 0%, rgba(27, 54, 93, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.hero-tagline {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 44px); /* Scales between 32px on mobile and 44px on desktop */
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.7;
  margin-bottom: 36px;
}

.btn {
  display: inline-block;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

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

.btn-primary:hover {
  background-color: var(--bg-white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* OVERVIEW SECTION */
.intro {
  padding: 90px 0;
  background-color: var(--bg-white);
}

.intro-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.intro-header h2 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.4;
}

.intro-header p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

.divider {
  width: 60px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 24px auto 0 auto;
}

/* SERVICES GRID SECTION */
.services-section {
  padding: 90px 0;
  background-color: var(--bg-light);
  text-align: center;
}

.services-section h2 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  background-color: var(--bg-white);
  padding: 36px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color);
}

.service-icon-wrapper {
  color: var(--primary-color);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.service-card h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

/* WHY CHOOSE SECTION */
.why-choose {
  padding: 90px 0;
  background-color: var(--bg-white);
}

.why-choose h2 {
  font-size: 32px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Changed from 300px to 280px */
  gap: 32px;
}

.why-card {
  padding: 24px;
  border-left: 4px solid var(--secondary-color);
  background-color: var(--bg-light);
  border-radius: 0 8px 8px 0;
}

.why-card h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* PROPIO-STYLE FOOTER */
.site-footer {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 80px 0 30px 0;
  border-top: 4px solid var(--secondary-color);
  font-family: var(--font-body);
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h4 {
  color: var(--secondary-color);
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.footer-column p {
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e0;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #cbd5e0;
  font-size: 14px;
}

.footer-contact-item strong {
  color: var(--secondary-color);
  font-family: var(--font-headings);
  display: block;
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: #a0aec0;
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-bottom-links a {
  color: #ffffff; /* Contrast fix for visibility */
  font-size: 13px;
  font-weight: 600;
}

.footer-bottom-links a:hover {
  color: var(--secondary-color);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .intro-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero h1 {
    font-size: 38px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    height: auto;
    padding: 16px 0;
  }

  .main-nav ul {
    gap: 16px;
  }

  .hero {
    padding: 50px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
} /* <--- THIS IS THE CLOSING BRACKET FOR THE 768px QUERY, WHICH SOLVES THE BUG */

/* ==========================================================================
   ABOUT US PAGE SPECIFIC STYLES
   ========================================================================== */

/* Section Padding & Spacing */
.section-padding {
  padding: 90px 0;
}

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

/* Spacing & Alignment for Section Headings */
.section-header {
  text-align: center; /* Centers the headings and body text */
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.section-header h2 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Mission & Philosophy Grid (Splits them into 2 columns on desktop) */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}

/* Card styling for Mission and Philosophy blocks */
.about-card {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--secondary-color); /* The gold top accent border */
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.about-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--bg-light);
  padding-bottom: 12px;
}

.about-card h4 {
  font-size: 16px;
  color: var(--primary-color);
  margin-top: 24px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-card ul {
  list-style-position: inside;
  margin-left: 8px;
  margin-bottom: 16px;
}

.about-card li {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

/* "Who We Serve" Grid & Item Cards */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.serve-card {
  background-color: var(--bg-white);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.serve-card svg {
  color: var(--secondary-color);
  flex-shrink: 0;
}

.serve-card span {
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
}

/* Commitment Banner */
.commitment-section {
  background-color: var(--primary-color);
  color: var(--bg-white);
  text-align: center;
  padding: 80px 0;
}

.commitment-content {
  max-width: 800px;
  margin: 0 auto;
}

.commitment-content h2 {
  font-size: 32px;
  color: var(--secondary-color);
  margin-bottom: 24px;
}

.commitment-content p {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Responsive columns scaling for smaller screens */
@media (max-width: 992px) {
  .grid-2-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
/* ==========================================================================
   BREADCRUMB STYLES
   ========================================================================== */
.breadcrumb-nav {
  background-color: var(--bg-light); /* Soft gray background */
  padding: 12px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  gap: 8px;
}

/* Adds an elegant separator slash between links */
.breadcrumb-list li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--text-muted);
}

.breadcrumb-list a {
  color: var(--primary-color);
  font-weight: 600;
}

.breadcrumb-list a:hover {
  color: var(--secondary-color);
}

/* The active page text style (non-clickable) */
.breadcrumb-list li[aria-current="page"] {
  color: var(--text-muted);
}