/**
Theme Name: Virtue Web Solutions
Author: Virtue Web Solutions Ltd.
Author URI: https://virtuewebsolutions.co.uk
Description: Bespoke website theme by Virtue Web Solutions.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: virtue
Template: astra
*/

:root {
    --primary: #006994;
    --secondary: #f5f5f5;
    --tertiary: #82c2e6;
    --quaternary: #cbe3ef;
    --quinary: #f7f3ea;
}

html {
    overflow-y: auto;
}

section {
    padding: 80px 0;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1225px !important;
}

.secondary a *, .site-footer a *, .site-header a *, a {
    transition: all 0.5s ease !important;
}

p:last-of-type {
    margin-bottom: 0;
}

.gap-10 { height: 10px; }
.gap-20 { height: 20px; }
.gap-30 { height: 30px; }
.gap-40 { height: 40px; }
.gap-50 { height: 50px; }
.gap-60 { height: 60px; }
.gap-70 { height: 70px; }
.gap-80 { height: 80px; }
.gap-90 { height: 90px; }
.gap-100 { height: 100px; }

.pinch-20 { margin: auto; width: 20%; }
.pinch-40 { margin: auto; width: 40%; }
.pinch-50 { margin: auto; width: 50%; }
.pinch-60 { margin: auto; width: 60%; }
.pinch-75 { margin: auto; width: 75%; }
.pinch-80 { margin: auto; width: 80%; }


.w-100 {
    width: 100% !important;
}
.h-100 {
    height: 100%;
}

.text-center {
    text-align: center !important;
}

.bg-primary {
    background-color: var(--primary);
}
    .bg-primary, .bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary h4, .bg-primary h5 {
        color: #fff;
    }
.bg-secondary {
    background-color: var(--secondary);
}
.bg-tertiary {
    background-color: var(--tertiary);
}

.bg-quaternary {
    background-color: var(--quaternary);
}
.bg-quinary {
    background-color: var(--quinary);
}

.d-inline-block {
    display: inline-block !important;
}

.flex-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}

.align-center {
    align-items: center !important;
}

.grecaptcha-badge { 
    visibility: hidden !important;
}

.btn {
    width: auto;
    padding: 10px 30px;
    display: inline-block;
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.5s ease;
}
.btn-row {
    display: flex;
    gap: 1rem;
}
.btn-primary {
    color: #fff;
    background-color: var(--primary);
    border: 1px solid var(--primary);
}
    .btn-primary:hover {
        color: var(--primary);
        background-color: rgba(0, 0, 0, 0);
    }
.btn-secondary {
    border: 1px solid #fff;
    color: #fff;
}
    .btn-secondary:hover {
        color: var(--primary);
        background-color: #fff;
    }
.btn-tertiary {
    color: var(--primary);
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--primary);
}
    .btn-tertiary:hover {
        color: #fff;
        background-color: var(--primary);
    }

.ast-scroll-to-top-right {
    bottom: 50px;
}

/* ### CONTENT ### */

.text-end {
    text-align: right;
}

.home-hero {
    height: 500px;
    font-size: 18px;
    color: #fff;
    background-color: #ccc;
    background-size: cover;
    background-position: center calc(50% - 200px);
    background-repeat: no-repeat;
    position: relative;
}
    .home-hero h1 {
        font-size: 3em;
        color: #fff;
    }
    .home-hero .hero-overlay {
        background-color: rgba(0, 0, 0, 0.3);
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
    }
    .home-hero .container{
        position: relative;
        z-index: 2;
    }

.flower-collage {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}
    .flower-collage .tile {
        position: relative;
        overflow: hidden;
    }
        .flower-collage .tile img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .flower-collage .tile.tile-1 { /* top-left */
            border-radius: 0 30% 0 30%;        /* TL TR BR BL */
        }
        .flower-collage .tile.tile-2 { /* top-right */
            border-radius: 30% 0 30% 0;
        }
        .flower-collage .tile.tile-3 { /* bottom-left */
            border-radius: 30% 0 30% 0;
        }
        .flower-collage .tile.tile-4 { /* bottom-right */
            border-radius: 0 30% 0 30%;
        }

