/* ==============================================
   HERNANDEZ CONSTRUTORA — styles.css
   ============================================== */

/* 1. FONTS
   ============================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&family=Noto+Serif:ital,wght@0,700;1,400;1,700&family=Roboto:wght@400;700&family=Open+Sans:wght@600&display=swap');

/* 2. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================== */
:root {
  /* Colors */
  --clr-primary:    #002969; /* Navy — header CTA, copyright bar        */
  --clr-navy:       #022442; /* Dark navy — why-section bg, card text   */
  --clr-gold:       #d1a044; /* Gold — accent lines, CTAs, icon borders */
  --clr-bg:         #f9f9f9; /* Light page background                   */
  --clr-white:      #ffffff;
  --clr-text-dark:  #2d2b28; /* Main body text                          */
  --clr-text-mid:   #2a2826;
  --clr-text-gray:  #5a5a5a; /* Muted / footer text                     */
  --clr-separator:  rgba(45, 43, 40, 0.28);
  --clr-line-light: #f5f3f0; /* Spec dividers                           */
  --clr-email:      #1396e2;

  /* Button tokens */
  --btn-primary-bg:     var(--clr-primary);
  --btn-primary-text:   var(--clr-white);
  --btn-primary-border: var(--clr-primary);
  --btn-gold-bg:        var(--clr-gold);
  --btn-gold-text:      var(--clr-text-dark);
  --btn-gold-border:    var(--clr-gold);
  --btn-surface-bg:     var(--clr-white);
  --btn-surface-text:   var(--clr-primary);
  --btn-surface-border: var(--clr-primary);

  /* Typography */
  --font-sans:   'Noto Sans', sans-serif;
  --font-serif:  'Noto Serif', Georgia, serif;
  --font-roboto: 'Roboto', sans-serif;
  --font-open:   'Open Sans', sans-serif;

  /* Layout */
  --container-max: 1390px;
  --container-pad: clamp(20px, 4vw, 40px);
  --header-h:      77px;

  /* Decoration */
  --radius-sm:      4px;
  --radius-md:      12px;
  --shadow-header:  0px 1px 4px rgba(0, 0, 0, 0.05);
  --shadow-heavy:   0 4px 20px rgba(0, 0, 0, 0.12);

  /* Motion */
  --tr: 0.3s ease;
}

/* 3. RESET
   ============================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--clr-bg);
  color: var(--clr-text-dark);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul  { list-style: none; }
a   { color: inherit; text-decoration: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

address { font-style: normal; }

iframe { border: none; display: block; }

/* 4. REUSABLE TYPOGRAPHY CLASSES
   ============================================== */
.t-section-heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.24;
  color: var(--clr-text-dark);
  text-align: center;
}

.t-section-subtext {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.1vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--clr-text-dark);
  text-align: center;
}

/* 5. LAYOUT UTILITIES
   ============================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* 6. BUTTONS
   ============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity var(--tr), transform var(--tr), box-shadow var(--tr);
  text-decoration: none;
  border: none;
  letter-spacing: 0.01em;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: 1px solid var(--btn-primary-border);
  font-family: var(--font-open);
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.btn--gold {
  background-color: var(--btn-gold-bg);
  color: var(--btn-gold-text);
  border: 1px solid var(--btn-gold-border);
  font-family: var(--font-sans);
  font-weight: 800;
}

/* 7. HEADER
   ============================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--clr-white);
  border-bottom: 1px solid var(--clr-separator);
  box-shadow: var(--shadow-header);
  height: var(--header-h);
  transition: box-shadow var(--tr);
}

.header.scrolled {
  box-shadow: var(--shadow-heavy);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 45px;
  width: auto;
  transition: opacity var(--tr);
}

.header__logo:hover img {
  opacity: 0.8;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--clr-text-mid);
  transition: color var(--tr);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--clr-gold);
  transform: scaleX(0);
  transition: transform var(--tr);
}

.nav-link:hover { color: var(--clr-gold); }
.nav-link:hover::after { transform: scaleX(1); }

.header__cta {
  padding: 9px 20px;
  height: 38px;
}

.header__cta img {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--clr-text-dark);
  transition: transform var(--tr), opacity var(--tr);
}

.header.nav-open .header__hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header.nav-open .header__hamburger span:nth-child(2) {
  opacity: 0;
}
.header.nav-open .header__hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 8. HERO
   ============================================== */
