/* ==========================================================================
   PREMIUM.CSS - Dorys Janitorial Cleaning Services
   Complete Premium Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables - Premium Theme
   -------------------------------------------------------------------------- */
:root {
  --premium-blue: #2b70e4;
  --premium-blue-dark: #1e5bb8;
  --premium-blue-light: rgba(43, 112, 228, 0.08);
  --premium-blue-lighter: rgba(43, 112, 228, 0.04);
  --premium-dark: #1a1a2e;
  --premium-dark-secondary: #16213e;
  --premium-text: #334155;
  --premium-text-light: #64748b;
  --premium-text-white: #ffffff;
  --premium-bg-light: #f8fafc;
  --premium-bg-lighter: #f1f5f9;
  --premium-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --premium-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --premium-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --premium-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --premium-radius-sm: 8px;
  --premium-radius-md: 12px;
  --premium-radius-lg: 16px;
  --premium-radius-xl: 24px;
}

/* --------------------------------------------------------------------------
   Section Backgrounds - Visual Depth
   -------------------------------------------------------------------------- */
.section--light {
  background-color: var(--premium-bg-light);
}

.section--gradient {
  background: linear-gradient(180deg, #ffffff 0%, var(--premium-bg-light) 100%);
}

.section--gradient-blue {
  background: linear-gradient(135deg, var(--premium-blue-lighter) 0%, var(--premium-blue-light) 100%);
}

.section--premium-bg {
  background: linear-gradient(180deg, #ffffff 0%, var(--premium-bg-lighter) 50%, #ffffff 100%);
  position: relative;
}

.section--pattern {
  position: relative;
  background-color: var(--premium-bg-light);
}

.section--pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232b70e4' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.section--pattern > .container {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Section Headers - Premium Style
   -------------------------------------------------------------------------- */
.section__header {
  margin-bottom: 3rem;
}

.section__header--center {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section__badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--premium-blue-light) 0%, rgba(43, 112, 228, 0.12) 100%);
  color: var(--premium-blue);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--premium-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__description {
  font-size: 1.0625rem;
  color: var(--premium-text-light);
  line-height: 1.7;
  max-width: 600px;
}

.section__header--center .section__description {
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   Services Grid - 5 Items Side by Side
   -------------------------------------------------------------------------- */
.services-grid--5items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Large Tablet: 3 columns */
@media (max-width: 1200px) {
  .services-grid--5items {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* Tablet: 2 columns */
@media (max-width: 768px) {
  .services-grid--5items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Mobile: 1 column */
@media (max-width: 480px) {
  .services-grid--5items {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* --------------------------------------------------------------------------
   Premium Service Cards
   -------------------------------------------------------------------------- */
.service-card--premium {
  background: #ffffff;
  border-radius: var(--premium-radius-lg);
  overflow: hidden;
  box-shadow: var(--premium-shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card--premium:hover {
  transform: translateY(-6px);
  box-shadow: var(--premium-shadow-xl);
}

.service-card--premium .service-card__image {
  position: relative;
  height: 140px;
  overflow: hidden;
}

@media (min-width: 1201px) {
  .service-card--premium .service-card__image {
    height: 120px;
  }
}

.service-card--premium .service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card--premium:hover .service-card__image img {
  transform: scale(1.08);
}

.service-card--premium .service-card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (min-width: 1201px) {
  .service-card--premium .service-card__body {
    padding: 0.875rem;
  }
}

.service-card--premium .service-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--premium-dark);
  margin-bottom: 0.5rem;
}

@media (min-width: 769px) and (max-width: 1200px) {
  .service-card--premium .service-card__title {
    font-size: 1.125rem;
  }
}

.service-card--premium .service-card__text {
  font-size: 0.8125rem;
  color: var(--premium-text-light);
  line-height: 1.5;
  margin-bottom: 0.875rem;
  flex: 1;
}

@media (min-width: 769px) and (max-width: 1200px) {
  .service-card--premium .service-card__text {
    font-size: 0.875rem;
  }
}

.service-card--premium .service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--premium-blue);
  font-weight: 600;
  font-size: 0.8125rem;
  text-decoration: none;
  transition: gap 0.3s ease;
}

@media (min-width: 769px) and (max-width: 1200px) {
  .service-card--premium .service-card__link {
    font-size: 0.875rem;
  }
}

.service-card--premium .service-card__link:hover {
  gap: 0.625rem;
}

.service-card--premium .service-card__link svg {
  width: 16px;
  height: 16px;
}

/* --------------------------------------------------------------------------
   Stats Section
   -------------------------------------------------------------------------- */
.stats-section {
  background: linear-gradient(135deg, var(--premium-dark) 0%, var(--premium-dark-secondary) 100%);
  padding: 4rem 0;
}

.stats-grid--premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card--premium {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat-card--premium .stat__number {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card--premium .stat__label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

@media (max-width: 767px) {
  .stats-section {
    padding: 3rem 0;
  }

  .stats-grid--premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-card--premium .stat__number {
    font-size: 2.25rem;
  }

  .stat-card--premium .stat__label {
    font-size: 0.8125rem;
  }
}

@media (max-width: 400px) {
  .stats-grid--premium {
    gap: 1rem;
  }

  .stat-card--premium {
    padding: 1rem 0.5rem;
  }

  .stat-card--premium .stat__number {
    font-size: 1.75rem;
  }
}

/* --------------------------------------------------------------------------
   Trust Grid - Why Choose Us Cards
   -------------------------------------------------------------------------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--premium-radius-lg);
  text-align: center;
  box-shadow: var(--premium-shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--premium-shadow-md);
}

.trust-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--premium-blue-light) 0%, rgba(43, 112, 228, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.trust-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--premium-blue);
}

.trust-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--premium-dark);
  margin-bottom: 0.5rem;
}

.trust-card__text {
  font-size: 0.875rem;
  color: var(--premium-text-light);
  line-height: 1.5;
}

@media (max-width: 991px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trust-card {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 1.25rem;
    gap: 1rem;
  }

  .trust-card__icon {
    margin: 0;
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .trust-card__icon svg {
    width: 24px;
    height: 24px;
  }

  .trust-card__content {
    flex: 1;
  }

  .trust-card__title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .trust-card__text {
    font-size: 0.8125rem;
  }
}

/* --------------------------------------------------------------------------
   Video + Text Section Side by Side
   -------------------------------------------------------------------------- */
.video-text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.video-text-section--reverse {
  direction: rtl;
}

.video-text-section--reverse > * {
  direction: ltr;
}

.video-text-section__video {
  border-radius: var(--premium-radius-xl);
  overflow: hidden;
  box-shadow: var(--premium-shadow-lg);
}

.video-text-section__video .video-embed {
  border-radius: var(--premium-radius-xl);
  overflow: hidden;
}

.video-text-section__badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--premium-blue-light);
  color: var(--premium-blue);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.video-text-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--premium-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.video-text-section__text {
  font-size: 1rem;
  color: var(--premium-text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.video-text-section__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.video-text-section__list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: var(--premium-text);
  line-height: 1.5;
}

.video-text-section__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232b70e4'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

@media (max-width: 991px) {
  .video-text-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .video-text-section--reverse {
    direction: ltr;
  }

  .video-text-section__video {
    order: -1;
  }
}

@media (max-width: 600px) {
  .video-text-section {
    gap: 2rem;
  }

  .video-text-section__title {
    font-size: 1.375rem;
  }

  .video-text-section__text {
    font-size: 0.9375rem;
  }

  .video-text-section__list li {
    font-size: 0.875rem;
    padding-left: 1.75rem;
  }

  .video-text-section__list li::before {
    width: 18px;
    height: 18px;
  }
}

/* --------------------------------------------------------------------------
   Cities / Service Areas
   -------------------------------------------------------------------------- */
.cities-highlight {
  text-align: center;
}

.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.city-tag {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: #ffffff;
  color: var(--premium-text);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--premium-shadow-sm);
  transition: all 0.25s ease;
}

.city-tag:hover {
  background: var(--premium-blue);
  color: #ffffff;
  border-color: var(--premium-blue);
  transform: translateY(-2px);
  box-shadow: var(--premium-shadow-md);
}

.cities-highlight__cta {
  margin-top: 2.5rem;
}

@media (max-width: 600px) {
  .cities-grid {
    gap: 0.5rem;
  }

  .city-tag {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
}

/* --------------------------------------------------------------------------
   Reviews Widget Container
   -------------------------------------------------------------------------- */
.reviews-widget-container {
  background: #ffffff;
  border-radius: var(--premium-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--premium-shadow-md);
  max-width: 1000px;
  margin: 0 auto;
}

.reviews-widget-container iframe {
  min-height: 400px;
}

@media (max-width: 600px) {
  .reviews-widget-container {
    padding: 1rem;
    border-radius: var(--premium-radius-md);
  }
}

/* --------------------------------------------------------------------------
   Final CTA Section
   -------------------------------------------------------------------------- */
.section--cta {
  background: linear-gradient(135deg, var(--premium-blue) 0%, var(--premium-blue-dark) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section--cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.section--cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.cta-box--large {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-box--large .cta-box__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-box--large .cta-box__text {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 600px) {
  .section--cta {
    padding: 3.5rem 0;
  }

  .cta-box--large .cta-box__title {
    font-size: 1.5rem;
  }

  .cta-box--large .cta-box__text {
    font-size: 0.9375rem;
  }

  .cta-box__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-box__actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* --------------------------------------------------------------------------
   Button Variants
   -------------------------------------------------------------------------- */
.btn--white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #ffffff;
  color: var(--premium-dark);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #ffffff;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--white:hover {
  background: transparent;
  color: #ffffff;
}

.btn--outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.btn--outline-light svg,
.btn--white svg {
  width: 20px;
  height: 20px;
}

/* --------------------------------------------------------------------------
   Hero Badge for Location Pages
   -------------------------------------------------------------------------- */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero__badge-icon {
  width: 18px;
  height: 18px;
}

/* --------------------------------------------------------------------------
   Mobile Responsive Overrides
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .section {
    padding: 3rem 0;
  }

  .section__header {
    margin-bottom: 2rem;
  }

  .section__badge {
    font-size: 0.6875rem;
    padding: 0.4rem 1rem;
    letter-spacing: 1.5px;
  }

  /* Service cards mobile */
  .service-card--premium .service-card__image {
    height: 180px;
  }

  .service-card--premium .service-card__body {
    padding: 1.25rem;
  }

  .service-card--premium .service-card__title {
    font-size: 1.125rem;
  }

  .service-card--premium .service-card__text {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2.5rem 0;
  }

  .service-card--premium .service-card__image {
    height: 160px;
  }

  .service-card--premium .service-card__body {
    padding: 1rem;
  }
}

/* --------------------------------------------------------------------------
   Utility - Text Center
   -------------------------------------------------------------------------- */
.text-center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   Container Padding Fix
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* --------------------------------------------------------------------------
   FAQ / Accordion
   -------------------------------------------------------------------------- */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion__item {
  background: #ffffff;
  border-radius: var(--premium-radius-md);
  margin-bottom: 0.75rem;
  box-shadow: var(--premium-shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.accordion__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--premium-dark);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.accordion__header:hover {
  background: var(--premium-blue-lighter);
}

.accordion__icon {
  width: 24px;
  height: 24px;
  color: var(--premium-blue);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion__item.active .accordion__icon {
  transform: rotate(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion__item.active .accordion__content {
  max-height: 500px;
}

.accordion__body {
  padding: 0 1.5rem 1.5rem;
  color: var(--premium-text-light);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* --------------------------------------------------------------------------
   Map Embed
   -------------------------------------------------------------------------- */
.map-embed {
  border-radius: var(--premium-radius-lg);
  overflow: hidden;
  box-shadow: var(--premium-shadow-md);
}

.map-embed iframe {
  display: block;
  width: 100%;
}

/* --------------------------------------------------------------------------
   Form Section
   -------------------------------------------------------------------------- */
.form-contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 991px) {
  .form-contact-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --------------------------------------------------------------------------
   Contact Info on Light Background (Fix for white-on-white)
   -------------------------------------------------------------------------- */
.section--alt,
.section--light,
.section--gradient,
.section--premium-bg {
  /* Ensure text is dark on light backgrounds */
}

/* Override footer contact styles when used outside footer */
main .footer__contact,
.section .footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

main .footer__contact-item,
.section .footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border-radius: var(--premium-radius-md);
  box-shadow: var(--premium-shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--premium-text);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

main .footer__contact-item:hover,
.section .footer__contact-item:hover {
  box-shadow: var(--premium-shadow-md);
  transform: translateY(-2px);
}

main .footer__contact-icon,
.section .footer__contact-icon {
  width: 24px;
  height: 24px;
  color: var(--premium-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

main .footer__contact-content,
.section .footer__contact-content {
  flex: 1;
}

main .footer__contact-label,
.section .footer__contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--premium-text-light);
  margin-bottom: 0.25rem;
}

main .footer__contact-value,
.section .footer__contact-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--premium-dark);
  text-decoration: none;
  display: block;
}

main .footer__contact-value a,
.section .footer__contact-value a {
  color: var(--premium-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

main .footer__contact-value a:hover,
.section .footer__contact-value a:hover {
  color: var(--premium-blue);
}

/* Two Column Layout for Contact Section */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.two-col h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--premium-dark);
  line-height: 1.2;
}

.two-col .lead {
  font-size: 1.0625rem;
  color: var(--premium-text-light);
  line-height: 1.7;
}

.mb-lg {
  margin-bottom: 1rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Form Embed Container */
.form-embed {
  background: #ffffff;
  border-radius: var(--premium-radius-lg);
  box-shadow: var(--premium-shadow-lg);
  overflow: hidden;
  min-height: 500px;
}

.form-embed iframe {
  min-height: 608px;
}

/* --------------------------------------------------------------------------
   Breadcrumb Navigation
   -------------------------------------------------------------------------- */
.breadcrumb {
  background: var(--premium-bg-light);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--premium-text-light);
}

.breadcrumb__item:not(:last-child)::after {
  content: '/';
  color: rgba(0, 0, 0, 0.25);
  margin-left: 0.25rem;
}

.breadcrumb__link {
  color: var(--premium-text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb__link:hover {
  color: var(--premium-blue);
}

.breadcrumb__item:last-child {
  color: var(--premium-dark);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Inner Page Hero
   -------------------------------------------------------------------------- */
.hero--inner {
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero--inner .hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero--inner .hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero--inner .hero__overlay--gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.85) 0%, rgba(26, 26, 46, 0.75) 100%);
}

.hero--inner .container {
  position: relative;
  z-index: 1;
}

.hero__content--center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0;
}

.hero--inner .hero__title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero--inner .hero__title span {
  color: #ffffff;
  display: block;
}

.hero--inner .hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero--inner .hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 600px) {
  .hero--inner {
    min-height: 350px;
  }

  .hero__content--center {
    padding: 2rem 0;
  }

  .hero--inner .hero__subtitle {
    font-size: 1rem;
  }

  .hero--inner .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero--inner .hero__ctas .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* --------------------------------------------------------------------------
   Section Alt Background
   -------------------------------------------------------------------------- */
.section--alt {
  background: var(--premium-bg-light);
}

/* --------------------------------------------------------------------------
   Skip Link for Accessibility
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2rem;
  background: var(--premium-blue);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* --------------------------------------------------------------------------
   Global Typography Fixes
   -------------------------------------------------------------------------- */
.section__subtitle {
  font-size: 1.0625rem;
  color: var(--premium-text-light);
  line-height: 1.6;
  max-width: 600px;
  margin-top: 0.5rem;
}

.section__header--center .section__subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   Desktop Navigation Fixes
   -------------------------------------------------------------------------- */
@media (min-width: 992px) {
  .header__nav {
    display: flex !important;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .nav-item {
    position: relative;
  }

  .nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    color: var(--premium-dark);
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .nav-link:hover {
    background: rgba(43, 112, 228, 0.05);
    color: var(--premium-blue);
  }

  .nav-link__icon {
    width: 12px;
    height: 12px;
    transition: transform 0.2s ease;
  }

  .nav-item:hover .nav-link__icon {
    transform: rotate(180deg);
  }

  /* Dropdown - Desktop */
  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
  }

  .nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-dropdown__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1rem;
    color: var(--premium-text);
    font-size: 0.9375rem;
    border-radius: 8px;
    transition: background 0.2s ease;
  }

  .nav-dropdown__link:hover {
    background: rgba(43, 112, 228, 0.06);
    color: var(--premium-blue);
  }

  .nav-dropdown__icon {
    width: 20px;
    height: 20px;
    color: var(--premium-blue);
    flex-shrink: 0;
  }

  /* Mega Dropdown */
  .nav-dropdown--mega {
    min-width: 500px;
    padding: 1rem;
  }

  .nav-dropdown__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
  }

  .nav-dropdown__title {
    grid-column: 1 / -1;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--premium-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 0.5rem;
  }

  .header__toggle {
    display: none !important;
  }

  .header__overlay {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   Mobile Menu Improvements
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding: 5rem 1.5rem 2rem;
  }

  .header__nav.is-open {
    right: 0;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    font-size: 1rem;
    color: var(--premium-dark);
  }

  .nav-link__icon {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
  }

  .nav-item.is-open .nav-link__icon {
    transform: rotate(180deg);
  }

  /* Dropdown - Mobile */
  .nav-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: none;
    background: var(--premium-bg-light);
    margin: 0 -1.5rem;
    padding: 0.5rem 1.5rem;
    box-shadow: none;
    border-radius: 0;
    min-width: 100% !important;
  }

  .nav-item.is-open .nav-dropdown {
    display: block;
  }

  .nav-dropdown__link {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 0.9375rem;
  }

  .nav-dropdown__icon {
    display: none;
  }

  /* Mega Dropdown - Mobile */
  .nav-dropdown--mega {
    min-width: 100% !important;
    padding: 0.5rem 1.5rem;
  }

  .nav-dropdown__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .nav-dropdown__title {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--premium-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 0 0.5rem;
    border-bottom: none;
    margin-bottom: 0;
  }

  .header__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }

  .header__overlay.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .header__toggle {
    display: flex !important;
    z-index: 1001;
  }

  .hide-mobile {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   Header Toggle Button
   -------------------------------------------------------------------------- */
.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header__toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.header__toggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--premium-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__toggle.is-active .header__toggle-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle.is-active .header__toggle-icon span:nth-child(2) {
  opacity: 0;
}

.header__toggle.is-active .header__toggle-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Back to Top Button
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--premium-blue);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 100;
  box-shadow: var(--premium-shadow-md);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--premium-blue-dark);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 600px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* --------------------------------------------------------------------------
   Generic Card Styling
   -------------------------------------------------------------------------- */
.card {
  background: #ffffff;
  border-radius: var(--premium-radius-lg);
  box-shadow: var(--premium-shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--premium-shadow-md);
}

/* Service Card in Grid */
.service-card {
  padding: 2rem;
  text-align: center;
}

.service-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--premium-blue-light) 0%, rgba(43, 112, 228, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--premium-blue);
}

.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--premium-dark);
  margin-bottom: 0.75rem;
}

.service-card__text {
  font-size: 0.9375rem;
  color: var(--premium-text-light);
  line-height: 1.6;
}

/* Stats Block */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: var(--premium-radius-lg);
  box-shadow: var(--premium-shadow-md);
  text-align: center;
}

.stat__value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--premium-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--premium-text-light);
  font-weight: 500;
}

@media (max-width: 600px) {
  .stats {
    gap: 1rem;
  }

  .stat {
    padding: 1rem;
  }

  .stat__value {
    font-size: 2rem;
  }
}

/* Button Group */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-group--center {
  justify-content: center;
}

@media (max-width: 480px) {
  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-group .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* --------------------------------------------------------------------------
   Grid Improvements
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}
