/* Consulting Page - Theme matching screenshots */
/* Color palette: white/light grey background, dark blue #1a365d for titles, black for body text, grey for quotes */

.consulting-page {
  background: #ffffff;
  font-family: 'Roboto', sans-serif;
}

/* Consulting Hero Section */
.consulting-hero {
  position: relative;
  height: 70vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.consulting-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.consulting-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 54, 93, 0.5);
}

.consulting-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 900px;
}

.consulting-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.consulting-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.6;
}

.consulting-hero-cta {
  display: inline-block;
  padding: 14px 40px;
  background: #1a365d;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.consulting-hero-cta:hover {
  background: #2c5282;
  color: #fff !important;
}

@media (max-width: 768px) {
  .consulting-hero {
    height: 60vh;
    min-height: 400px;
  }
}

/* Our Purpose Section - content only, centered */
.purpose-section {
  padding: 10px 24px 40px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.purpose-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.purpose-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.purpose-statement {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.55;
  margin-bottom: 28px;
  font-size: 2rem;
}

.purpose-quote {
  font-size: clamp(15px, 1.8vw, 17px);
  font-style: italic;
  color: #5a6c7d;
  line-height: 1.65;
  margin: 0 0 48px;
  padding: 0 16px;
  border-left: none;
  font-size: 1.5rem;
}

.purpose-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 56px;
}

.purpose-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(26, 54, 93, 0.06);
  border: 1px solid rgba(26, 54, 93, 0.08);
  min-width: 140px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.purpose-icon-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 54, 93, 0.12);
}

.purpose-icon-item i {
  font-size: 32px;
  color: #1a365d;
}

.purpose-icon-item span {
  font-size: 14px;
  font-weight: 600;
  color: #1a365d;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 600px) {
  .purpose-section {
    padding: 56px 20px 64px;
  }
  .purpose-icons {
    gap: 20px;
  }
  .purpose-icon-item {
    min-width: 120px;
    padding: 20px 24px;
  }
}

/* Our Offerings Section */
.offerings-section {
  padding: 10px 0;
  background: #fafafa;
}

/* Bigger title for "What We Offer" */
.offerings-section .values-header h2 {
  font-size: clamp(32px, 4.2vw, 48px);
}

.offerings-header {
  margin-bottom: 50px;
  padding-left: 80px;
}

.offerings-header .main-title {
  font-size: 18px;
  font-weight: bold;
  color: #1a365d;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 5px solid #1a365d;
  padding-left: 15px;
  margin-bottom: 8px;
}

.offerings-header .sub-title {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
}

/* Service Cards - No icons, centered content */
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  border: 2px solid #b8d4e8;
  border-radius: 16px;
  padding: 40px;
  transition: box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.service-card-header {
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 30px;
  font-weight: bold;
  color: #1a365d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.service-card p {
  font-size: 20px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 20px;
  font-weight: bold;
  color: #1a365d;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}

.service-card-cta:hover {
  color: #2c5282;
}

.service-card-cta i {
  font-size: 14px;
}

/* Workspace Strategy Card - Split layout with dark blue left panel */
.workspace-card {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 40px;
  display: flex;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
}

.workspace-visual {
  flex: 0 0 35%;
  background: #1a365d;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.workspace-visual::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  top: 20%;
  right: -50px;
}

.workspace-visual i {
  font-size: 80px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}

.workspace-visual .workspace-label {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.workspace-visual .workspace-sublabel {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
}

.workspace-content {
  flex: 1;
  padding: 50px 50px;
  background: #fff;
}

.workspace-content h3 {
  font-size: 30px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.workspace-content p {
  font-size: 20px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 16px;
}

.workspace-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.workspace-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.workspace-feature i {
  font-size: 24px;
  color: #1a365d;
}

.workspace-feature span {
  font-size: 17px;
  font-weight: 500;
  color: #000;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 10px 0;
  background: #fff;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-choose-header h2 {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
}

.why-choose-header .values-underline {
  width: 80px;
  height: 5px;
  background: #1a365d;
  margin: 0 auto;
}

.why-choose-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-choose-card {
  padding: 0 10px;
}

.why-choose-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.why-choose-icon {
  font-size: 46px;
  color: #2563eb;
  flex-shrink: 0;
}

.why-choose-card h3 {
  font-size: 30px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.why-choose-card p {
  font-size: 20px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Our Values Section */
.values-section {
  padding: 80px 0;
  background: #fff;
}

.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-header h2 {
  font-size: 42px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
}

.values-header .values-underline {
  width: 80px;
  height: 5px;
  background: #1a365d;
  margin: 0 auto;
}

.values-partnership {
  text-align: right;
  margin-bottom: 40px;
  padding-right: 80px;
}

.values-partnership-logo {
  font-size: 14px;
  color: #666;
}

.values-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 30px 20px;
}

.value-card i {
  font-size: 48px;
  color: #7dd3fc;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 16px;
}

.value-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.values-footer {
  margin-top: 80px;
  height: 120px;
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.values-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 Q 25 30 50 50 T 100 50' stroke='%233b82f6' stroke-width='1' fill='none' opacity='0.3'/%3E%3Cpath d='M0 70 Q 25 50 50 70 T 100 70' stroke='%23ef4444' stroke-width='1' fill='none' opacity='0.2'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 992px) {
  .purpose-section {
    flex-direction: column;
  }

  .purpose-image {
    flex: none;
    height: 300px;
    min-height: auto;
  }

  .purpose-content {
    padding: 40px 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .workspace-card {
    flex-direction: column;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .purpose-content h2 {
    font-size: 32px;
  }

  .purpose-statement {
    font-size: 18px;
  }

  .purpose-icons {
    flex-direction: column;
    gap: 24px;
  }

  .offerings-header {
    padding-left: 30px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-partnership {
    padding-right: 30px;
  }

  .why-choose-grid {
    padding: 0 24px;
  }

  .why-choose-header h2 {
    font-size: 28px;
  }
}
