/* RESET & BASE STYLES =============================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FDF9FA;
  color: #263640;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
a {
  color: #215564;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #376B86;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
}
main {
  flex: 1 0 auto;
}

/* TYPOGRAPHY =============================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #215564;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
p, li {
  font-size: 1rem;
  color: #394B5A;
}
.text-section p, .text-section ul, .text-section ol, .text-section li {
  font-size: 1.06rem;
}
strong {
  font-weight: 700;
}

/* CONTAINER & LAYOUT ======================================== */
.container {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container, .card-grid, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #FFF0F6;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(33,85,100,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 5px 18px rgba(33,85,100,0.15);
}

/* FLEXBOX ONLY, NO GRID */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FFF7E8;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(33,85,100,0.06);
  border: 1px solid #F9E4B7;
  max-width: 440px;
  color: #254045;
}
.testimonial-card p {
  font-size: 1.06rem;
  color: #215564;
}
.testimonial-card span {
  color: #758BA5;
  font-size: .95rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.85;
  letter-spacing: 0.02em;
}

.feature-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #E9F6FF;
  border-radius: 14px;
  padding: 18px 16px;
  min-width: 220px;
  max-width: 260px;
  box-shadow: 0 2px 8px rgba(33,85,100,0.06);
  border: 1px solid #D9EDFF;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
}
.feature-item h3 {
  font-size: 1.13rem;
  color: #215564;
  margin-bottom: 0;
}
.feature-item p {
  font-size: .97rem;
  color: #394B5A;
  margin-bottom: 0;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* NAVIGATION =============================================== */
header {
  background: #F2F9F7;
  box-shadow: 0 2px 8px rgba(52,90,123,0.04);
  position: relative;
  z-index: 12;
  width: 100%;
}
header nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  font-size: 1rem;
}
header nav a:hover:not(.cta-primary) {
  background: #E9F6FF;
  color: #215564;
}
header nav a.cta-primary {
  background: #F0C552;
  color: #215564;
  font-weight: 700;
  margin-left: 14px;
  box-shadow: 0 2px 8px rgba(240,197,82,0.13);
  transition: background .25s, color .25s, box-shadow .2s;
}
header nav a.cta-primary:hover {
  background: #FFD682;
  color: #173644;
  box-shadow: 0 4px 15px rgba(240,197,82,0.29);
}

header img {
  height: 38px;
  margin-right: 20px;
  margin-left: 0;
  display: inline-block;
  vertical-align: middle;
}

/* MOBILE MENU =============================================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #215564;
  padding: 8px 14px;
  border-radius: 8px;
  margin-left: auto;
  cursor: pointer;
  transition: background .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E9F6FF;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250,245,255,0.96);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform .45s cubic-bezier(.77,0,.175,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #215564;
  font-size: 2rem;
  margin: 24px 0 12px 18px;
  align-self: flex-start;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #F0C552;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 12px 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #215564;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 13px 0 13px 4px;
  border-radius: 0;
  background: none;
  letter-spacing: 0.01em;
  transition: background .19s, color .19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E5F2FA;
  color: #336B8A;
}

/* SHOW MOBILE NAV FOR SMALLER SCREENS */
@media (max-width: 1020px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
}

/* FLEX CLASSES FROM SPEC =================================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TABLES, LABELS & SELECT ================================== */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #FAFAFF;
  border-radius: 14px;
  overflow: hidden;
  margin: 25px 0 24px 0;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(33,85,100,0.06);
}
thead tr {
  background: #E9F6FF;
}
th, td {
  text-align: left;
  padding: 13px 14px;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: #215564;
}
tbody tr {
  border-bottom: 1.5px solid #F4EFFF;
}
td {
  color: #456581;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right: 10px;
  font-size: .98rem;
  color: #366080;
}
select {
  border-radius: 7px;
  padding: 7px 24px 7px 10px;
  font-size: 1rem;
  border: 1.6px solid #E3DAFD;
  background: #FDF6FF;
  color: #215564;
  transition: border .2s;
  margin-right: 14px;
  margin-bottom: 10px;
}
select:focus {
  outline: none;
  border: 1.6px solid #F0C552;
}

/* BUTTONS & CTA ============================================ */
.cta-primary,
button, .btn {
  display: inline-block;
  background: #F0C552;
  color: #215564;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  border-radius: 22px;
  border: none;
  padding: 12px 32px;
  box-shadow: 0 1px 6px rgba(240,197,82,0.07);
  cursor: pointer;
  transition: background .24s, color .18s, box-shadow .23s;
  margin: 7px 0;
}
.cta-primary:hover, .cta-primary:focus,
button:hover, button:focus {
  background: #215564;
  color: #FFF;
  box-shadow: 0 3px 16px rgba(33,85,100,0.14);
}
.cta-secondary {
  background: #E9F6FF;
  color: #215564;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 20px;
  padding: 10px 25px;
  transition: background .18s, color .18s, box-shadow .18s;
  box-shadow: 0 1px 3px rgba(33,85,100,0.07);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #215564;
  color: #FFF;
}

/* FOOTER STYLES ============================================ */
footer {
  background: #F6F5FE;
  border-top: 1.5px solid #E3E1F8;
  padding: 36px 0 24px 0;
  margin-top: 60px;
}
footer .container {
  justify-content: center;
  align-items: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 16px;
}
footer nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #215564;
  font-size: .97rem;
  opacity: .85;
  transition: color .2s;
}
footer nav a:hover {
  color: #F0C552;
  opacity: 1;
}
footer .text-section {
  text-align: center;
  font-size: .96rem;
  color: #6B7E93;
}

