/* Custom CSS Improvements for GC Website */
/* Optimizations for better typography, spacing, and modern look */

/* ===== TYPOGRAPHY IMPROVEMENTS ===== */

body {
  font-size: 17px;
  line-height: 1.65;
  color: #2a2a2a;
}

p {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.gc_text_block {
  font-size: 17px;
  line-height: 1.65;
}

/* Fix list item font sizes globally */
ul li, ol li {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.w-richtext ul li,
.w-richtext ol li,
.accordion_paragraph ul li,
.accordion_paragraph ol li {
  font-size: 17px !important;
  line-height: 1.65 !important;
}

h1 {
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  line-height: 1.3;
  margin-bottom: 1.25rem;
  margin-top: 2.5rem;
}

/* ===== LOGO SIZE REDUCTION ===== */

.gc_logo {
  max-width: 280px; /* Reduced from default */
  height: auto;
  margin-top: 15px;
  margin-bottom: 15px;
}

.image_logo {
  width: auto !important; /* Let it scale naturally */
  max-width: 200px !important; /* Reduced footer logo */
  height: auto !important; /* Maintain aspect ratio */
}

/* ===== DECORATIVE TRIANGLES - MINIMIZE ===== */

.gc_triangle_corner {
  opacity: 0.4; /* Make less prominent */
  width: 350px; /* Reduced from 473px */
  height: auto;
}

.gc_triangle_corner_left {
  opacity: 0.4; /* Make less prominent */
  width: 350px; /* Reduced from 469px */
  height: auto;
}

.gc_corner_top {
  right: -50px; /* Push further off screen */
  top: -50px;
}

.gc_corner_left {
  left: -50px; /* Push further off screen */
  bottom: -50px;
}

/* ===== SECTION SPACING IMPROVEMENTS ===== */

.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section._1st-page {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.article_header {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* ===== FOOTER IMPROVEMENTS ===== */

.footer {
  padding-top: 3rem;
}

.footer_mid_section_div_contact {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Fix footer CTA button styling */
.gc_cta_button.footer_cta {
  font-size: 16px !important;
  padding: 16px 28px !important;
  line-height: 1.4 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 50px !important;
  white-space: nowrap !important;
}

.footer_mid_section_container.footer_mid_section_social.cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== BUTTON IMPROVEMENTS ===== */

.gc_cta_button {
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gc_cta_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ===== CONTENT WIDTH IMPROVEMENTS ===== */

.div_article_width {
  max-width: 750px; /* Tighter reading width */
  margin-left: auto;
  margin-right: auto;
}

.gc_text_block.home._1st_page {
  max-width: 700px;
}

/* ===== HERO SECTION IMPROVEMENTS ===== */

.hero-section-redesign {
  position: relative;
}

.heading.special.article._1st_page {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  margin-bottom: 2rem;
  text-align: center;
}

.hero-subtitle-text {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--gc-blue);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: center;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gc-blue);
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border-color: var(--gc-blue);
}

.badge-icon {
  width: 20px;
  height: 20px;
  color: var(--gc-green);
  flex-shrink: 0;
}

.gc_text_block.headline.start.special {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ===== FOOTER SOCIAL LINKS - BETTER SPACING ===== */

.footer_center_divs {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.footer_mid_section_container.footer_mid_section_social {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_social_link {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

.footer_social_link img {
  margin-bottom: 0.25rem;
}

/* ===== CONTACT FORM IMPROVEMENTS ===== */

form input,
form select,
form textarea {
  font-family: 'Open sans v28 Normal', Arial, sans-serif;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: 2px solid var(--gc-blue);
  outline-offset: 2px;
  border-color: var(--gc-blue);
}

/* ===== MOBILE RESPONSIVENESS ===== */

/* Global mobile padding for all containers - adds left/right cushion */
@media screen and (max-width: 991px) {
  .w-container,
  .container,
  .article_container,
  .content-wrapper {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media screen and (max-width: 767px) {
  /* Comfortable side padding on smaller mobile devices */
  .w-container,
  .container,
  .article_container,
  .content-wrapper {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  
  /* Ensure article content has breathing room */
  .div_article_width,
  .article_header_wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .gc_logo {
    max-width: 220px;
  }
  
  .gc_triangle_corner,
  .gc_triangle_corner_left {
    opacity: 0.2;
    width: 250px;
  }
  
  .heading.special.article._1st_page {
    font-size: 1.75rem;
  }
  
  .hero-subtitle-text {
    font-size: 1.05rem;
  }
  
  .hero-badges {
    justify-content: center;
  }
  
  .hero-badge {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }
  
  body, p, .gc_text_block {
    font-size: 16px;
  }
  
  .section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

@media screen and (max-width: 479px) {
  /* Extra comfortable padding on very small screens */
  .w-container,
  .container,
  .article_container,
  .content-wrapper {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  
  .gc_logo {
    max-width: 180px;
  }
  
  .gc_triangle_corner,
  .gc_triangle_corner_left {
    display: none; /* Hide on very small screens */
  }
  
  /* Reduce font sizes slightly for very small screens */
  body, p, .gc_text_block {
    font-size: 15px;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  /* Extra padding for completion bond cards on very small screens */
  .cb-intro-card,
  .cb-why-card,
  .cb-benefit-card,
  .cb-misc-card {
    padding: 1.75rem 1.25rem;
  }
  
  .cb-nav-card,
  .cb-protection-card,
  .cb-party-card {
    padding: 1.5rem 1.25rem;
  }
  
  .cb-note-card {
    padding: 1.25rem 1rem;
  }
  
  .accordion-item-trigger {
    padding: 1rem 1rem;
  }
  
  .accordion-item-content {
    padding: 0 1rem 1.25rem;
  }
  
  /* Process step cards on very small screens */
  .cb-process-step {
    padding: 1.5rem 1.25rem;
  }
  
  .process-step-content {
    padding: 0.5rem;
  }
  
  /* Process section detailed content - tighter on very small screens */
  .cb-process-section > h3,
  .cb-process-section > h4,
  .cb-process-section > p {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .cb-process-section > ul,
  .cb-process-section > ol {
    margin-left: 1rem;
    margin-right: 1rem;
    padding-left: 1.5rem;
  }
  
  /* Process section headings smaller on tiny screens */
  .cb-process-section h3 {
    font-size: 1.15rem;
  }
  
  .cb-process-section h4 {
    font-size: 1rem;
  }
}

/* ===== SMOOTH SCROLLING ===== */

html {
  scroll-behavior: smooth;
}

/* ===== IMPROVED LINK STYLES ===== */

a.link-2 {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s ease;
}

a.link-2:hover {
  opacity: 0.7;
}

/* ===== CONTACT PAGE REDESIGN ===== */

.contact_container {
  max-width: 900px;
}

.contact-page-content {
  padding: 2rem 0;
}

.contact-intro-section {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-intro-section h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.contact-intro-text {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
}

.contact-cta-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.contact-email-button {
  font-size: 16px !important;
  padding: 18px 32px !important;
  display: inline-block !important;
  text-decoration: none !important;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem 1rem;
}

.contact-info-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.contact-info-item:hover {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-info-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}

/* Mobile responsiveness for contact page */
@media screen and (max-width: 767px) {
  .contact-card {
    padding: 2rem 1.5rem;
  }
  
  .contact-intro-section h2 {
    font-size: 1.5rem;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-email-button {
    font-size: 14px !important;
    padding: 16px 24px !important;
  }
}

/* ===== ABOUT PAGE REDESIGN ===== */

.about-page-redesign {
  padding: 3rem 0;
}

.about-intro-section {
  margin-bottom: 4rem;
}

.about-intro-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about-section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.about-competencies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.about-competency-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-competency-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: var(--gc-blue);
}

.competency-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}

.about-process-section {
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
  border-radius: 12px;
}

.about-process-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.about-process-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gc-blue) 0%, var(--light-gc-blue) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.about-team-section {
  margin: 4rem 0;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.about-team-member {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.about-highlights-section {
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #e8f4f8 0%, #f8f9fa 100%);
  border-radius: 12px;
}

.about-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.highlight-icon {
  width: 32px;
  height: 32px;
  background: var(--gc-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
}

.highlight-icon-image {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-highlight-item p {
  margin: 0;
  line-height: 1.6;
  font-size: 16px;
}

/* ===== RISK MANAGEMENT PAGE REDESIGN ===== */

.risk-page-redesign {
  padding: 3rem 0;
}

.risk-intro-section {
  margin-bottom: 4rem;
}

.risk-intro-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.risk-services-section {
  margin: 4rem 0;
}

.risk-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.risk-service-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.risk-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--gc-blue);
}

.service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}

.risk-specialized-section {
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #e8f4f8 0%, #f8f9fa 100%);
  border-radius: 12px;
}

.risk-specialized-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.risk-specialized-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.risk-specialized-card:hover {
  transform: translateY(-4px);
}

.specialized-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--light-gc-blue);
  opacity: 0.3;
  line-height: 1;
}

.risk-global-section {
  margin: 4rem 0;
}

.risk-global-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.risk-global-text {
  padding: 2rem;
  background: #ffffff;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
}

.risk-global-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
}

.risk-stat-item {
  background: linear-gradient(135deg, var(--gc-blue) 0%, var(--light-gc-blue) 100%);
  color: white;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.3;
}

.risk-cta-section {
  margin: 4rem 0 2rem;
}

.risk-cta-card {
  background: linear-gradient(135deg, var(--gc-blue) 0%, var(--light-gc-blue) 100%);
  color: white;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.risk-cta-card h3 {
  color: white;
}

.risk-cta-card p {
  color: rgba(255, 255, 255, 0.95);
}

.risk-cta-card .gc_cta_button {
  background: white !important;
  color: var(--gc-blue) !important;
}

.risk-cta-card .gc_cta_button:hover {
  background: #f0f0f0 !important;
  transform: translateY(-2px);
}

/* ===== HOMEPAGE REDESIGN ===== */

.homepage-redesign {
  padding: 3rem 0;
}

/* Value Proposition Cards */
.home-value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.home-value-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--gc-blue);
}

.value-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}

/* Services Section */
.home-services-section {
  margin: 5rem 0;
}

.home-service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.home-service-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.home-service-featured {
  border: 3px solid var(--gc-blue);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gc-blue) 0%, var(--light-gc-blue) 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}

.service-features {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 15px;
  line-height: 1.5;
}

.service-feature-item:last-child {
  border-bottom: none;
}

.feature-check {
  width: 24px;
  height: 24px;
  background: var(--gc-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

/* Why Choose Us Section */
.home-why-section {
  margin: 5rem 0;
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, #e8f4f8 0%, #f8f9fa 100%);
  border-radius: 12px;
}

.home-why-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.home-why-text {
  background: #ffffff;
  border-radius: 10px;
  padding: 2.5rem;
  border: 2px solid #e0e0e0;
}

.home-why-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.home-stat-box {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-stat-box:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  flex-shrink: 0;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-content {
  flex: 1;
}

.stat-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gc-blue);
  margin-bottom: 0.5rem;
}

.stat-description {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}

/* Homepage CTA Section */
.home-cta-section {
  margin: 5rem 0 3rem;
}

.home-cta-card {
  background: linear-gradient(135deg, var(--gc-blue) 0%, var(--light-gc-blue) 100%);
  color: white;
  border-radius: 12px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.home-cta-card h2 {
  color: white;
}

.home-cta-card .gc_cta_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ===== COMPLETION BOND PAGE REDESIGN ===== */

.completion-bond-redesign {
  padding: 3rem 0;
}

/* Navigation Cards */
.cb-nav-section {
  margin-bottom: 4rem;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
  border-radius: 12px;
}

.cb-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.cb-nav-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.cb-nav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: var(--gc-blue);
  text-decoration: none;
}

.cb-nav-icon {
  font-size: 2rem;
  line-height: 1;
}

.cb-nav-icon-svg {
  width: 48px;
  height: 48px;
  color: var(--gc-blue);
  transition: transform 0.3s ease, color 0.3s ease;
}

.cb-nav-card:hover .cb-nav-icon-svg {
  transform: scale(1.1);
  color: var(--light-gc-blue);
}

.cb-nav-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--gc-blue);
  line-height: 1.3;
}

/* Content Sections */
.cb-content-section {
  margin: 4rem 0;
}

.cb-section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.cb-intro-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cb-why-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

/* Parties Grid */
.cb-parties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.cb-party-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cb-party-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.party-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gc-blue) 0%, var(--light-gc-blue) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.cb-note-card {
  background: #e8f4f8;
  border-left: 4px solid var(--gc-blue);
  border-radius: 6px;
  padding: 1.5rem;
  margin-top: 2rem;
}

/* Benefits Section */
.cb-benefits-section {
  margin: 5rem 0;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #e8f4f8 0%, #f8f9fa 100%);
  border-radius: 12px;
}

.cb-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.cb-benefit-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cb-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.cb-benefit-featured {
  border: 3px solid var(--gc-blue);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.benefit-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gc-blue) 0%, var(--light-gc-blue) 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.benefit-list {
  margin-top: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 15px;
  line-height: 1.6;
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-icon-small {
  width: 22px;
  height: 22px;
  background: var(--gc-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #e0e0e0;
}

/* Protection Grid (How It Works) */
.cb-protection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.cb-protection-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cb-protection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: var(--gc-blue);
}

.protection-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gc-green) 0%, var(--forest-green) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(0, 151, 63, 0.3);
}

/* Process Timeline */
.cb-process-section {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
  border-radius: 12px;
}

.cb-process-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.cb-process-step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.cb-process-step:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--gc-blue);
}

.process-step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gc-blue) 0%, var(--light-gc-blue) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(47, 78, 125, 0.3);
}

.process-step-content {
  flex: 1;
}

/* Miscellaneous Section */
.cb-misc-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.cb-misc-header {
  margin-bottom: 2rem;
}

.cb-misc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.cb-misc-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cb-misc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--gc-blue);
}

