/* ============================================
   Wallace Senior Living — Global Stylesheet
   Color Palette:
     Primary:    #2E6B8A (deep calming blue)
     Secondary:  #5BA4C9 (soft sky blue)
     Accent:     #D4A574 (warm sand/gold)
     Warm:       #E8D5C4 (light beige)
     Light:      #F7F3EF (off-white/cream)
     White:      #FFFFFF
     Text:       #3A3A3A (soft black)
     Text Light: #6B6B6B
   Fonts:
     Headings: 'Playfair Display', serif
     Body:     'Inter', sans-serif
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #3A3A3A;
  background: #FFFFFF;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #2E6B8A;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #D4A574;
}

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #2E6B8A;
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: #4A4A4A;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--light {
  background: #F7F3EF;
}

.section--blue {
  background: #2E6B8A;
  color: #FFFFFF;
}

.section--blue h2,
.section--blue h3,
.section--blue h4 {
  color: #FFFFFF;
}

.section--blue p {
  color: rgba(255,255,255,0.9);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header p {
  margin-top: 12px;
  font-size: 1.05rem;
  color: #6B6B6B;
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D4A574;
  margin-bottom: 10px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}

.btn--primary {
  background: #D4A574;
  color: #FFFFFF;
  border-color: #D4A574;
}

.btn--primary:hover {
  background: #c4915f;
  border-color: #c4915f;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,165,116,0.35);
}

.btn--secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.btn--secondary:hover {
  background: #FFFFFF;
  color: #2E6B8A;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: #2E6B8A;
  border-color: #2E6B8A;
}

.btn--outline:hover {
  background: #2E6B8A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn--white {
  background: #FFFFFF;
  color: #2E6B8A;
  border-color: #FFFFFF;
}

.btn--white:hover {
  background: #F7F3EF;
  color: #2E6B8A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Top Bar --- */
.top-bar {
  background: #2E6B8A;
  color: #FFFFFF;
  font-size: 0.78rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: #FFFFFF;
  font-weight: 500;
}

.top-bar a:hover {
  color: #D4A574;
}

.top-bar__phone {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* --- Header / Navigation --- */
.header {
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

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

.logo__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2E6B8A, #5BA4C9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.3rem;
}

.logo__text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2E6B8A;
  line-height: 1.2;
}

.logo__tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: #6B6B6B;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: #3A3A3A;
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4A574;
  transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link--active {
  color: #2E6B8A;
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  width: 26px;
  height: 2.5px;
  background: #2E6B8A;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #F7F3EF 0%, #E8D5C4 50%, #d4c4b0 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 60%, rgba(91,164,201,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 30%, rgba(212,165,116,0.1) 0%, transparent 50%);
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.hero__shape--1 {
  width: 500px;
  height: 500px;
  background: #2E6B8A;
  top: -150px;
  right: -100px;
}

.hero__shape--2 {
  width: 300px;
  height: 300px;
  background: #D4A574;
  bottom: -80px;
  left: -60px;
}

.hero__shape--3 {
  width: 180px;
  height: 180px;
  background: #5BA4C9;
  top: 40%;
  right: 15%;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,107,138,0.08);
  border: 1px solid rgba(46,107,138,0.15);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2E6B8A;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero__badge span {
  width: 8px;
  height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: 3.2rem;
  color: #2E6B8A;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero h1 em {
  font-style: normal;
  color: #D4A574;
  position: relative;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: #5A5A5A;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(46,107,138,0.12);
}

.hero__stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2E6B8A;
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.78rem;
  color: #6B6B6B;
  margin-top: 4px;
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image-frame {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #d9e8f0, #e8ddd2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(46,107,138,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__image-placeholder {
  text-align: center;
  padding: 40px;
  color: #6B6B6B;
}

.hero__image-placeholder svg {
  width: 120px;
  height: 120px;
  margin-bottom: 16px;
  opacity: 0.4;
}

.hero__image-placeholder p {
  font-size: 0.85rem;
  font-style: italic;
}

.hero__float-card {
  position: absolute;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}

.hero__float-card--top {
  top: 20px;
  right: -20px;
  animation-delay: 0s;
}

.hero__float-card--bottom {
  bottom: 40px;
  left: -20px;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__float-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero__float-icon--green {
  background: rgba(76,175,80,0.1);
  color: #4CAF50;
}

.hero__float-icon--blue {
  background: rgba(46,107,138,0.1);
  color: #2E6B8A;
}

.hero__float-text strong {
  display: block;
  font-size: 0.85rem;
  color: #3A3A3A;
}

.hero__float-text small {
  font-size: 0.72rem;
  color: #6B6B6B;
}

/* --- Benefits Bar --- */
.benefits {
  padding: 60px 0;
  background: #FFFFFF;
  border-bottom: 1px solid #F0EBE5;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.benefit-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: #F7F3EF;
  transform: translateY(-4px);
}

.benefit-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  background: rgba(46,107,138,0.08);
  color: #2E6B8A;
}

.benefit-card h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.benefit-card p {
  font-size: 0.85rem;
  color: #6B6B6B;
  line-height: 1.6;
}

/* --- About Preview --- */
.about-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-preview__img {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #d9e8f0, #e8ddd2);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B6B6B;
  font-size: 0.8rem;
  font-style: italic;
  text-align: center;
  padding: 12px;
}

.about-preview__img:nth-child(2) {
  margin-top: 32px;
}

.about-preview__img:nth-child(3) {
  margin-top: -32px;
}

.about-preview__content h2 {
  margin-bottom: 20px;
}

.about-preview__content p {
  margin-bottom: 16px;
}

.value-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}