.stack-container {
    width: 100%;
    max-width: 560px;
    position: relative;
    margin-inline: auto;
}
    .stack-container::before {
        content: "";
        display: block;
        padding-top: calc(90% + 60px);
    }
    .stack-container .stack-1,
    .stack-container .stack-2 {
        width: 75%;
        aspect-ratio: 5 / 6;
        border-radius: 50px;
        position: absolute;
        top: 0;
        left: 0;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    .stack-container .stack-2 {
        top: 60px;
        left: 120px;
        background-position: calc(50% + 15px) 50%;
    }

.amenities-container {
    position: relative;
}
    .amenities-container svg {
        height: 35px;
        color: var(--primary);
    }
    .amenities-container b {
        color: var(--primary);
    }

.location-card {
    width: 100%;
    aspect-ratio: 5/6;
    background-color: #ccc;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 30px;
    position: relative;
}
    .location-card .name-plate {
        padding: 8px 30px;
        color: #000;
        background-color: rgba(255, 255, 255, 0.5);
        clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%);
        position: absolute;
        right: 0;
        bottom: 40px;
    }

.grey-box {
    padding: 30px;
    background-color: #f5f5f5;
    border-radius: 30px;
}

.pre-footer {
    color: #666;
    font-size: 0.9em;
}
    .pre-footer h3 {
        color: #555 !important;
    }
    .pre-footer svg {
        margin: 0 3px;
        font-size: 1.8em;
    }
        .pre-footer svg:first-of-type {
            margin-left: 0;
        }
    .pre-footer .footer-menu ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
        .pre-footer .footer-menu ul li {
            margin: 0;
            padding: 0;
        }

/* ========== Cottage Page (scoped) ========== */

.cottage-page .cottage-section{ padding: 70px 0; }
.cottage-page .cottage-section.pt-0{ padding-top: 0; }

/* Local Area card (grey-box) polish */
.cottage-page .cottage-local-card{
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,.10);
  background: #f6f7f9;
}

.cottage-page .cottage-local-card h5{
  margin-bottom: 10px;
}

/* Scannable mini list */
.cottage-page .cottage-mini-list{
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.cottage-page .cottage-mini-list li{
  padding-left: 16px;
  position: relative;
  margin: 8px 0;
  color: rgba(0,0,0,.72);
  line-height: 1.45;
}

.cottage-page .cottage-mini-list li:before{
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ast-global-color-0);
  position: absolute;
  left: 0;
  top: 7px;
}

/* Copy */
.cottage-page .cottage-copy p{
  max-width: 72ch;
  color: rgba(0,0,0,.78);
  line-height: 1.7;
}

.cottage-page .cottage-copy h3{
  margin-top: 26px;
}