.cb-misc-card-wide {
  grid-column: span 2;
}

.misc-card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.cb-misc-cta {
  text-align: center;
  margin-top: 3rem;
}

/* FAQ Section Improvements */
.section-faq {
  padding: 4rem 0;
  background: #ffffff;
}

.accordion-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--gc-blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.accordion-item-trigger {
  cursor: pointer;
  padding: 1.5rem 2rem;
  transition: background 0.3s ease;
}

.accordion-item-trigger:hover {
  background: #f8f9fa;
}

.accordion-heading {
  font-size: 1.15rem !important;
  line-height: 1.5 !important;
  color: var(--gc-blue) !important;
  margin: 0 !important;
}

.accordion-item-content {
  padding: 0 2rem 1.5rem;
}

.accordion_paragraph p {
  font-size: 17px !important;
  line-height: 1.7 !important;
  margin-bottom: 1rem !important;
}

.faq_cta {
  margin-top: 1.5rem !important;
  display: inline-block;
}

/* Mobile responsiveness for Completion Bond page */
@media screen and (max-width: 991px) {
  .cb-nav-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  
  .cb-benefits-grid,
  .cb-protection-grid {
    grid-template-columns: 1fr;
  }
  
  .cb-misc-grid {
    grid-template-columns: 1fr;
  }
  
  .cb-misc-card-wide {
    grid-column: span 1;
  }
  
  .cb-misc-card-wide > div:first-of-type > div {
    grid-template-columns: 1fr !important;
  }
}