.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  background-color: #10294a;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -6% 0;
  background-image: url('./images/Banner_Home_1.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background: linear-gradient(
    to right,
    rgba(2, 20, 50, 0.82) 0%,
    rgba(2, 20, 50, 0.60) 50%,
    rgba(2, 20, 50, 0.15) 100%
  ); */
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  color: var(--clr-gold);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-sans);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.24;
  color: var(--clr-white);
  margin-bottom: 32px;
}

.hero__desc-group {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 36px;
}

.hero__accent-line {
  width: 2px;
  min-height: 72px;
  background-color: var(--clr-gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.hero__desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--clr-white);
}

/* 9. PROPERTY SECTION
   ============================================== */
.property-section {
  background-color: var(--clr-bg);
  padding-bottom: 80px;
}

.section-spacer {
  height: 92px;
}

.section-spacer--sm {
  height: 48px;
}

.property-section .t-section-heading {
  margin-bottom: 48px;
}

.property-card {
  display: flex;
  align-items: flex-start;
  gap: clamp(32px, 8vw, 196px);
  transition: opacity var(--tr);
}

.property-card__image {
  flex-shrink: 0;
  width: 46%;
  max-width: 625px;
  will-change: transform;
}

.property-card__image img {
  width: 100%;
  height: 756px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.5s ease;
}

.property-card__image:hover img {
  transform: scale(1.015);
}

.property-card__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.property-card__tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.24;
  color: var(--clr-navy);
}

.property-card__name {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.24;
  color: var(--clr-navy);
}

.property-card__location {
  display: flex;
  align-items: center;
  gap: 7px;
}

.property-card__location span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  color: var(--clr-navy);
}

.property-card__location img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Specs */
.property-card__specs {
  display: flex;
  flex-direction: column;
}

.spec-divider {
  height: 2px;
  background-color: var(--clr-line-light);
}

.spec-divider--gold {
  background-color: var(--clr-gold);
}

.spec-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
}

.spec-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.spec-icon--bordered {
  border: 2.5px solid var(--clr-gold);
  border-radius: 3px;
  padding: 2px;
}

.spec-icon--bg {
  background-color: var(--clr-gold);
  border-radius: 3px;
  padding: 4px;
}

.spec-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* White icons on gold background */
.spec-icon--bg img {
  filter: brightness(0) invert(1);
}

.spec-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--clr-navy);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.3;
}

.spec-value {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 800;
  color: var(--clr-navy);
  line-height: 1.3;
}

.prop-cta {
  width: 100%;
  margin-top: 8px;
}

.property-card__pagination {
  display: flex;
  gap: 12px;
  align-items: center;
}

.pagination-btn {
  width: 47px;
  height: 47px;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--tr), opacity var(--tr);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-btn:hover {
  transform: scale(1.1);
  opacity: 0.85;
}

.pagination-btn:disabled {
  cursor: default;
  opacity: 0.35;
  transform: none;
}

.pagination-btn:disabled:hover {
  opacity: 0.35;
  transform: none;
}

.pagination-btn img {
  width: 47px;
  height: 47px;
  object-fit: contain;
}

/* 10. LOCATIONS SECTION
   ============================================== */
.locations-section {
  background-color: var(--clr-bg);
  padding-bottom: 0;
}

.locations-section .t-section-heading {
  margin-bottom: 20px;
}

.locations-section .t-section-subtext {
  margin-bottom: 40px;
}

.locations-tabs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  justify-content: center;
}

.location-tab {
  --tab-bg: var(--btn-primary-bg);
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.2vw, 22px);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--clr-white);
  color: var(--btn-primary-text);
  background-color: var(--tab-bg);
  cursor: pointer;
  transition: background-color var(--tr), color var(--tr), box-shadow var(--tr);
  box-shadow: 0 2px 10px rgba(0, 41, 105, 0.08);
}