/* Cards */
.cottage-page .cottage-card{
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.cottage-page .cottage-card--muted{
  background: #f6f7f9;
}

.cottage-page .cottage-card-title{
  margin-bottom: 14px;
  font-weight: 700;
}

/* Sticky right column (desktop) */
@media (min-width: 992px){
  .cottage-page .cottage-sticky{
    position: sticky;
    top: 110px;
  }
}

/* At a glance list */
.cottage-page .cottage-facts{
  list-style: none;
  padding: 0;
  margin: 0;
}

.cottage-page .cottage-facts li{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.cottage-page .cottage-facts li:last-child{
  border-bottom: 0;
}

.cottage-page .cottage-facts span{
  color: rgba(0,0,0,.65);
}

.cottage-page .cottage-facts .fact-val{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cottage-page .cottage-facts strong{
  font-weight: 700;
}

.cottage-page .cottage-facts small{
  color: rgba(0,0,0,.60);
}

/* Good to know bullets */
.cottage-page .cottage-notes{
  list-style: none;
  padding: 0;
  margin: 0;
}

.cottage-page .cottage-notes li{
  padding-left: 18px;
  position: relative;
  margin: 10px 0;
  color: rgba(0,0,0,.72);
}

.cottage-page .cottage-notes li:before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ast-global-color-0);
  position: absolute;
  left: 0;
  top: 7px;
}

/* Lead text */
.cottage-page .cottage-lead{
  max-width: 72ch;
  color: rgba(0,0,0,.72);
}

/* Sleeping arrangements grid */
.cottage-page .sleeping-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.cottage-page .sleeping-card{
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
}

.cottage-page .sleeping-card h5{
  margin-bottom: 10px;
  font-weight: 800;
}

.cottage-page .sleeping-card .muted{
  color: rgba(0,0,0,.65);
  margin-bottom: 0;
}

/* Accordion (light touch, scoped) */
.cottage-page .accordion-item{
    padding: 30px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 991px){
  .cottage-page .cottage-section{ padding: 54px 0; }
  .cottage-page .sleeping-grid{ grid-template-columns: 1fr; }
}

/* ========== Location Page (scoped) ========== */

.location-page .loc-lead{
  max-width: 64ch;
  color: rgba(0,0,0,.78);
  line-height: 1.7;
  margin-bottom: 0;
}

.location-page .loc-lead-sm{
  max-width: 80ch;
  color: rgba(0,0,0,.74);
  line-height: 1.7;
  margin-bottom: 0;
}

.location-page .loc-section-intro{
  max-width: 70ch;
  margin: 0 auto;
  color: rgba(0,0,0,.70);
}

/* Actions */
.location-page .loc-hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Cards */
.location-page .loc-card{
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
}

.location-page .loc-card--muted{
  background: #f6f7f9;
}

.location-page .loc-card-title{
  margin-bottom: 10px;
  font-weight: 700;
}

/* Maps */
.location-page .loc-map-embed{
  border-radius: 16px;
  overflow: hidden;
}

.location-page .loc-map-embed iframe{
  height: 360px !important;
  display: block;
}

@media (max-width: 991px){
  .location-page .loc-map-embed iframe{
    height: 300px !important;
  }
}

/* Bullets */
.location-page .loc-bullets{
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.location-page .loc-bullets li{
  padding-left: 16px;
  position: relative;
  margin: 8px 0;
  color: rgba(0,0,0,.72);
}

.location-page .loc-bullets li:before{
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 8px;
}

/* Tag */
.location-page .loc-tag{
  display: inline-block;
  margin-top: 10px;
  margin-right: 5px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.05);
  color: rgba(0,0,0,.75);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Image placeholders */
.location-page .loc-image-block{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.04);
}

.location-page .loc-image-placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  padding: 18px;
  text-align: center;
  color: rgba(0,0,0,.55);
  font-weight: 700;
  border: 2px dashed rgba(0,0,0,.18);
  border-radius: 18px;
}

.location-page .loc-image-block--mini .loc-image-placeholder{
  min-height: 150px;
}

/* CTA strip */
.location-page .loc-cta-strip{
  border-radius: 22px;
  padding: 26px;
  background: var(--primary);
  color: #fff;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.location-page .loc-cta-copy h3{
  margin: 0 0 8px;
  color: #fff;
}

.location-page .loc-cta-copy p{
  margin: 0;
  opacity: .95;
}

/* CTA buttons on dark bg */
.location-page .location-final-cta .btn-primary{
  background: #fff;
  border-color: #fff;
  color: var(--primary);
}

.location-page .location-final-cta .btn-primary:hover{
  background: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.92);
}

.location-page .location-final-cta .btn-tertiary{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.85);
}

.location-page .location-final-cta .btn-tertiary:hover{
  background: rgba(255,255,255,.14);
}

/* ========== Equal-height rows ========== */
.location-page .loc-eq-row > [class*="col-"]{
  display: flex;
}

.location-page .loc-eq-row .loc-card,
.location-page .loc-eq-row .loc-image-block{
  width: 100%;
}

/* Make sure “Dog friendly” pills never stretch full width */
.location-page .loc-tag{
  display: inline-flex;
  align-self: flex-start;
}

@media (max-width: 991px){
  .location-page .loc-image-placeholder{ min-height: 200px; }
  .location-page .loc-cta-strip{ padding: 22px; }
}

/* ========== Rates Page ========== */

.rates-page .rates-lead{
  max-width: 720px;
  color: rgba(0,0,0,.70);
}

.rates-page .rates-nav .btn{
  margin-bottom: 8px;
}

.rates-page .rates-card{
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.04);
}

.rates-page .rates-card h5{
  margin: 0 0 12px;
}

.rates-page .rates-summary-line{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  color: rgba(0,0,0,.70);
}

.rates-page .rates-summary-total{
  border-bottom: 0;
  padding-top: 10px;
  color: rgba(0,0,0,.65);
}

.rates-page .rates-strong{
  font-weight: 800;
  color: rgba(0,0,0,.85);
  white-space: nowrap;
}