@media screen and (max-width: 767px) {
  .cb-nav-section,
  .cb-benefits-section {
    padding: 2rem 0;
  }
  
  /* Process section needs side padding on mobile for detailed content */
  .cb-process-section {
    padding: 2rem 0;
  }
  
  /* Increased padding for cards to prevent text touching edges */
  .cb-intro-card,
  .cb-why-card {
    padding: 2rem 1.5rem;
    margin-left: 0;
    margin-right: 0;
  }
  
  .cb-nav-card {
    padding: 1.5rem 1.25rem;
    margin-left: 0;
    margin-right: 0;
  }
  
  .cb-benefit-card {
    padding: 2rem 1.5rem;
    margin-left: 0;
    margin-right: 0;
  }
  
  .cb-protection-card {
    padding: 1.75rem 1.5rem;
    margin-left: 0;
    margin-right: 0;
  }
  
  .cb-misc-card {
    padding: 2rem 1.5rem;
    margin-left: 0;
    margin-right: 0;
  }
  
  .cb-party-card {
    padding: 1.75rem 1.5rem;
  }
  
  .cb-note-card {
    padding: 1.5rem 1.25rem;
  }
  
  .cb-parties-grid {
    grid-template-columns: 1fr;
  }
  
  .cb-process-step {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.5rem;
  }
  
  /* Process step content padding */
  .process-step-content {
    padding: 0.5rem 0.75rem;
  }
  
  /* Process section detailed content padding */
  .cb-process-section > h3,
  .cb-process-section > h4,
  .cb-process-section > p {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  
  .cb-process-section > ul,
  .cb-process-section > ol {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    padding-left: 1.5rem;
  }
  
  .cb-process-section li {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  
  /* Process timeline needs proper width on mobile */
  .cb-process-timeline {
    max-width: 100%;
    padding: 0 0.5rem;
  }
  
  /* Benefit list items need internal padding */
  .benefit-list {
    padding: 0 0.25rem;
  }
  
  .benefit-item {
    padding: 0.85rem 0.5rem;
  }
  
  /* Accordion adjustments for mobile */
  .accordion-item-trigger {
    padding: 1.25rem 1.25rem;
  }
  
  .accordion-item-content {
    padding: 0 1.25rem 1.5rem;
  }
  
  .accordion_paragraph {
    padding: 0 0.25rem;
  }
  
  /* List items in cards need proper spacing */
  .cb-intro-card ul,
  .cb-intro-card ol,
  .cb-why-card ul,
  .cb-why-card ol,
  .cb-misc-card ul,
  .cb-misc-card ol,
  .accordion_paragraph ul,
  .accordion_paragraph ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .cb-intro-card li,
  .cb-why-card li,
  .cb-misc-card li {
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
  }
}

/* Mobile responsiveness for Homepage */
@media screen and (max-width: 991px) {
  .home-service-cards {
    grid-template-columns: 1fr;
  }
  
  .home-why-content {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .home-value-props {
    grid-template-columns: 1fr;
  }
  
  .home-service-card {
    padding: 2rem 1.5rem;
  }
  
  .home-why-section {
    padding: 2rem 1.5rem;
  }
  
  .home-why-text {
    padding: 1.5rem;
  }
  
  .home-stat-box {
    flex-direction: column;
    text-align: center;
  }
  
  .home-cta-card {
    padding: 2.5rem 1.5rem;
  }
  
  .home-cta-card h2 {
    font-size: 1.5rem;
  }
}

/* Mobile responsiveness for About and Risk pages */
@media screen and (max-width: 991px) {
  .about-competencies-grid,
  .about-team-grid,
  .risk-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .risk-global-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .about-intro-card,
  .risk-intro-card {
    padding: 2rem 1.5rem;
  }
  
  .about-process-section,
  .about-highlights-section,
  .risk-specialized-section {
    padding: 2rem 1.5rem;
  }
  
  .about-competencies-grid,
  .about-process-cards,
  .about-team-grid,
  .risk-services-grid,
  .risk-specialized-cards {
    grid-template-columns: 1fr;
  }
  
  .risk-global-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .risk-cta-card {
    padding: 2rem 1.5rem;
  }
}

/* ===== BETTER FOCUS STATES FOR ACCESSIBILITY ===== */

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--gc-blue);
  outline-offset: 2px;
}

/* ===== FOOTER LAYOUT OPTIMIZATION ===== */

.footer_legal_advice_div {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.footer_legal_text_block {
  font-size: 14px;
  line-height: 1.5;
}