.value-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #3A3A3A;
}

.value-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(76,175,80,0.1);
  color: #4CAF50;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Services Preview --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid #F0EBE5;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2E6B8A, #5BA4C9);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(46,107,138,0.12);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: rgba(46,107,138,0.08);
  color: #2E6B8A;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.service-card p {
  font-size: 0.9rem;
  color: #6B6B6B;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card .btn {
  padding: 10px 24px;
  font-size: 0.82rem;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid #F0EBE5;
  position: relative;
}

.testimonial-card__stars {
  color: #D4A574;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2E6B8A, #5BA4C9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #3A3A3A;
}

.testimonial-card__relation {
  font-size: 0.78rem;
  color: #6B6B6B;
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #2E6B8A 0%, #1d4f66 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(212,165,116,0.06);
  bottom: -100px;
  left: -50px;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 2.2rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

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

/* --- Footer --- */
.footer {
  background: #1a2e3a;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-top: 16px;
  line-height: 1.7;
}

.footer h4 {
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: #D4A574;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer__contact-item svg,
.footer__contact-item .icon {
  flex-shrink: 0;
  margin-top: 3px;
  color: #D4A574;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom a {
  color: rgba(255,255,255,0.4);
}

.footer__bottom a:hover {
  color: #D4A574;
}

/* --- Page Hero (Inner Pages) --- */
.page-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #F7F3EF, #E8D5C4);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(46,107,138,0.04);
  top: -200px;
  right: -100px;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #5A5A5A;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: #6B6B6B;
}

.breadcrumb a {
  color: #6B6B6B;
}

.breadcrumb a:hover {
  color: #2E6B8A;
}

/* --- Service Detail Sections --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail__image {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #d9e8f0, #e8ddd2);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B6B6B;
  font-style: italic;
  font-size: 0.85rem;
  padding: 20px;
  text-align: center;
}

.service-detail h3 {
  margin-bottom: 12px;
}

.service-detail p {
  margin-bottom: 14px;
}

.care-list {
  margin: 16px 0 24px;
}

.care-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #4A4A4A;
}

.care-list li::before {
  content: '✓';
  color: #4CAF50;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Amenities Grid --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.amenity-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid #F0EBE5;
  transition: all 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(46,107,138,0.1);
}

.amenity-card__image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #d9e8f0, #e8ddd2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B6B6B;
  font-style: italic;
  font-size: 0.82rem;
}

.amenity-card__body {
  padding: 24px;
}

.amenity-card h4 {
  margin-bottom: 8px;
}

.amenity-card p {
  font-size: 0.88rem;
  color: #6B6B6B;
  line-height: 1.7;
}

/* --- Testimonials Page --- */
.testimonials-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-card--large {
  padding: 40px 32px;
}

.testimonial-card--large .testimonial-card__text {
  font-size: 1.05rem;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(46,107,138,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E6B8A;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info__text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info__text p {
  font-size: 0.88rem;
  color: #6B6B6B;
  margin-bottom: 0;
}

.contact-info__text a {
  font-weight: 600;
}

.contact-form {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  border: 1px solid #F0EBE5;
}

.contact-form h3 {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #3A3A3A;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #E0D8D0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #3A3A3A;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #FAFAFA;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5BA4C9;
  box-shadow: 0 0 0 4px rgba(91,164,201,0.1);
  background: #FFFFFF;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  background: #e8e0d8;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B6B6B;
  font-style: italic;
}

/* --- FAQ Section --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #E8E0D8;
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #3A3A3A;
  padding: 8px 0;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #2E6B8A;
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #D4A574;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-top: 12px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: #5A5A5A;
  line-height: 1.8;
}

/* --- Guide Section --- */
.guide-signs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.guide-sign {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #F0EBE5;
}

.guide-sign__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212,165,116,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4A574;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.guide-sign h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.guide-sign p {
  font-size: 0.82rem;
  color: #6B6B6B;
  margin-bottom: 0;
}

/* --- Phone Highlight --- */
.phone-highlight {
  background: rgba(46,107,138,0.06);
  border: 2px solid rgba(46,107,138,0.12);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.phone-highlight__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2E6B8A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.phone-highlight__text h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  color: #2E6B8A;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.phone-highlight__text p {
  font-size: 0.85rem;
  color: #6B6B6B;
  margin-bottom: 0;
}

/* --- Virtual Tour Section --- */
.virtual-tour {
  text-align: center;
}

.virtual-tour__frame {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #d9e8f0, #e8ddd2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.virtual-tour__play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(46,107,138,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid rgba(255,255,255,0.3);
}

.virtual-tour__play:hover {
  background: #2E6B8A;
  transform: scale(1.1);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  html { font-size: 17px; }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__image { display: none; }

  .hero__stats { justify-content: center; }

  .hero h1 { font-size: 2.6rem; }

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

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

  .about-preview .container {
    grid-template-columns: 1fr;
  }

  .about-preview__images {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .service-detail,
  .service-detail:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

  .testimonials-page-grid {
    grid-template-columns: 1fr;
  }

  .guide-signs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html { font-size: 16px; }

  .section { padding: 50px 0; }

  .top-bar { display: none; }

  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .nav__links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    padding: 20px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 16px;
    z-index: 100;
  }

  .hero { min-height: 70vh; }
  .hero h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }

  .hero__stats { gap: 24px; flex-wrap: wrap; }

  .benefits__grid,
  .services-grid,
  .testimonials-grid,
  .amenities-grid {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-banner h2 {
    font-size: 1.7rem;
  }

  .phone-highlight {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 3px solid #5BA4C9;
  outline-offset: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: #2E6B8A;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
  color: #FFFFFF;
}
