/*
Theme Name: Twenty Twenty-One Child
Theme URI: https://yourwebsite.com/
Description: A child theme for Twenty Twenty-One.
Author: Your Name
Author URI: https://yourwebsite.com/
Template: twentytwentyone
Version: 1.0.0
Text Domain: twentytwentyone-child
*/

/* Custom CSS goes below */


  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #1a2744;
    --navy-deep: #111d35;
    --gold: #c9a84c;
    --gold-light: #f5e9cc;
    --gold-muted: rgba(201,168,76,0.25);
    --bg: #f9f7f3;
    --white: #ffffff;
    --text: #2e2e2e;
    --muted: #666666;
    --border: #e2ddd5;
    --card-bg: #ffffff;
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'Source Sans 3', Helvetica, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }

  /* ── HEADER ── */
  .site-header { background: var(--navy); border-bottom: 3px solid var(--gold); }

  .header-utility {
    background: var(--navy-deep);
    padding: 7px 40px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: #8892a4; letter-spacing: 0.03em;
  }

  .header-main {
    padding: 16px 40px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
  }

  .logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; }

  .logo-badge {
    width: 52px; height: 52px; flex-shrink: 0;
    background: var(--gold); border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px; font-weight: 700; color: var(--navy);
  }

  .logo-text .firm { font-family: 'Playfair Display', Georgia, serif; font-size: 19px; font-weight: 700; color: #fff; }
  .logo-text .sub { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 2px; }

  .header-right { text-align: right; }
  .header-right .phone { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); font-weight: 700; display: block; margin-bottom: 6px; text-decoration: none; }
  .cta-btn {
    display: inline-block; background: var(--gold); color: var(--navy);
    padding: 7px 16px; border-radius: 3px; font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em; text-decoration: none;
  }

  /* ── HERO ── */
  .hero {
    background: var(--navy);
    padding: 52px 40px 44px;
    text-align: center;
  }

  .hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 38px; color: #fff; margin-bottom: 8px; line-height: 1.2;
  }
  .hero h1 span { color: var(--gold); }

  .hero-sub { font-size: 16px; color: #aab2c4; max-width: 500px; margin: 0 auto 28px; }

  .rating-block {
    display: inline-flex; align-items: center; gap: 0;
    border: 1px solid var(--gold-muted); border-radius: 6px; overflow: hidden;
    margin-bottom: 20px;
  }

  .rating-score {
    background: rgba(255,255,255,0.06);
    padding: 16px 24px;
    font-family: 'Playfair Display', serif;
    font-size: 48px; font-weight: 700; color: var(--gold); line-height: 1;
  }

  .rating-detail {
    padding: 16px 24px;
    text-align: left; border-left: 1px solid var(--gold-muted);
  }

  .rating-stars { font-size: 22px; color: var(--gold); letter-spacing: 3px; margin-bottom: 3px; }
  .rating-count { font-size: 13px; color: #aab2c4; }

  .google-verified {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px; padding: 6px 14px;
    font-size: 12px; color: #c8cdd8;
  }

  .g-dot {
    width: 18px; height: 18px; border-radius: 50%;
    background: #4285f4;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700; color: #fff; flex-shrink: 0;
  }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--gold);
    padding: 10px 40px;
    display: flex; justify-content: center; flex-wrap: wrap; gap: 32px;
  }

  .trust-item {
    display: flex; align-items: center; gap: 7px;
    font-size: 12px; font-weight: 600; color: var(--navy);
    text-transform: uppercase; letter-spacing: 0.07em;
  }

  /* ── MAIN ── */
  .main { max-width: 1040px; margin: 0 auto; padding: 44px 24px; }

  .section-head {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 28px;
  }
  .section-head h2 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--navy); white-space: nowrap; }
  .section-head .rule { flex: 1; height: 1px; background: var(--gold); opacity: 0.35; }

  /* ── REVIEWS GRID ── */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 20px; margin-bottom: 32px;
  }

  .review-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 6px; padding: 20px 22px;
    position: relative;
  }

  .review-card::after {
    content: '\201C';
    position: absolute; top: 10px; right: 14px;
    font-family: 'Playfair Display', serif;
    font-size: 52px; line-height: 1; color: var(--gold); opacity: 0.18;
    pointer-events: none;
  }

  .review-stars { font-size: 14px; color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }

  .review-text { font-size: 14px; line-height: 1.68; color: #3a3a3a; margin-bottom: 16px; }

  .review-footer {
    display: flex; align-items: center; gap: 10px;
    border-top: 1px solid var(--border); padding-top: 12px;
  }

  .avatar {
    width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 600; color: var(--gold);
  }

  .reviewer { flex: 1; }
  .reviewer-name { font-size: 13px; font-weight: 600; color: var(--navy); }
  .review-date { font-size: 11px; color: var(--muted); }

  .g-badge {
    width: 18px; height: 18px; border-radius: 50%; background: #4285f4; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700; color: #fff;
  }

  .load-more { text-align: center; margin-bottom: 44px; }
  .load-more-btn {
    background: transparent; border: 1.5px solid var(--navy); color: var(--navy);
    padding: 10px 36px; border-radius: 4px; font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer;
    font-family: 'Source Sans 3', sans-serif;
  }
  .load-more-btn:hover { background: var(--navy); color: #fff; }

  /* ── DIRECTORY STRIP ── */
  .directory-strip {
    border: 1px solid var(--border);
    border-radius: 6px; padding: 18px 24px;
    margin-bottom: 40px;
    display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  }

  .directory-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-right: 8px; white-space: nowrap; }

  .dir-link {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--bg); border: 1px solid var(--border);
    border-radius: 3px; padding: 5px 12px;
    font-size: 12px; font-weight: 600; color: var(--navy); text-decoration: none;
  }
  .dir-link:hover { border-color: var(--gold); color: var(--gold); }

  /* ── ABOUT + MAP ── */
  .about-map {
    background: var(--navy);
    border-radius: 8px; padding: 36px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px; align-items: start;
    margin-bottom: 40px;
  }

  @media (max-width: 720px) { .about-map { grid-template-columns: 1fr; } }

  .about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px; color: #fff; margin-bottom: 12px;
  }

  .about-content p { font-size: 14px; color: #aab2c4; line-height: 1.7; margin-bottom: 14px; }
  .about-content a { color: var(--gold); text-decoration: none; font-weight: 600; }

  .about-stats { display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }

  .stat { text-align: center; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--gold); font-weight: 700; display: block; }
  .stat-label { font-size: 11px; color: #8892a4; text-transform: uppercase; letter-spacing: 0.08em; }

  .social-links { display: flex; gap: 10px; flex-wrap: wrap; }
  .social-link {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 3px; padding: 5px 10px;
    font-size: 11px; color: #aab2c4; text-decoration: none;
    text-transform: uppercase; letter-spacing: 0.06em;
  }
  .social-link:hover { border-color: var(--gold); color: var(--gold); }

  .map-wrap { border-radius: 6px; overflow: hidden; border: 2px solid rgba(201,168,76,0.3); }
  .map-wrap iframe { display: block; width: 100%; height: 300px; }

  .map-address { padding: 10px 14px; background: rgba(255,255,255,0.05); }
  .map-address p { font-size: 12px; color: #8892a4; line-height: 1.6; }
  .map-address strong { color: #c8cdd8; }

  /* ── FOOTER ── */
  .site-footer { background: var(--navy-deep); border-top: 2px solid var(--gold); padding: 28px 40px; text-align: center; }
  .footer-nap { font-size: 14px; color: #8892a4; line-height: 2; margin-bottom: 8px; }
  .footer-nap strong { color: #c8cdd8; }
  .footer-nap a { color: var(--gold); text-decoration: none; }
  .footer-disclaimer { font-size: 11px; color: #4a5060; max-width: 640px; margin: 0 auto; }

/*********************************************************************/
.form-group .input-group span {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}
.our-amenities .amenities-info .text h5 {
    padding: 0 35px;
}
.pricing-page .img-fluid {
    height: 100% !important;
    width: 100% !important;
}

.notice-bx p {
    font-size: 14px;
    line-height: 24px;
    font-style: italic;
}.post-meta {
    display: flex;
    font-size: 18px;
}
.post-meta .postlist {
    margin-bottom: 5px !important;
}
.readmore a {
    color: #007cba;
    font-weight: 500;
    text-transform: uppercase;
}
.post-hm {
    display: flex;
    gap: 15px;
}
.post-hm .blog-item {
    box-shadow: 0 5px 15px 0 rgba(62, 65, 159, .1);
    padding: 20px;
    width: 33.33%;
    background: #232222;
}
.post-hm .blog-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.related-pts .blog-cnt p {
    font-size: 17px;
}
.post-hm .blog-item h4 {
    font-size: 16px !important;
    margin: 10px 0 5px;
}
.blog-cnt a {
    text-decoration: none;
    color: #000;
}
.post-navigation-inner {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.post-navigation-inner a {
    background: #0089eb;
    color: #fff;
    padding: 10px 20px; text-decoration:none;
}
.related-posts {
    background: #0a0a0a;
    padding: 30px !important;
    margin-top: 30px;
}
.single section#comment-wrap {
    display: none;
}
.notice-bx {
    background: #f7f7f7;
    padding: 20px;
    margin-top: 20px;
}

.related-posts h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.blog-grid h2.entry-title {
    line-height: initial;
}
.blog-grid .post-content-inner {
    margin-bottom: 20px;
}
.blog-grid a.more-link {
    text-transform: uppercase;
    background: #0eadf7;
    color: #fff;
    padding: 5px 15px;
    font-size: 16px !important;
    letter-spacing: 1px !important;
}
@media (min-width:320px) and (max-width:767px){
.post-hm {
    display: block !important;
}	
.post-hm .blog-item {
    width: 100%;
    margin-bottom: 20px;
}	
.postlist-single .post-thum {
    margin: 0 !important;
    padding-right: 10px;
}
.related-posts h2 {
    font-size: 20px !important;
    margin-bottom: 20px;
}	
	
}