.rates-page .rates-note{
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 12px;
  color: rgba(0,0,0,.65);
  font-weight: 600;
}

/* Bullets */
.rates-page .rates-bullets{
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: rgba(0,0,0,.70);
}

.rates-page .rates-bullets li{
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
}

.rates-page .rates-bullets li:last-child{
  margin-bottom: 0;
}

.rates-page .rates-bullets li:before{
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 8px;
}

/* Why card (left column filler) */
.rates-page .rates-why{
  padding: 18px;
}

/* Highlight cards */
.rates-page .rates-highlight h4{
  margin: 10px 0 6px;
}

.rates-page .rates-highlight p{
  margin: 0;
  color: rgba(0,0,0,.65);
}

.rates-page .rates-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,105,148,.10);
  color: var(--primary);
  font-size: 1.15rem;
}

/* Example cards */
.rates-page .rates-example h5{
  margin-bottom: 10px;
}

.rates-page .rates-example-row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.rates-page .rates-example-math{
  padding-top: 10px;
  color: rgba(0,0,0,.60);
  font-weight: 600;
}

/* Steps */
.rates-page .rates-steps{
  display: grid;
  gap: 14px;
}

.rates-page .rates-step{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.06);
}

.rates-page .rates-step-number{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex: 0 0 34px;
}

.rates-page .rates-step-copy p{
  margin: 6px 0 0;
  color: rgba(0,0,0,.65);
}

/* Image placeholders */
.rates-page .rates-image-block{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.04);
  overflow: hidden;
}

.rates-page .rates-image-placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 18px;
  text-align: center;
  color: rgba(0,0,0,.55);
  font-weight: 700;
  border: 2px dashed rgba(0,0,0,.18);
  border-radius: 18px;
}

/* CTA strip */
.rates-page .rates-cta-strip{
  border-radius: 22px;
  padding: 26px;
  background: var(--primary);
  color: #fff;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.rates-page .rates-cta-strip h3{
  margin: 0 0 8px;
  color: #fff;
}

.rates-page .rates-cta-strip p{
  margin: 0;
  opacity: .95;
}

.rates-page .rates-cta-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.rates-page .rates-cta-strip .btn-primary{
  background: #fff;
  border-color: #fff;
  color: var(--primary);
}

.rates-page .rates-cta-strip .btn-primary:hover{
  background: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.92);
}

.rates-page .rates-cta-strip .btn-tertiary{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.85);
}

.rates-page .rates-cta-strip .btn-tertiary:hover{
  background: rgba(255,255,255,.14);
}

/* Equal-height rows (cards only) */
.rates-page .rates-eq-row > [class*="col-"]{
  display: flex;
}

.rates-page .rates-eq-row .rates-card{
  width: 100%;
}

/* Responsive */
@media (max-width: 991px){
  .rates-page .rates-image-placeholder{ min-height: 210px; }
  .rates-page .rates-cta-strip{ padding: 22px; }
}

/* ========== Contact Page ========== */

.contact-page .contact-lead{
  max-width: 70ch;
  color: rgba(0,0,0,.70);
}

.contact-page .contact-card{
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.04);
}

.contact-page .contact-muted{
  color: rgba(0,0,0,.62);
  margin-bottom: 0;
}

.contact-page .contact-info-row{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.contact-page .contact-info-row:last-child{
  border-bottom: 0;
}

.contact-page .contact-info-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,105,148,.10);
  color: var(--primary);
  font-size: 1.1rem;
  flex: 0 0 44px;
}

.contact-page .contact-note{
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 12px;
  color: rgba(0,0,0,.70);
}

.contact-page .contact-bullets{
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: rgba(0,0,0,.70);
}

.contact-page .contact-bullets li{
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
}

.contact-page .contact-bullets li:last-child{
  margin-bottom: 0;
}

.contact-page .contact-bullets li:before{
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 8px;
}

/* Final CTA strip */
.final-cta-strip{
  border-radius: 22px;
  padding: 26px;
  background: var(--primary);
  color: #fff;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.final-cta-strip h3{
  margin: 0 0 8px;
  color: #fff;
}

.final-cta-strip p{
  margin: 0;
  opacity: .95;
}

.final-cta-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.final-cta-strip .btn-primary{
  background: #fff;
  border-color: #fff;
  color: var(--primary);
}

.final-cta-strip .btn-primary:hover{
  background: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.92);
}

