/* ==========================================================================
   CTA Section - Call to Action
   ========================================================================== */

:where(.sec-011-cta) {
  padding: var(--wp--preset--spacing--sm0) 0;
  background: linear-gradient(
    135deg,
    var(--wp--preset--color--gray-50) 0%,
    var(--wp--preset--color--white) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Background Pattern */
:where(.sec-011-cta::before) {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(118, 197, 118, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(74, 123, 167, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Container */
:where(.sec-011-cta__container) {
  max-width: var(--wp--custom--breakpoint--lg);
  margin: 0 auto;
  padding: 0 var(--wp--preset--spacing--20);
  position: relative;
  z-index: 1;
}

/* Inner Wrapper */
:where(.sec-011-cta__inner) {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--wp--preset--spacing--lg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.08);
  padding: var(--wp--preset--spacing--xs);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wp--preset--spacing--xs);
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
:where(.sec-011-cta__bg-decoration) {
  position: absolute;
  width: 100%;
  height: 30rem;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
/* Decorative Border */
:where(.sec-011-cta__inner::before) {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--wp--preset--color--primary-500),
    var(--wp--preset--color--primary-700),
    var(--wp--preset--color--primary-500)
  );
}

/* Left Content - Map & Info */
:where(.sec-011-cta__left) {
  display: grid;
  flex: 1;
  grid-template-columns: 1fr;
  grid-template-rows: subgrid;
  grid-row: span 2;

  gap: var(--wp--preset--spacing--base);
}

/* Map Container */
:where(.sec-011-cta__map) {
  position: relative;
  border-radius: var(--wp--preset--spacing--sm);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 300px;
  background: var(--wp--preset--color--gray-100);
}

:where(.sec-011-cta__map iframe) {
  width: 100%;
  height: 100%;
  border: none;
}

/* Map Overlay for Loading */
:where(.sec-011-cta__map-loading) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wp--preset--color--gray-100);
  color: var(--wp--preset--color--gray-500);
  font-size: var(--wp--preset--font-size--sm);
}

/* Info Grid */

:where(.sec-011-cta__info-wrapper) {
  display: grid;
  align-items: center;
}
:where(.sec-011-cta__info) {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--wp--preset--spacing--20) var(--wp--preset--spacing--xs);
  align-items: center;
}

/* Info Label */
:where(.sec-011-cta__label) {
  font-size: var(--wp--preset--font-size--sm);
  font-weight: var(--wp--custom--font-weight--semibold);
  color: var(--wp--preset--color--primary-700);
  min-width: 80px;
}

/* Info Value */
:where(.sec-011-cta__value) {
  font-size: var(--wp--preset--font-size--base);
  color: var(--wp--preset--color--text);
  line-height: 1.6;
}

/* Address Link */
:where(.sec-011-cta__address-link) {
  color: var(--wp--preset--color--text);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

:where(.sec-011-cta__address-link:hover) {
  color: var(--wp--preset--color--primary-700);
}

/* Right Content - Contact & Hours */
:where(.sec-011-cta__right) {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: var(--wp--preset--spacing--2-xl);
}
:where(.sec-011-cta__card) {
  display: grid;
  place-content: center;
  background: var(--wp--preset--color--white);
  border-radius: var(--wp--preset--spacing--sm);
}
:where(.sec-011-cta__card .contact-cta) {
}

/* Contact Section */
:where(.sec-011-cta__contact) {
  text-align: center;
}

/* Contact Title */
:where(.sec-011-cta__title) {
  font-size: var(--wp--preset--font-size--base);
  color: var(--wp--preset--color--gray-600);
  margin-bottom: var(--wp--preset--spacing--20);
  font-weight: var(--wp--custom--font-weight--medium);
}

/* Phone Number */
:where(.sec-011-cta__phone) {
  text-align: center;
  margin-bottom: var(--wp--preset--spacing--xs);
}

:where(.sec-011-cta__phone-label) {
  font-size: var(--wp--preset--font-size--sm);
  color: var(--wp--preset--color--gray-600);
  font-weight: var(--wp--custom--font-weight--medium);
}

:where(.sec-011-cta__phone-number) {
  font-size: var(--wp--preset--font-size--3-xl);
  font-weight: var(--wp--custom--font-weight--bold);
  color: var(--wp--preset--color--primary-700);
  letter-spacing: 0.02em;
  font-family: var(--wp--preset--font-family--english);
}

/* CTA Button - using c-button component */
:where(.sec-011-cta__contact .c-button) {
  margin-top: var(--wp--preset--spacing--lg);
}

/* Hours Table Container */
:where(.sec-011-cta__hours) {
  background: var(--wp--preset--color--gray-50);
  border-radius: var(--wp--preset--spacing--sm);
}

/* Context-specific overrides are in hours-table.css */