.location-tab:nth-child(1) {
  --tab-bg: #486997;
}

.location-tab:nth-child(2) {
  --tab-bg: #d1a044;
}

.location-tab:nth-child(3) {
  --tab-bg: #8d8b84;
}

.location-tab:nth-child(4) {
  --tab-bg: #d07f64;
}

.location-tab:hover {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  box-shadow: 0 4px 12px rgba(0, 41, 105, 0.25);
}

.location-tab.active {
  background-color: var(--tab-bg);
  color: var(--btn-primary-text);
}

.map-container {
  width: 100%;
  max-width: 980px;
  height: 560px;
  margin: 0 auto 120px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--clr-primary);
  box-shadow: 0 10px 24px rgba(0, 41, 105, 0.12);
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

/* 11. WHY SCHEDULE SECTION
   ============================================== */
.why-section {
  background-color: var(--clr-navy);
  padding: 100px 0;
}

.why-section__heading {
  margin-bottom: 62px;
}

.why-section .t-section-heading {
  color: var(--clr-white);
  margin-bottom: 24px;
}

.why-section__subtext {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.1vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--clr-white);
  text-align: center;
}

.why-section__subtext + .why-section__subtext {
  margin-top: 8px;
}

.why-section__features {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 60px;
}

.feature-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  max-width: 300px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.feature-col:hover .feature-icon {
  transform: translateY(-4px) scale(1.05);
}

.feature-title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--clr-white);
}

.feature-desc {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--clr-white);
  opacity: 0.85;
}

.why-cta {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* 12. SCHEDULING SECTION
   ============================================== */
.schedule-section {
  padding: 104px 0 120px;
  background:
    radial-gradient(circle at top left, rgba(209, 160, 68, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f3eb 100%);
}

.schedule-section__intro {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.schedule-section__eyebrow {
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-primary);
}

.schedule-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.schedule-panel__header {
  margin-bottom: 16px;
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text-dark);
}

.calendar-card {
  max-width: 540px;
  padding: 20px 22px 18px;
  background-color: var(--clr-white);
  border: 1.5px solid rgba(209, 160, 68, 0.95);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(2, 36, 66, 0.08);
}

.calendar-card__nav {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--clr-text-dark);
}

.calendar-card__nav strong {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
}

.calendar-nav-btn {
  width: 32px;
  height: 32px;
  margin: 0 auto;
  border-radius: 999px;
  color: var(--clr-text-dark);
  font-size: 26px;
  line-height: 1;
  transition: background-color var(--tr), color var(--tr);
}

.calendar-nav-btn:hover {
  background-color: rgba(0, 41, 105, 0.08);
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-weekdays {
  margin-bottom: 10px;
}

.calendar-weekdays span {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: rgba(45, 43, 40, 0.58);
  text-transform: uppercase;
}

.calendar-day {
  height: 44px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-text-dark);
  transition: background-color var(--tr), border-color var(--tr), color var(--tr), transform var(--tr);
}

.calendar-day:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(209, 160, 68, 0.7);
  background-color: rgba(209, 160, 68, 0.12);
}

.calendar-day.is-selected {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
}

.calendar-day.is-muted {
  color: rgba(45, 43, 40, 0.28);
}

.calendar-day:disabled {
  cursor: default;
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  max-width: 480px;
}

.time-slot {
  min-width: 102px;
  padding: 12px 18px;
  border: 1.5px solid rgba(209, 160, 68, 0.95);
  border-radius: 999px;
  background-color: var(--clr-white);
  color: var(--clr-text-dark);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  transition: border-color var(--tr), background-color var(--tr), color var(--tr), transform var(--tr);
}

.time-slot.is-selected {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
}

.time-slot:disabled,
.time-slot.is-unavailable {
  cursor: not-allowed;
  border-color: rgba(141, 139, 132, 0.45);
  background-color: rgba(141, 139, 132, 0.12);
  color: rgba(45, 43, 40, 0.45);
  box-shadow: none;
  transform: none;
}