.final-cta-strip .btn-tertiary{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.85);
}

.final-cta-strip .btn-tertiary:hover{
  background: rgba(255,255,255,.14);
}

/* WPForms tidy (scoped) */
.contact-page .wpforms-container{
  margin: 0 !important;
}

.contact-page .wpforms-container .wpforms-field-label{
  font-weight: 700;
}

.contact-page .wpforms-container input[type="text"],
.contact-page .wpforms-container input[type="email"],
.contact-page .wpforms-container input[type="tel"],
.contact-page .wpforms-container textarea,
.contact-page .wpforms-container select{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.14);
  padding: 12px 14px;
}

.contact-page .wpforms-container textarea{
  min-height: 140px;
}

/* Use your existing button language */
.contact-page .wpforms-container button[type="submit"]{
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
}

/* Map placeholder */
.contact-page .contact-map-embed{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.04);
}

.contact-page .contact-image-placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 18px;
  text-align: center;
  color: rgba(0,0,0,.55);
  font-weight: 700;
  border: 2px dashed rgba(0,0,0,.18);
  border-radius: 18px;
}

/* CTA strip */
.contact-page .contact-cta-strip{
  border-radius: 22px;
  padding: 26px;
  background: var(--primary);
  color: #fff;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-page .contact-cta-strip h3{
  margin: 0 0 8px;
  color: #fff;
}

.contact-page .contact-cta-strip p{
  margin: 0;
  opacity: .95;
}

.contact-page .contact-cta-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.contact-page .contact-cta-strip .btn-primary{
  background: #fff;
  border-color: #fff;
  color: var(--primary);
}

.contact-page .contact-cta-strip .btn-primary:hover{
  background: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.92);
}

.contact-page .contact-cta-strip .btn-tertiary{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.85);
}

.contact-page .contact-cta-strip .btn-tertiary:hover{
  background: rgba(255,255,255,.14);
}

.contact-page .contact-map-embed{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.04);
}

