/* ----------------------------
   Core variables & reset
   ---------------------------- */
:root{
  --primary: #006D63; /* deep teal */
  --accent: #FFC77D;  /* sandy yellow */
  --charcoal: #222;
  --muted: #6b7280;
  --card-radius: 14px;
  --glass: rgba(255,255,255,0.8);
  --max-width: 1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:var(--charcoal);
  background: linear-gradient(180deg,#fbfcfd,#ffffff);
  -webkit-font-smoothing:antialiased;
}

/* container */
.container{ max-width:var(--max-width); margin:0 auto; padding:0 20px; }

/* ----------------------------
   Header
   ---------------------------- */
.site-header{
  position:sticky; top:0; z-index:1200;
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.8));
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:14px; }

/* brand */
.brand{ display:flex; gap:10px; align-items:center; }
.logo-mark{ width:44px; height:44px; background:linear-gradient(135deg,var(--primary),#007F6F); color:#fff; border-radius:10px; display:flex; align-items:center; justify-content:center; font-weight:800; box-shadow:0 8px 26px rgba(0,109,99,0.08) }
.brand-title{ font-weight:800; color:var(--primary); letter-spacing:0.6px; }
.brand-sub{ font-size:12px; color:var(--muted); margin-top:2px; }

/* nav */
.main-nav{ display:flex; gap:16px; align-items:center; }
.nav-link{ text-decoration:none; color:var(--charcoal); font-weight:700; padding:8px 10px; border-radius:8px; font-size:15px; }
.nav-link.active{ color:var(--primary) }

/* header CTAs */
.header-ctas{ display:flex; gap:10px; }
.btn{ display:inline-flex; gap:8px; align-items:center; padding:10px 14px; border-radius:10px; font-weight:700; cursor:pointer; border:0; text-decoration:none; }
.btn-primary{ background:var(--primary); color:#fff; box-shadow:0 10px 28px rgba(0,109,99,0.12); }
.btn-ghost{ background:transparent; background:var(--primary); color: #fff; border:1px solid rgba(2,39,36,0.06); }

/* ----------------------------- */
/* Airbnb-Style Review Section   */
/* ----------------------------- */

.reviews-section {
    padding: 100px 20px;
    background: #fafafa;
    text-align: center;
    animation: fadeIn 1s ease forwards;
}

.section-title {
    font-size: 2.7rem;
    color: #2c2c2c;
    font-weight: 600;
    margin-bottom: 50px;
    opacity: 0;
    animation: slideDown 1s ease forwards;
}

/* Review Cards Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Review Cards */
.review-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

/* Delay animation for each card  */
.review-card:nth-child(1) { animation-delay: 0.2s; }
.review-card:nth-child(2) { animation-delay: 0.4s; }
.review-card:nth-child(3) { animation-delay: 0.6s; }
.review-card:nth-child(4) { animation-delay: 0.8s; }

/* Hover Effects */
.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Stars */
.stars {
    font-size: 1.3rem;
    color: #ff385c;
    margin-bottom: 10px;
}

/* Review Text */
.review-text {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Author */
.review-author {
    font-size: 1rem;
    color: #777;
    font-weight: 600;
    margin-top: 10px;
}

/* ----------------------------- */
/* Animations                    */
/* ----------------------------- */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}



/* ----------------------------
   HERO
   ---------------------------- */
.hero{ display:grid; grid-template-columns: 1fr; gap:20px; align-items:center; min-height:64vh; position:relative; overflow:hidden; }
.hero-media img{ width:100%; height:440px; object-fit:cover; filter:contrast(1.03) saturate(1.02); border-bottom-left-radius:20px; border-bottom-right-radius:20px; box-shadow:0 30px 80px rgba(6,30,31,0.06); }
.hero-content{ position:relative; margin-top:-160px; background:linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9)); padding:28px; border-radius:16px; box-shadow:0 20px 60px rgba(6,30,31,0.06); max-width:820px; margin-left:auto; margin-right:auto; text-align:center; }
.kicker{ display:inline-block; padding:6px 12px; border-radius:999px; background:rgba(255,199,125,0.14); color:var(--primary); font-weight:800; margin-bottom:12px; }
.hero-title{ font-size:30px; margin:6px 0 10px; color:var(--charcoal); }
.hero-sub{ color:var(--muted); margin-bottom:14px; }
.hero-actions{ display:flex; gap:12px; justify-content:center; margin-bottom:12px; }
.hero-features{ display:flex; gap:12px; justify-content:center; margin-top:12px; list-style:none; padding:0; }
.hero-features li{ background:rgba(0,109,99,0.06); padding:8px 12px; border-radius:999px; color:var(--primary); font-weight:700; }

/* ----------------------------
   CARDS GRID
   ---------------------------- */
.featured-section{ padding:36px 0 60px; text-align:center; }
.section-title{ font-size:22px; margin-bottom:8px; font-weight:800; }
.section-sub{ color:var(--muted); margin-bottom:20px; }

.cards-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:18px; margin-top:18px; }
.card{ background:#fff; border-radius:14px; overflow:hidden; box-shadow:0 18px 48px rgba(3,86,79,0.04); display:flex; flex-direction:column; }
.card-media img{ width:100%; height:200px; object-fit:cover; transition:transform 280ms ease; }
.card:hover .card-media img{ transform:scale(1.06) } /* hover zoom */
.card-body{ padding:14px; display:flex; flex-direction:column; gap:8px; }
.muted{ color:var(--muted); font-size:14px; }
.card-row{ display:flex; justify-content:space-between; align-items:center; margin-top:6px; }

/* ----------------------------
   OFFERS - detailed cards
   ---------------------------- */
.offers-main{ padding:36px 0; }
.list-grid{ display:flex; flex-direction:column; gap:18px; margin-top:18px; }
.card-large{ display:grid; grid-template-columns: 360px 1fr; gap:18px; align-items:start; background:#fff; border-radius:12px; padding:12px; box-shadow:0 18px 44px rgba(3,86,79,0.04);}
.unit-media img{ width:100%; height:240px; object-fit:cover; border-radius:10px; }
.unit-info h3{ margin:0 0 6px; }
.unit-actions{ display:flex; gap:10px; margin-top:10px; align-items:center; }

/* ----------------------------
   MODAL / DRAWER
   ---------------------------- */
.modal{ position:fixed; inset:0; display:none; align-items:center; justify-content:center; background:rgba(0,0,0,0.4); z-index:2000; }
.modal.show{ display:flex; }
.modal-panel{ width:100%; max-width:640px; background:#fff; border-radius:12px; padding:18px; box-shadow:0 40px 100px rgba(6,30,31,0.2); }
.modal-close{ float:right; background:transparent; border:0; font-weight:800; font-size:18px; cursor:pointer; }

/* form grid */
.form-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:12px; }
.form-grid input, .form-grid textarea, .form-grid select{ padding:10px 12px; border-radius:8px; border:1px solid #e6eef0; width:100%; font-size:15px; }
.form-grid label{ display:block; font-size:13px; color:var(--muted); }
.modal-actions{ display:flex; gap:10px; margin-top:10px; grid-column:1/-1; justify-content:flex-end; }

/* ----------------------------
   CONTACT PAGE
   ---------------------------- */
.contact-main{ padding:36px 0; }
.contact-grid{ display:grid; grid-template-columns: 1fr 320px; gap:18px; margin-top:18px; }
.contact-card{ background:#fff; padding:18px; border-radius:12px; box-shadow:0 18px 40px rgba(3,86,79,0.04); }

/* ----------------------------
   Footer
   ---------------------------- */
.site-footer{ margin-top:36px; background:transparent; background-color: #22f0dc; padding:26px 0; border-top:1px solid rgba(0,0,0,0.04); }
.footer-grid{ display:flex; gap:24px; justify-content:space-between; align-items:flex-start; }

/* tiny helpers */
.link{ color:var(--primary); text-decoration:none; font-weight:700; }
.price{ color:var(--primary); font-weight:800 }

/* ----------------------------
   Responsive
   ---------------------------- */
@media(max-width:1000px){
  .cards-grid{ grid-template-columns:repeat(2,1fr) }
  .card-large{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}
@media(max-width:640px){
  .cards-grid{ grid-template-columns: 1fr; }
  .hero-content{ margin-top:-130px; padding:18px; border-radius:10px; }
  .unit-media img{ height:180px }
  .header-inner{ padding:12px 10px }
  .logo-mark{ width:36px; height:36px }
  .hero-features{ flex-wrap:wrap; gap:8px; }
}
/* Mobile tweaks for very small screens */
@media (max-width:480px) {
    /* container padding */
    .container{ padding:0 15px; }
    /* larger readable body text */
    body{ font-size:16px; }
    /* full-width buttons for easy tapping */
    .btn, .btn-small { width:100%; justify-content:center; }
    /* stack large cards vertically with media on top */
    .card-large{ grid-template-columns: 1fr; gap:12px; }
    .card-large .unit-media { order: -1; }
    .card-large .unit-media img{ width:100%; height:auto; border-radius:8px; }
    /* modal panel full width on small screens */
    .modal-panel{ margin:12px; width:calc(100% - 24px); }
}
/* ----------------------------
   END OF STYLES
   ---------------------------- */