.schedule-modal[hidden] {
  display: none;
}

.schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.schedule-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.schedule-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(2, 20, 50, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.schedule-modal.is-open .schedule-modal__backdrop {
  opacity: 1;
}

.schedule-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100% - 24px, 540px);
  margin: min(8vh, 64px) auto;
  border-radius: 16px;
  background-color: #faf8f4;
  box-shadow: 0 28px 70px rgba(2, 36, 66, 0.22);
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.schedule-modal.is-open .schedule-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.schedule-modal__content {
  padding: 28px 28px 24px;
}

.schedule-modal__dialog--success {
  width: min(100% - 24px, 500px);
}

.schedule-modal__content--success {
  padding: 36px 28px 30px;
  text-align: center;
}

.schedule-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--clr-text-dark);
  font-size: 28px;
  line-height: 1;
}

.schedule-modal__close:hover {
  background-color: rgba(0, 41, 105, 0.08);
}

.schedule-modal__content h3 {
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-size: 31px;
  font-weight: 700;
  color: var(--clr-text-dark);
}

.schedule-modal__content > p {
  margin-bottom: 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(45, 43, 40, 0.72);
}

.schedule-modal__selection {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-left: 3px solid var(--clr-gold);
  background-color: rgba(209, 160, 68, 0.08);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--clr-text-dark);
}

.schedule-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.schedule-form__feedback {
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(185, 74, 72, 0.22);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(185, 74, 72, 0.09) 0%, rgba(185, 74, 72, 0.04) 100%);
  color: #8a2f2d;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
}

.schedule-form__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.schedule-form__field span {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-text-dark);
}

.schedule-form__field input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid #35547f;
  border-radius: 4px;
  background-color: var(--clr-white);
  color: var(--clr-text-dark);
  font-family: var(--font-sans);
  font-size: 14px;
}

.schedule-form__field input:focus {
  outline: 2px solid rgba(0, 41, 105, 0.18);
  outline-offset: 1px;
}

.schedule-form__submit {
  width: 100%;
  margin-top: 4px;
  min-height: 52px;
}

.schedule-success__icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e0b15a 0%, #c99231 100%);
  box-shadow: 0 18px 32px rgba(209, 160, 68, 0.26);
}

.schedule-success__icon span {
  width: 24px;
  height: 14px;
  border-left: 4px solid var(--clr-white);
  border-bottom: 4px solid var(--clr-white);
  transform: rotate(-45deg) translateY(-2px);
}

.schedule-success__text {
  margin-bottom: 18px;
}

.schedule-success__summary {
  display: grid;
  gap: 10px;
  margin: 0 auto 22px;
  max-width: 360px;
  padding: 18px 20px;
  border-radius: 14px;
  background-color: rgba(209, 160, 68, 0.08);
  border: 1px solid rgba(209, 160, 68, 0.35);
  text-align: left;
}

.schedule-success__summary div {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.45;
  color: var(--clr-text-dark);
}

.schedule-success__summary strong {
  color: var(--clr-primary);
}

.schedule-success__button {
  min-width: 180px;
}

/* 13. FOOTER
   ============================================== */
.footer {
  background-color: var(--clr-white);
}

.footer__main {
  display: flex;
  justify-content: space-between;
  gap: clamp(28px, 3.2vw, 56px);
  padding-top: 60px;
  padding-bottom: 60px;
  align-items: flex-start;
}

.footer__logo-col {
  flex-shrink: 0;
  width: 178px;
}

.footer__logo {
  height: 41px;
  width: auto;
  transition: opacity var(--tr);
}

.footer__logo:hover {
  opacity: 0.75;
}

.footer__col {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.footer__col:nth-child(2) {
  width: 340px;
}

.footer__col:nth-child(3) {
  width: 230px;
}

.footer__col:nth-child(4) {
  width: 190px;
}

.footer__heading {
  font-family: var(--font-roboto);
  font-size: 18px;
  font-weight: 400;
  color: #2a2a2a;
  line-height: 1.1;
}

.footer__body {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--clr-text-gray);
  opacity: 0.85;
}