.contact-page .contact-map-iframe{
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

@media (max-width: 991px){
  .contact-page .contact-map-iframe{ height: 260px; }
}

@media (max-width: 991px){
  .contact-page .contact-image-placeholder{ min-height: 220px; }
  .contact-page .contact-cta-strip{ padding: 22px; }
}

/* ### MEDIA QUERIES ### */

@media (max-width: 991.98px) {
    .pinch-50 { 
        margin: auto; width: 100%;
    }
    .home-hero {
        height: auto;
        background-position: center center;
    }
}

@media only screen and (max-width: 600px) {
    div.wpforms-container .wpforms-form .wpforms-field:not(.wpforms-field-phone):not(.wpforms-field-select-style-modern):not(.wpforms-field-radio):not(.wpforms-field-checkbox):not(.wpforms-field-layout):not(.wpforms-field-repeater) {
        overflow-x: visible !important;
    }
}

/* ### FORMS ### */

.form-wrap {
    padding: 30px;
    background-color: #aaa;
    border-radius: 5px;
}

.form-wrap .wpforms-container-full {
    margin: 0 !important;
}
.form-wrap .wpforms-field {
    margin-bottom: 10px !important;
    padding: 0 !important;
}
.form-wrap .wpforms-field-label,
.form-wrap .wpforms-field-sublabel {
    margin: 0 !important;
    margin-bottom: 5px !important;
    font-weight: 400 !important;
}
.form-wrap .wpforms-error {
    margin-top: 5px !important;
}

.form-wrap .wpforms-submit {
    padding: 10px 40px !important;
    color: #fff !important;
    font-size: 18px !important;
    line-height: 18px !important;
    background-color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    border-radius: 5px !important;
    box-shadow: 0 !important;
    transition: all 0.5s ease !important;
}
    .form-wrap .wpforms-submit:hover {
        color: var(--primary) !important;
        background-color: #fff !important;
        background: #fff !important;
    }

textarea.wpforms-field-large {
    min-height: 250px;
}

/* ### Scrollbar ### */

/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Animation Classes */

.fadeIn,
.fadeSlideUp,
.fadeSlideDown,
.fadeSlideFromLeft,
.fadeSlideFromRight,
.fadeZoomIn {
    opacity: 0;
}
.fadeIn.active{
    animation-name: fadeIn;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    animation-delay: 0;
    animation-fill-mode: forwards;
}
.fadeSlideUp.active {
    animation-name: fadeSlideUp;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    animation-delay: 0;
    animation-fill-mode: forwards;
}
.fadeSlideDown.active {
    animation-name: fadeSlideDown;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    animation-delay: 0;
    animation-fill-mode: forwards;
}
.fadeSlideFromLeft.active {
    animation-name: fadeSlideFromLeft;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    animation-delay: 0;
    animation-fill-mode: forwards;
}
.fadeSlideFromRight.active {
    animation-name: fadeSlideFromRight;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    animation-delay: 0;
    animation-fill-mode: forwards;
}
.fadeZoomIn.active {
    animation-name: fadeZoomIn;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    animation-delay: 0;
    animation-fill-mode: forwards;
}

.delay0 { animation-delay: 0; }
.delay01 { animation-delay: 0.1s; }
.delay02 { animation-delay: 0.2s; }
.delay03 { animation-delay: 0.3s; }
.delay04 { animation-delay: 0.4s; }
.delay05 { animation-delay: 0.5s; }
.delay06 { animation-delay: 0.6s; }
.delay07 { animation-delay: 0.7s; }
.delay08 { animation-delay: 0.8s; }
.delay09 { animation-delay: 0.9s; }
.delay1 { animation-delay: 1s; }
.delay10 { animation-delay: 1.0s; }
.delay11 { animation-delay: 1.1s; }
.delay12 { animation-delay: 1.2s; }
.delay13 { animation-delay: 1.3s; }
.delay14 { animation-delay: 1.4s; }
.delay15 { animation-delay: 1.5s; }
.delay16 { animation-delay: 1.6s; }
.delay17 { animation-delay: 1.7s; }
.delay18 { animation-delay: 1.8s; }
.delay19 { animation-delay: 1.9s; }
.delay20 { animation-delay: 2.0s; }


/* Animation */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeSlideFromRight {
    from {
        transform: translateX(80px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeSlideFromLeft {
    from {
        transform: translateX(-80px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

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

@keyframes fadeZoomIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* ### PRIVATE SITE LOGIN WALL ################################################ */

.vws-login-wall{
  padding: 110px 0;
  background: var(--secondary);
}

.vws-login-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  padding: 34px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.vws-login-title{
  margin: 0 0 6px 0;
}

.vws-login-subtitle{
  margin: 0 0 24px 0;
  opacity: .85;
}

.vws-login-field{
  margin-bottom: 16px;
}

.vws-login-field label{
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

.vws-login-field input{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.14);
  padding: 12px 14px;
}

.vws-login-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.vws-login-remember{
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.vws-login-forgot{
  font-weight: 600;
}

.vws-login-error,
.vws-login-notice{
  border-radius: 14px;
  padding: 12px 14px;
}

.vws-login-error{
  background: rgba(220,53,69,.08);
  border: 1px solid rgba(220,53,69,.25);
}

.vws-login-notice{
  background: rgba(25,135,84,.08);
  border: 1px solid rgba(25,135,84,.25);
}

.vws-login-help{
  margin: 0;
  opacity: .8;
}

/* ########################################################################### */
/* Logout icon (menu) */

/*
  Astra menu selector is typically .main-header-menu. We scope tightly to avoid
  affecting Bootstrap or other links.
*/
.site-header .main-header-menu .vws-menu-item-logout > a.vws-logout-link{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  line-height: 1;
  text-decoration: none !important;
}

.site-header .main-header-menu .vws-menu-item-logout > a.vws-logout-link:hover,
.site-header .main-header-menu .vws-menu-item-logout > a.vws-logout-link:focus{
  filter: brightness(1.08);
  color: #fff !important;
}

.site-header .main-header-menu .vws-menu-item-logout > a.vws-logout-link i{
  font-size: 16px;
}

/* ########################################################################### */

/* Logout icon (Astra Header Builder / shortcode)
   Add an "HTML" element to the header builder and paste: [vws_logout_icon]
*/
.site-header a.vws-logout-icon{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  line-height: 1;
  text-decoration: none !important;
}

.site-header a.vws-logout-icon:hover,
.site-header a.vws-logout-icon:focus{
  filter: brightness(1.08);
  color: #fff !important;
}

.site-header a.vws-logout-icon i{
  font-size: 16px;
}