/* COOKIES CONSENT BANNER & MODAL =========================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #F6F3FF;
  color: #215564;
  border-top: 1.5px solid #E3E1F8;
  box-shadow: 0 -3px 24px rgba(33,85,100,0.10);
  z-index: 2200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 19px 18px 16px 18px;
  font-size: 1rem;
  gap: 17px;
  animation: fadeInBanner .85s;
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  margin-bottom: 0;
  text-align: center;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 13px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #F0C552;
  color: #215564;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 18px;
  padding: 9px 23px;
  margin: 2px 0;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #215564;
  color: #FFF;
}
.cookie-btn.secondary {
  background: #E9F6FF;
  color: #215564;
}
.cookie-btn.secondary:hover {
  background: #215564;
  color: #FFF;
}

/* COOKIE MODAL ============= */
.cookie-modal {
  position: fixed;
  left: calc(50% - 190px);
  top: 25%;
  width: 380px;
  background: #FFF9F5;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(33,85,100,0.16);
  padding: 32px 24px;
  z-index: 2250;
  animation: fadeInModal .46s;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(.85); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h3 {
  margin-top: 0;
  font-size: 1.28rem;
  color: #215564;
  margin-bottom: 13px;
}
.cookie-modal label {
  font-size: 1rem;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
}
.cookie-modal .cookie-btn {
  margin-top: 18px;
  width: 100%;
}
.cookie-modal .close-modal-btn {
  background: none;
  border: none;
  color: #215564;
  font-size: 1.38rem;
  align-self: flex-end;
  cursor: pointer;
  margin-top: -26px;
  margin-bottom: 4px;
  margin-right: -8px;
}
.cookie-modal .close-modal-btn:hover {
  color: #F0C552;
}

/* LISTS & ICONS ============================================ */
ul li, ol li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 0.84em;
  font-size: 1em;
}
ul li img {
  vertical-align: middle;
  margin-right: 8px;
  width: 1.18em;
  height: 1.18em;
  margin-top: -3px;
}
ul {
  list-style: disc inside;
}
ol {
  list-style: decimal inside;
}

/* RESPONSIVE & FLEX ADJUSTMENTS ============================ */
@media (max-width: 820px) {
  .container {
    padding: 0 10px;
  }
  .card-container, .card-grid, .feature-grid {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
  }
  .feature-item {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.14rem; }
  .section {
    margin-bottom: 40px;
    padding: 28px 7px;
  }
  .content-wrapper,
  .text-section {
    gap: 15px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 17px;
    font-size: .99rem;
  }
  .cookie-modal {
    left: 4vw; right: 4vw;
    width: 92vw;
    min-width: 0;
    padding: 18px 12px 22px 13px;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 15px;
  }
  table, thead, tbody, tr, th, td {
    font-size: .98rem;
  }
}

@media (max-width: 480px) {
  html, body {
    font-size: 16px;
  }
  .container {
    padding: 0 2vw;
  }
  .section {
    margin-bottom: 28px;
    padding: 13px 1vw;
  }
  .feature-grid, .card-container, .card-grid {
    gap: 13px;
  }
  .feature-item, .testimonial-card, .card {
    padding: 10px 8px;
  }
  .cookie-banner {
    font-size: .97rem;
    padding: 10px 4vw 9px 4vw;
  }
  .cookie-modal {
    top: 10vw;
    width: 97vw;
    left: 1.5vw;
    padding: 11px 0 10px 3vw;
  }
}

/* SUBTLE SHADOWS & EFFECTS ================================= */
.card, .feature-item, .testimonial-card {
  box-shadow: 0 2px 12px rgba(210, 188, 255, 0.10);
}
.card:hover, .feature-item:hover {
  box-shadow: 0 8px 24px rgba(33,85,100,0.14);
  background: #F1F4FE;
}

/* PLACEHOLDER CLASSES FOR MODALS & DIALOGS =================*/
.hidden { display: none !important; }

/* Interactivity: Focus States ============================== */
a, button, select {
  outline: none;
}
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus {
  box-shadow: 0 0 0 3px #E3E6FC;
}

/* PASTEL COLOR HARMONY ======================================*/
body {
  background: #FDF9FA; /* very pale pinkish/white for soothing pastel base */
}
.section {
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(195,222,241,0.07);
}

/* Table Row Status Pastel Colors */
td:last-child {
  font-weight: 700;
  padding-right: 18px;
}
tbody tr td:last-child {
  color: #226A64;
  background: #E4FBF6;
  border-radius: 8px;
  padding: 8px 14px;
}
tbody tr td:last-child:contains('Available') {
  background: #E7FAF3;
  color: #368D56;
}
tbody tr td:last-child:contains('Sold') {
  background: #FFE9F3;
  color: #BC366C;
}
tbody tr td:last-child:contains('Reserved') {
  background: #FFF3DF;
  color: #FF8B1D;
}

/* SCROLLBAR HIDE FOR MODALS */
.cookie-modal::-webkit-scrollbar {
  display: none;
}

/* DREAMY PASTEL EFFECTS =====================================*/
.section {
  /* Simulate a pastel border without harshness */
  border: 1.5px solid #F5EFFF;
}

/* GENERAL SPACING, WHITE SPACE & MICRO ANIMATION =========== */
*:not(svg):not(img) {
  box-sizing: border-box;
}
.card, .testimonial-card, .feature-item, .cookie-modal {
  transition: box-shadow 0.18s, background 0.23s;
}

/* SMOOTH MOBILE MENU ANIMATION ============================= */

/* Accessibility: visually hidden for modals */
.visually-hidden {
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  border:0 !important;
}

/* END OF CSS */