.footer__address {
  font-family: var(--font-roboto);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--clr-text-gray);
}

.footer__phone {
  font-family: var(--font-roboto);
  font-size: 14px;
  font-weight: 400;
  color: var(--clr-text-gray);
}

.footer__email {
  font-family: var(--font-roboto);
  font-size: 14px;
  font-weight: 400;
  color: var(--clr-email);
  word-break: break-all;
  transition: opacity var(--tr);
}

.footer__email:hover {
  opacity: 0.75;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links li a {
  font-family: var(--font-roboto);
  font-size: 14px;
  font-weight: 400;
  color: var(--clr-text-gray);
  transition: color var(--tr);
}

.footer__links li a:hover {
  color: var(--clr-gold);
}

.footer__work-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-roboto);
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-text-gray);
}

.footer__work-link img {
  width: 16px;
  height: 14px;
}

.footer__copyright {
  background-color: var(--clr-primary);
  height: 60px;
  display: flex;
  align-items: center;
}

.footer__copyright-inner {
  display: flex;
  align-items: center;
}

.footer__copyright span {
  font-family: var(--font-roboto);
  font-size: 16px;
  font-weight: 400;
  color: var(--clr-white);
}

/* 14. SCROLL REVEAL ANIMATIONS
   ============================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* 15. RESPONSIVE
   ============================================== */
@media (max-width: 1100px) {
  .property-card {
    gap: 48px;
  }

  .property-card__image img {
    height: 580px;
  }

  .footer__main {
    gap: 40px;
  }

  .schedule-grid {
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .calendar-card,
  .time-slots {
    max-width: none;
  }

  .why-section__features {
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-col {
    min-width: calc(50% - 20px);
  }

  .footer__main {
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer__logo-col {
    width: 100%;
  }

  .footer__col {
    min-width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }

  /* Mobile Nav */
  .header__hamburger {
    display: flex;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--clr-white);
    padding: 20px var(--container-pad);
    gap: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 99;
    border-top: 1px solid var(--clr-separator);
  }

  .header.nav-open .header__nav {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 620px;
  }

  .hero__bg {
    inset: 0;
    transform: none;
  }

  .hero__content {
    text-align: center;
  }

  .hero__subtitle {
    text-align: center;
  }

  /* Property */
  .property-card {
    flex-direction: column;
    gap: 32px;
  }

  .property-card__image {
    width: 100%;
    max-width: 100%;
  }

  .property-card__image img {
    height: 320px;
  }

  /* Tabs */
  .locations-tabs {
    gap: 10px;
  }

  .location-tab {
    font-size: 14px;
    padding: 10px 16px;
  }

  .map-container {
    height: 360px;
  }

  .schedule-section {
    padding: 88px 0 104px;
  }

  .schedule-panel__header {
    font-size: 24px;
  }

  /* Why section */
  .why-section__features {
    flex-direction: column;
    align-items: center;
  }

  .feature-col {
    min-width: auto;
    width: 100%;
    max-width: 380px;
  }

  /* Footer */
  .footer__main {
    flex-direction: column;
    gap: 32px;
  }

  .footer__col {
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero { min-height: 560px; }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__title {
    text-align: center;
  }

  .hero .btn--gold {
    align-self: center;
  }

  .locations-tabs {
    flex-direction: column;
  }

  .location-tab {
    width: 100%;
    text-align: center;
  }

  .prop-cta {
    font-size: 15px;
  }

  .schedule-section__intro {
    margin-bottom: 36px;
  }

  .calendar-card {
    padding: 18px 14px 14px;
  }

  .calendar-card__nav strong {
    font-size: 16px;
  }

  .calendar-day {
    height: 38px;
    font-size: 14px;
  }

  .time-slot {
    min-width: calc(50% - 7px);
    flex: 1 1 calc(50% - 7px);
  }

  .schedule-modal__content {
    padding: 24px 16px 18px;
  }

  .schedule-modal__content h3 {
    font-size: 26px;
  }
}
