
/* New New================================= PRICING PAGE STYLES ================================= */

.plus10-pricing {
    padding: 80px 0;
    background: #2a3138;
    font-family: 'Montserrat', sans-serif;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Tabs Navigation */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
    position: relative; /* required for bracket position */
    z-index: 1;    
}

.pricing-tabs .tab {
    padding: 14px 32px;
    background: white;
    color: #5C86B0;
    border: 2px solid #5C86B0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    position: relative; /* required for bracket */
}

.pricing-tabs .tab:hover {
    background: #5C86B0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(92, 134, 176, 0.3);
}

.pricing-tabs .tab.active {
    background: #5C86B0;
    color: white;
    box-shadow: 0 6px 20px rgba(92, 134, 176, 0.4);
}



/* Show bracket on active */
.pricing-tabs.bracket-active::after {
    opacity: 1;
}


/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}
.tab-content {
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 0px;
    transition: all 0.3s ease;
}

/* .tab-content.active {
    border-color: #5C86B0;
    box-shadow: 0 0 25px rgba(92, 134, 176, 0.3);
} */

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pricing Group */
.pricing-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}

/* Pricing Card */
.pricing-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 0px solid transparent;
    position: relative;
    overflow: hidden;
}
/* Force the table section to take remaining space */
.table-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Push button to bottom */
.purchase-btn-wrapper {
    margin-top: auto !important;
    text-align: center;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #5C86B0 0%, #7AA3CC 100%);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(92, 134, 176, 0.2);
    border-color: #5C86B0;
}

/* Package Title & Subtitle */
.package-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #5C86B0;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.package-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 12px;
    font-weight: 600;
    text-align: center;
}

/* Price Block */
.price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 0;
    margin-bottom: 12px;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    line-height: 1;
    margin-bottom: 8px;
}

.duration {
    font-size: 1rem;
    color: #666;
    margin-bottom: 12px;
}

.discount,
.card-price {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 600;
    background: #d4edda;
    padding: 6px 14px;
    border-radius: 6px;
    text-align: center;
}

.no-transfer-info {
    font-size: 0.85rem;
    color: #721c24;
    font-weight: 600;
    background: #f8d7da;
    padding: 6px 14px;
    border-radius: 6px;
    text-align: center;
    margin: 12px 38px 0px 38px;
}
.bracket-arrow {
    position: absolute;
    bottom: -22px; /* distance between tab + bracket */
    width: 0;
    height: 0;

    /* Downward arrow / triangle */
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid #5C86B0; /* arrow color */

    transform: translateX(-50%);
    transition: left 0.35s ease;
    z-index: 10;
}
/* ========================= */
/* TABLE LAYOUT FOR FEATURES */
/* ========================= */

.package-features {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.package-features tbody tr {
    border-bottom: 1px solid #d9dee3;
    position: relative;
}

.package-features tbody tr td {
    padding: 14px 0;
    font-size: 0.95rem;
    color: #333;
    position: relative;
}

.package-features tbody tr td:first-child {
    padding-right: 15px;
}

.package-features tbody tr td:last-child {
    text-align: right;
    padding-left: 30px;
}

/* Vertical Divider (like the original li::after) */
.package-features tbody tr::after {
    content: "";
    position: absolute;
    right: 113px;      /* aligns with screenshot layout */
    top: 0;
    bottom: 0;
    width: 1px;
    background: #c7cdd3;
}

/* Left text (feature name + possible subtext) */
.package-features .feat-title {
    font-weight: 700;
    color: #000;
    display: block;
}

.package-features .feat-title-normal {
    font-weight: 400;
    color: #333;
    display: block;
}

.package-features .feat-sub {
    font-size: 0.82rem;
    color: #666;
    font-style: italic;
    margin-top: 2px;
    display: block;
}

/* Right column value (e.g., "2 per week") */
.package-features .feat-value {
    font-weight: 600;
    color: #000;
    white-space: nowrap;
}
@media (max-width: 768px) {

    /* Limit the container height so the divider never stretches up */
    .table-wrapper {
        position: relative;
        padding-top: 10px;  /* adjusts space above table */
    }

    /* Adjust vertical divider */
    .table-wrapper .package-features tbody tr::after {
        right: 130px !important;       /* position line correctly */
        top: 10px !important;         /* reduce line reach */
        bottom: 10px !important;
        height: calc(100% - 20px);    /* perfect line height */
    }
}

/* Grouped items styling */
.package-features tbody tr.grouped-items td:first-child div {
    margin-bottom: 8px;
}

.package-features tbody tr.grouped-items td:first-child div:last-child {
    margin-bottom: 0;
}

.package-features tbody tr.grouped-items td.feat-value {
    vertical-align: middle;
}

/* Testing Features Style (Checklist with ticks) */
.testing-features {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.testing-features li {
    position: relative;
    padding: 12px 35px 12px 0;
    font-size: 0.95rem;
    color: #333;
    font-weight: 400;
    line-height: 1.5;
    border-bottom: 1px solid #e9ecef;
}

.testing-features li:last-child {
    border-bottom: none;
}

/* Green checkmark for included items */
.testing-features li.included::after {
    content: "✓";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: #28a745;
    font-weight: 700;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Red X for not-included items */
.testing-features li.not-included::after {
    content: "✗";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: #dc3545;
    font-weight: 700;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add-Ons Table */
.addons-table {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.addons-heading {
    text-align: center;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 35px;
    font-family: 'Montserrat', sans-serif;
}

.addon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: transparent;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.addon-row:last-child {
    border-bottom: none;
}

.addon-row:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
}

.addon-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
}

.addon-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .pricing-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .package-title {
        font-size: 1.5rem;
    }

    .price {
        font-size: 2.5rem;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .plus10-pricing {
        padding: 60px 0;
    }

    .pricing-container {
        padding: 0 15px;
    }

    .pricing-tabs-wrapper {
        padding: 0;
    }

    .pricing-tabs {
        display: flex;
        width: 100%;
        padding: 0;
        margin: 30px 0;
        justify-content: center;
        gap: 8px;
    }

    .pricing-tabs .tab {
        flex: 1;
        margin: 0;
        padding: 14px 10px;
        text-align: center;
        font-size: 13px;
        font-weight: 600;
        background: white;
        color: #5C86B0;
        border: 2px solid #5C86B0;
        border-radius: 8px;
        transition: all 0.2s ease;
    }

    .pricing-tabs .tab span {
        display: inline-block;
    }

    .pricing-tabs .tab.active {
        background: #5C86B0;
        color: white;
    }

    .pricing-tabs .tab:hover {
        background: #4A75A0;
        color: white;
        border-color: #4A75A0;
    }

    .bracket-arrow {
        /* display: none !important; */
    }

    .pricing-group {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .package-title {
        font-size: 1.4rem;
    }

    .price {
        font-size: 2.2rem;
    }

    .addon-row {
        /* flex-direction: column; */
        text-align: center;
        gap: 10px;
        padding: 20px;
    }

    .addon-name {
        font-size: 1rem;
        text-align: left;
    }

    .addon-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .package-title {
        font-size: 1.3rem;
    }

    .price {
        font-size: 2rem;
    }

    .package-features li {
        font-size: 13px;
        padding: 10px 0 10px 25px;
    }

    .pricing-tabs .tab {
        padding: 12px 6px;
        font-size: 12px;
    }

    .addons-heading {
        font-size: 1.5rem;
    }
}
.purchase-btn-wrapper {
    margin-top: 25px;
    text-align: center;
}

.purchase-btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    background: #5C86B0;
    color: #ffffff;
    font-weight: normal;
    font-size: 1rem;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    margin: 14px 0px;
    box-shadow: 0 4px 14px rgba(92, 134, 176, 0.35);
}

.purchase-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(92, 134, 176, 0.45);
    color: #ffffff;
}
.purchase-btn:visited {
    color: #ffffff !important;
}
.addon-book-btn:visited {
    color: #ffffff !important;
}
.purchase-btn.pack-btn {
    background: #3C4F65; /* darker tier */
    box-shadow: 0 4px 14px rgba(60, 79, 101, 0.35);
}

.purchase-btn.pack-btn:hover {
    background: #2E3E50;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(46, 62, 80, 0.45);
    color: #ffffff;
}
/* GRID WRAPPER */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    /* padding: 0 20px; */
}

/* INDIVIDUAL CARD */
.addon-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 22px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.3s ease;
    justify-content: space-between;
    height: 100%;
}

.addon-card:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* TEXT */
.addon-card .addon-name {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.addon-card .addon-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}
.addon-card-text{
    text-align: center;
}

/* BUTTON */
.addon-book-btn {
    padding: 12px 0;
    background: #5C86B0;
    color: #fff;
    text-align: center;
    font-weight: normal;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.25s ease;
}

.addon-book-btn:hover {
    background: #4A75A0;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(92, 134, 176, 0.4);
    color: #fff;
}

/* MOBILE */
@media (max-width: 992px) {
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .addons-grid {
        grid-template-columns: 1fr;
    }
}

/*=================================End Pricing Page Style==================================*/

/* Contact page styles removed - using default theme styles only */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

* {
    -webkit-tap-highlight-color: transparent;
}

/* Performance optimizations */
.hero__bg,
.navbar,
.service-card,
.testimonial-card,
.blog-card,
.value-card,
.gallery__item {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Staggered entrance animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Premium hover effects */
.premium-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Enhanced interactive states */
button,
.btn,
a[href],
.service-card,
.testimonial-card,
.blog-card,
.navbar__link {
    /* cursor: pointer; */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for better accessibility */
button:focus-visible,
.btn:focus-visible,
a[href]:focus-visible,
.navbar__toggle:focus-visible {
    /* outline: 2px solid #4A90E2; */
    outline: none;
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3);
}

/* ===================================
   COMPREHENSIVE TABLET RESPONSIVE STYLES
   ================================= */

/* Tablet breakpoint: 768px - 1024px */
@media (min-width: 768px) and (max-width: 1199px) {

    /* ===== HERO SECTION ===== */
    .hero {
        /* height: 800px; */
        padding: 0;
    }

    .hero .container {
        padding-top: 90px;
        padding-bottom: 90px;
        padding-left: 40px;
        padding-right: 40px;
        justify-content: center;
    }

    .hero__title {
        /* font-size: 60px; */
        /* line-height: 70px; */
        text-align: center;
    }

    .hero__copy {
        font-size: 20px;
        /* max-width: 500px; */
        text-align: center;
        /* margin: 0 auto 30px; */
    }

    .hero__actions {
        text-align: center;
        margin: 30px 0 0 0;
    }

    .quick-actions__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        max-width: 700px;
        margin: 60px auto 0;
    }

    .quick-action-card {
        /* padding: 20px 15px; */
    }

    .quick-action-card__icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }

    .quick-action-card__title {
        font-size: 14px;
    }

    /* ===== NAVIGATION ===== */
    .navbar__container {
        padding: 0 30px;
    }

    #site-header .navbar-nav > li > a {
        padding: 12px 16px;
        font-size: 15px;
    }

    /* ===== SERVICES SECTION ===== */
    .services {
        padding: 80px 0;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        /* padding: 0 30px; */
    }

    .service-card {
        /* height: 280px; */
    }

    .service-card__overlay {
        padding: 30px 20px;
    }

    .service-card__benefits li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .service-card__title {
        font-size: 16px;
    }

    /* ===== SPLIT SECTIONS ===== */
    .split-row {
        /* padding: 70px 0; */
    }

    .split-content {
        gap: 50px;
        /* padding: 0 30px; */
    }

    .split-title {
        font-size: 32px;
    }

    .split-desc {
        font-size: 15px;
    }

    .split-image {
        /* height: 400px; */
    }

    /* ===== STEPS SECTION ===== */
    .steps {
        padding: 80px 0;
    }

    .steps__grid {
        /* grid-template-columns: repeat(3, 1fr); */
        gap: 30px;
        /* padding: 0 30px; */
        display: flex;
        flex-wrap: wrap;
    }

    .step-card {
        /* padding: 30px 20px; */
    }

    .step-card__title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .step-card__desc {
        font-size: 14px;
    }

    .steps__cta {
        /* margin-top: 50px; */
    }

    /* ===== VALUES SECTION ===== */
    .values-split {
        padding: 80px 0;
    }

    .values-split .container {
        /* padding: 0 30px; */
        gap: 40px;
    }

    .values-split__content{
        text-align: center;
    }

    .values-split__desc{
        margin: auto;
    }

    .values-split__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .values-split__desc {
        font-size: 15px;
    }

    .values-split__right {
        gap: 20px;
    }

    .values-phone {
        width: 200px;
        height: auto;
    }

    .value-card {
        padding: 20px;
        margin-bottom: 15px;
    }

    .value-card__title {
        font-size: 1rem;
    }

    .value-card__desc {
        font-size: 13px;
    }

    /* ===== TESTIMONIALS SECTION ===== */
    .testimonials {
        padding: 80px 0;
    }

    .testimonials__swiper {
        /* padding: 0 30px; */
    }

    .testimonial-card {
        padding: 30px;
        gap: 25px;
    }

    .testimonial-card__content {
        padding: 0;
    }

    .testimonial-card__quote h3 {
        /* font-size: 1.3rem; */
    }

    .testimonial-card__text {
        font-size: 15px;
    }

    .testimonial-card__name {
        /* font-size: 1.1rem; */
    }

    .testimonials__nav {
        gap: 15px;
    }

    /* ===== BLOG SECTION ===== */
    .blog {
        padding: 80px 0;
    }

    .blog__container {
        /* padding: 0 30px; */
    }

    .blog__title {
        font-size: 2rem;
        /* margin-bottom: 40px; */
    }

    .blog-card {
        /* height: 350px; */
    }

    .blog-card__content {
        /* padding: 25px; */
    }

    .blog-card__title {
        font-size: 1.1rem;
    }

    .blog-card__date {
        font-size: 13px;
    }

    /* ===== CTA SECTION ===== */
    .cta-band {
        padding: 60px 0;
    }

    .cta-band__content {
        padding: 0 30px;
        text-align: center;
    }

    .cta-band__title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .cta-band__subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-band__btn {
        padding: 14px 35px;
        font-size: 16px;
    }

    /* ===== GALLERY SECTION ===== */
    .gallery {
        padding: 80px 0;
    }

    .gallery__header {
        /* padding: 0 30px; */
        margin-bottom: 50px;
    }

    .gallery__title {
        font-size: 2rem;
    }

    .gallery__subtitle {
        font-size: 15px;
    }

    .gallery__item {
        width: 280px;
        height: 200px;
        /* margin-right: 20px; */
    }

    .gallery__row {
        /* margin-bottom: 25px; */
    }

    /* ===== FOOTER ===== */
    .footer__top {
        /* padding: 50px 0 30px 0; */
    }

    .footer__cols {
        /* grid-template-columns: 2fr 1fr 1fr 1fr; */
        /* gap: 50px; */
        /* padding: 0 30px; */
    }

    .footer__logo {
        /* height: 80px; */
    }

    .footer__title {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .footer__tagline,
    .footer__contact-item,
    .footer__list a {
        font-size: 14px;
    }

    .footer__bottom {
        /* padding: 15px 0; */
    }

    .footer__bottom-content {
        /* padding: 0 30px; */
        flex-direction: column;
        /* gap: 15px; */
        text-align: center;
    }

    /* ===== CONTACT FORM 7 ===== */
    .wpcf7-form {
        gap: 18px;
    }

    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form input[type="url"],
    .wpcf7-form input[type="number"],
    .wpcf7-form select,
    .wpcf7-form textarea {
        padding: 14px 18px;
        font-size: 15px;
    }

    .wpcf7-form input[type="submit"] {
        padding: 15px 35px;
        font-size: 17px;
    }

    .wpcf7-form label {
        font-size: 15px;
    }

    .wpcf7-form .form-row {
        gap: 18px;
    }

    /* ===== CONTACT PAGE SPECIFIC ===== */
    .contact-section {
        padding: 70px 0;
    }

    .contact-section .container {
        /* padding: 0 30px; */
    }

    .page-header {
        margin-bottom: 50px;
    }

    .page-title {
        /* font-size: 2.2rem; */
    }

    .page-subtitle {
        font-size: 16px;
    }

    .contact-content {
        gap: 50px;
        margin-top: 30px;
    }

    .contact-info-section {
        /* padding: 25px 20px; */
    }

    .contact-info-title {
        /* font-size: 1.5rem; */
    }

    /* ===== BUTTONS AND INTERACTIVE ELEMENTS ===== */
    .btn {
        padding: 12px 25px;
        font-size: 15px;
    }

    .btn-primary,
    .hero__btn,
    .values__btn,
    .cta__btn {
        padding: 14px 32px;
        font-size: 15px;
    }

    /* ===== SECTION HEADERS ===== */
    .section {
        padding: 62px 0 70px;
    }

    .section__header {
        margin-bottom: 3rem;
        padding: 0 30px;
    }

    .section__title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section__subtext {
        font-size: 15px;
        max-width: 500px;
    }

    /* ===== TOUCH OPTIMIZATIONS ===== */
    button,
    .btn,
    a[href],
    .service-card,
    .testimonial-card,
    .blog-card {
        min-height: 44px; /* Apple's recommended touch target size */
    }

    /* Larger touch targets for navigation */
    .navbar__link{
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* ===== HOVER STATES ADJUSTMENT ===== */
    /* Reduce hover intensity on tablets for better touch experience */
    .service-card:hover,
    .testimonial-card:hover,
    .blog-card:hover {
        transform: translateY(-3px);
    }

    .premium-hover:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 991px) {
    .section.gallery {
        padding: 82px 0 90px;
    }
}

/* ===================================
   IPAD AIR SPECIFIC RESPONSIVE STYLES
   ================================= */

@media (max-width: 1199px){
    .split-image{
        height: 100%;
    }
    
    .step-card,
    .steps__cta{
        width: calc( ( 100% / 3 ) - ( 60px / 3 ) );
    }
    
    .steps__cta{
        display: flex;
        flex-direction: column;
        justify-content: center;

    }
    
    .steps__cta .btn-primary{
        max-width: 100%;
    }

    .testimonial-card__quote h3{
        font-size: 25px;
    }

    .hero__actions{
        margin-top: 50px;
    }
}

@media (max-width: 991px){
    .step-card,
    .steps__cta {
        width: calc( 50% - ( 30px / 2 ) );
    }

    .gallery__row{
        /* margin-bottom: 15px; */
    }

    .gallery__row:last-child{
        margin-bottom: 0;
    }
}

@media (max-width: 767px){
    .step-card, .steps__cta {
        width: calc( 100% );
    }

    .steps .section__header{
        margin-bottom: 30px;
    }

    .steps__cta{
        flex-direction: column-reverse;
    }

    .hero__actions {
        margin-top: 20px;
    }

    .gallery__row {
        margin-bottom: 4px;
    }

    .section.gallery {
        padding: 62px 0 70px;
    }
}

/* iPad Air Portrait: 820px - 834px */
@media (min-width: 820px) and (max-width: 834px) and (orientation: portrait) {

    /* ===== HERO SECTION ===== */
    .hero {
        height: 900px;
    }

    .hero .container {
        padding-top: 180px;
        padding-left: 50px;
        padding-right: 50px;
    }

    .hero__title {
        /* font-size: 64px; */
        /* line-height: 72px; */
        margin-bottom: 25px;
    }

    .hero__copy {
        font-size: 21px;
        /* max-width: 550px; */
        margin-bottom: 35px;
    }

    .quick-actions__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        max-width: 750px;
        margin: 45px auto 0;
    }

    .quick-action-card__icon {
        width: 60px;
        height: 60px;
    }

    .quick-action-card__title {
        font-size: 15px;
    }

    /* ===== SERVICES SECTION ===== */
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        /* padding: 0 40px; */
    }

    .service-card {
        /* height: 320px; */
    }

    .service-card__benefits li {
        font-size: 17px;
    }

    /* ===== SPLIT SECTIONS ===== */
    .split-content {
        gap: 60px;
        padding: 0 40px;
    }

    .split-title {
        font-size: 36px;
    }

    .split-desc {
        font-size: 16px;
    }

    .split-image {
        height: 450px;
    }

    /* ===== STEPS SECTION ===== */
    .steps__grid {
        grid-template-columns: repeat(3, 1fr);
        /* gap: 35px; */
        /* padding: 0 40px; */
    }

    /* ===== VALUES SECTION ===== */
    .values-split .container {
        /* padding: 0 40px; */
        gap: 50px;
    }

    .values-phone {
        width: 220px;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials__swiper {
        padding: 0 40px;
    }

    .testimonial-card {
        padding: 35px;
        gap: 30px;
    }

    /* ===== FOOTER ===== */
    .footer__cols {
        /* padding: 0 40px; */
        gap: 60px;
    }

    /* ===== CONTACT FORM ===== */
    .wpcf7-form {
        padding: 0 40px;
    }
}

/* iPad Air Landscape: 1180px */
@media (width: 1180px) and (height:820px) {

    /* ===== HERO SECTION - OPTIMIZED FOR IPAD AIR LANDSCAPE ===== */
    .hero {
        /* height: 700px; */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero .container {
        padding: 0 80px;
        width: 100%;
        max-width: 1200px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero__content {
        margin-bottom: 40px;
    }

    .hero__title {
        /* font-size: 72px; */
        /* line-height: 80px; */
        font-weight: 700;
        max-width: 1000px;
        margin: 0 auto 25px;
        letter-spacing: -1px;
    }

    .hero__title-highlight {
        color: #5C86B0;
        font-weight: 800;
    }

    .hero__copy {
        /* font-size: 24px; */
        line-height: 1.4;
        max-width: 700px;
        /* margin: 0 auto 40px; */
        font-weight: 400;
        opacity: 0.9;
    }

    .hero__actions {
        /* margin-bottom: 50px; */
    }

    .hero__btn {
        padding: 18px 45px;
        font-size: 18px;
        font-weight: 600;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .hero__btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(92, 134, 176, 0.4);
    }

    .quick-actions__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        max-width: 900px;
        margin: 0 auto;
        width: 100%;
    }

    .quick-action-card {
        /* padding: 30px 25px; */
        transition: all 0.3s ease;
    }

    .quick-action-card:hover {
        transform: translateY(-5px);
    }

    .quick-action-card__icon {
        width: 70px;
        height: auto;
        margin-bottom: 15px;
    }

    .quick-action-card__icon img {
        /* width: 40px; */
    }

    .quick-action-card__title {
        font-size: 17px;
        font-weight: 600;
        line-height: 1.3;
    }

    /* ===== NAVIGATION - NO HAMBURGER, DESKTOP-STYLE LINKS ===== */
    .navbar__container {
        padding: 0 80px;
        justify-content: space-between;
        align-items: center;
    }

    /* Hide hamburger menu completely */
    .navbar__toggle,
    .navbar__menu {
        display: none !important;
    }

    /* Show desktop navigation */
    #site-header .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        height: auto !important;
        width: auto !important;
    }

    #site-header .navbar-nav > li {
        margin: 0 !important;
        display: inline-block !important;
    }

    #site-header .navbar-nav > li > a {
        padding: 15px 20px !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        /* color: #333 !important; */
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        display: flex !important;
        align-items: center !important;
        /* min-height: 50px !important; */
        border-bottom: none !important;
        background: transparent !important;
    }

    /* White underline hover effect for iPad Air */
    #site-header .navbar-nav > li > a::after {
        content: '' !important;
        position: absolute !important;
        bottom: 8px !important;
        left: 50% !important;
        width: 0 !important;
        height: 2px !important;
        background: white !important;
        transition: all 0.3s ease !important;
        transform: translateX(-50%) !important;
    }

    #site-header .navbar-nav > li > a:hover::after {
        width: 75% !important;
    }

    #site-header .navbar-nav > li > a:hover {
        /* color: #333 !important; */
        background: transparent !important;
    }

    /* Current menu item styling */
    #site-header .navbar-nav > li.current-menu-item > a {
        color: #ffffff !important;
        background: transparent !important;
    }

    #site-header .navbar-nav > li.current-menu-item > a::after {
        width: 75% !important;
        background: white !important;
    }

    /* Nav button styling */
    .Nav__btn {
        background: #5C86B0 !important;
        color: white !important;
        /* padding: 12px 25px !important; */
        border-radius: 8px !important;
        font-weight: 600 !important;
        margin-left: 15px !important;
    }

    .Nav__btn:hover {
        background: #4A72A0 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(92, 134, 176, 0.4) !important;
    }

    .Nav__btn:hover::after {
        width: 0 !important;
    }

    /* Brand logo */
    .navbar__brand img,
    #site-header .navbar-brand img {
        height: 50px !important;
        width: auto !important;
    }

    /* Ensure header has proper height */
    #site-header {
        height: auto !important;
        min-height: 80px !important;
        display: flex !important;
        align-items: center !important;
    }

    /* ===== SERVICES SECTION ===== */
    .services {
        padding: 100px 0;
    }

    .services__grid {
        /* grid-template-columns: repeat(4, 1fr); */
        gap: 30px;
        /* padding: 0 60px; */
    }

    .service-card {
        /* height: 300px; */
    }

    .service-card__overlay {
        padding: 35px 25px;
    }

    .service-card__benefits li {
        font-size: 18px;
    }

    /* ===== SPLIT SECTIONS ===== */
    .split-row {
        padding: 120px 0;
    }

    .split-content {
        gap: 80px;
        /* padding: 0 60px; */
    }

    .split-title {
        font-size: 42px;
    }

    .split-desc {
        font-size: 17px;
    }

    .split-image {
        /* height: 500px; */
    }
    .split-photo {
        /* width: 100%; */
        /* height: 590px; */
        object-fit: cover;
    }   

    /* ===== STEPS SECTION ===== */
    .steps {
        padding: 100px 0;
    }

    .steps__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        /* padding: 0 60px; */
    }

    .step-card {
        /* padding: 35px 25px; */
    }

    /* ===== VALUES SECTION ===== */
    .values-split {
        padding: 100px 0;
    }

    .values-split .container {
        /* padding: 0 60px; */
        gap: 60px;
    }

    .values-split__title {
        font-size: 38px;
    }

    .values-phone {
        width: 240px;
    }

    .value-card {
        padding: 25px;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials {
        padding: 100px 0;
    }

    .testimonials__swiper {
        /* padding: 0 60px; */
    }

    .testimonial-card {
        padding: 40px;
        gap: 35px;
    }

    .testimonial-card__quote h3 {
        font-size: 1.5rem;
    }

    .testimonial-card__text {
        font-size: 16px;
    }

    /* ===== BLOG SECTION ===== */
    .blog {
        padding: 100px 0;
    }

    .blog__container {
        /* padding: 0 60px; */
    }

    .blog__title {
        font-size: 2.5rem;
    }

    .blog-card {
        /* height: 380px; */
    }

    .blog-card__content {
        /* padding: 30px; */
    }

    /* ===== CTA SECTION ===== */
    .cta-band {
        padding: 80px 0;
    }

    .cta-band__content {
        padding: 0 60px;
    }

    .cta-band__title {
        font-size: 2.8rem;
    }

    .cta-band__subtitle {
        font-size: 18px;
        max-width: 600px;
    }

    /* ===== GALLERY ===== */
    .gallery {
        padding: 100px 0;
    }

    .gallery__header {
        padding: 0 60px;
    }

    .gallery__item {
        width: 320px;
        height: 220px;
        /* margin-right: 25px; */
    }

    /* ===== FOOTER ===== */
    .footer__top {
        padding: 70px 0 40px 0;
    }

    .footer__cols {
        /* gap: 70px; */
        /* padding: 0 60px; */
    }

    .footer__logo {
        /* height: 90px; */
    }

    /* ===== CONTACT FORM ===== */
    .contact-section {
        padding: 100px 0;
    }

    .contact-section .container {
        padding: 0 60px;
    }

    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form input[type="url"],
    .wpcf7-form input[type="number"],
    .wpcf7-form select,
    .wpcf7-form textarea {
        padding: 16px 20px;
        font-size: 16px;
    }

    .wpcf7-form input[type="submit"] {
        padding: 16px 40px;
        font-size: 18px;
    }

    /* ===== SECTION HEADERS ===== */
    .section {
        padding: 90px 0;
    }

    .section__header {
        padding: 0 60px;
        margin-bottom: 4rem;
    }

    .section__title {
        font-size: 2.5rem;
    }

    .section__subtext {
        font-size: 16px;
        max-width: 600px;
    }
}

/* iPad Air General (both orientations) - Additional optimizations */
@media (min-width: 820px) and (max-width: 1199px) {

    /* ===== IMPROVED TOUCH TARGETS ===== */
    button,
    .btn,
    a[href],
    .service-card,
    .testimonial-card,
    .blog-card {
        min-height: 28px; /* Slightly larger for iPad Air */
    }

    .owl-carousel .owl-dot{
        min-height: unset;
    }

    .navbar__link {
        min-height: 48px;
    }

    /* ===== OPTIMIZED HOVER STATES ===== */
    .service-card:hover,
    .testimonial-card:hover,
    .blog-card:hover {
        transform: translateY(-4px);
        transition: all 0.3s ease;
    }

    /* ===== IMPROVED SCROLLING ===== */
    .gallery__row {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    /* ===== BETTER SPACING ===== */
    .wpcf7-form {
        gap: 20px;
    }

    .wpcf7-form .form-row {
        gap: 20px;
    }
}

.footer__list a,
a.footer__contact-link,
.footer__legal a,
a.footer__domedia-link,
.blog-sidebar .btn-search,
.navbar-default .navbar-brand{
    min-height: auto;
}
/*ipad Mini*/
@media (min-width: 1024px) and (max-height: 768px) and (orientation: landscape) {
    .navbar-header {
    flex: 1;
    
}
#site-header .navbar-nav > li > a {
      font-size: 12px;
   }
}
@media (min-width: 1180px) and (max-height: 820px) and (orientation: landscape) {
    .navbar-header {
    /* flex: 1; */
    
}
#site-header .navbar-nav > li > a {
      font-size: 15px !important;
      padding: 15px 13px !important; 
      font-weight : 400 !important;

   }
}
/*ipad pro*/
@media (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) {
        #site-header .navbar-nav > li > a 
  {
    font-size: 12px;
}}

/* iPad 768x1024 LANDSCAPE only */
@media only screen
  and (min-device-height: 768px)
  and (max-device-width: 1024px)
  and (orientation: landscape) {

    .pricing-group {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px;
    }
}

/* ===================================
   FACILITIES PAGE CUSTOM STYLES
   ================================= */
.page-template-page-our-facilities .hero__copy {   
    margin-bottom: 0px;
}
@media (min-width: 1200px) and (hover: hover) and (pointer: fine) {
    .page-template-page-our-facilities .service-card:hover {
        transform: translateY(-1px);
    }}
   /* Hero  Section yail Image Background */
.hero--with-tail {
  position: relative;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
}

/* Tail Wrapper */
.hero__tail {
  padding: 16px 48px;

  background-image: url("https://plus10life.dev.domedia.uk/wp-content/uploads/2026/01/Frame-2147225024.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Text Styling */
.hero__tail-text p {
  font-size: 25px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}

/* Highlight Price */
.hero__tail-text strong {
  color: #ffeb3b; /* yellow highlight */
}

/* Old Price */
.hero__tail-text del {
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .hero__tail {
    padding: 14px 20px;
  }

  .hero__tail-text p {
    font-size: 16px;
  }
  .page-template-page-our-facilities .hero__title {
    max-width: 330px;
}
}

/* Contact link under hero CTA (Facilities page) */
.page-template-page-our-facilities .hero__contact-link {
    display: block;
    margin: 25px auto 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0px;
    text-align: center;
    color: #ffffff;
    text-decoration: underline;

}
.page-template-page-our-facilities .hero__contact-link:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .page-template-page-our-facilities .hero__contact-link {
        font-size: 15px;
        margin-top: 20px;
    }
}

/* Stack hero CTA + contact link on tablets and mobile */
@media (max-width: 991px) {
    .page-template-page-our-facilities .hero__actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .page-template-page-our-facilities .hero__btn {
        display: inline-flex;
        justify-content: center;
        margin-top: 10px;
    }

    .page-template-page-our-facilities .hero__contact-link {
        margin-top: 10px;
    }
}

/* Testimonials Section Background */
.page-template-page-our-facilities .testimonials.section {
    background: #2A3138;
}
/* ===================================
   FACILITIES PAGE quick card STYLES
   ================================= */
.page-template-page-our-facilities .hero .quick-action-card__icon img {
     filter: brightness(0) invert(1);
}
.page-template-page-our-facilities .hero .quick-actions__grid {
  gap: 0px;
}

.page-template-page-our-facilities .services .services__header {
    margin-bottom: 40px; /* adjust as needed */
}
.page-template-page-our-facilities .services .services__title {
    margin-bottom: 20px;
}
/* ===================================
   FACILITIES PAGE – FAQ SECTION
   =================================== */

.page-template-page-our-facilities .of-faq{
  background:#2A3138; /* matches screenshot */
  padding: 26px 0 90px 0;
}

.page-template-page-our-facilities .of-section__header{
  text-align:center;
  margin-bottom: 42px;
}

.page-template-page-our-facilities .of-section__title{
  margin:0;
  color:#ffffff;
  font-weight:600;
  letter-spacing: -0.02em;
  line-height:1.15;
  font-size: 44px; /* desktop */
}

/* Accordion wrapper */
.page-template-page-our-facilities .of-accordion{
  max-width: 960px;
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  gap: 18px;
}

/* Button (Question row) */
.page-template-page-our-facilities .of-acc{
  width:100%;
  background:#31373E;  /* card color */
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 22px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  cursor:pointer;

  color:#ffffff;
  font-size: 18px;
  font-weight:600;
  line-height:1.3;

  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.page-template-page-our-facilities .of-acc span:first-child{
  text-align:left;
  font-family: 'Montserrat';
  font-weight: 300;
}

/* Icon on right */
.page-template-page-our-facilities .of-acc__icon{
  width: 28px;
  height: 28px;
  display:grid;
  place-items:center;
  flex: 0 0 28px;
  color:#ffffff;
  font-size: 20px;
  line-height: 1;
  opacity: 0.9;
}

/* Hover / focus */
.page-template-page-our-facilities .of-acc:hover{
  background:#343B43;
  border-color: rgba(255,255,255,0.08);
}

.page-template-page-our-facilities .of-acc:focus-visible{
  outline: 2px solid rgba(255,255,255,0.25);
  outline-offset: 3px;
}

/* Panel (Answer) */
.page-template-page-our-facilities .of-acc__panel{
  background:#31373E;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 0px 0px 14px 14px;
  margin-top: -10px; /* makes it feel like one component */
  padding: 0 24px 22px 24px;
}

.page-template-page-our-facilities .of-acc__panel p{
  margin: 0;
  padding-top: 12px;
  color:#cccdcf; /* muted text like screenshot */
  font-size: 15px;
  line-height: 1.7;
}
.of-acc {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.of-acc__panel {
  display: none;
}

.of-acc__panel p {
  margin: 0;
  padding: 10px 0 20px;
}

/* When expanded (nice visual) */
.page-template-page-our-facilities .of-acc[aria-expanded="true"]{
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* =========================
   TABLET (iPads etc.)
   ========================= */
@media (max-width: 1024px){
  .page-template-page-our-facilities .of-faq{
    padding: 70px 0;
  }

  .page-template-page-our-facilities .of-section__title{
    font-size: 38px;
  }

  .page-template-page-our-facilities .of-accordion{
    max-width: 92%;
  }
}

/* =========================
   MOBILE (<= 768px)
   ========================= */
@media (max-width: 768px){
  .page-template-page-our-facilities .of-faq{
    padding: 56px 0;
  }

  .page-template-page-our-facilities .of-section__header{
    margin-bottom: 28px;
  }

  .page-template-page-our-facilities .of-section__title{
    font-size: 30px;
  }

  .page-template-page-our-facilities .of-accordion{
    gap: 14px;
    max-width: 100%;
    padding: 0 12px;
  }

  .page-template-page-our-facilities .of-acc{
    padding: 16px 16px;
    font-size: 16px;
    border-radius: 12px;
  }

  .page-template-page-our-facilities .of-acc__panel{
    padding: 0 16px 16px 16px;
    border-radius: 0px 0px 14px 14px;
  }

  .page-template-page-our-facilities .of-acc__panel p{
    font-size: 14px;
    line-height: 1.65;
  }
}

/* ===================================
   FACILITIES PAGE – COMPARISON TABLE
   Background: #3A4148
   =================================== */

.page-template-page-our-facilities .of-compare{
  background:#3A4148;
  padding: 90px 0;
}

/* Header */
.page-template-page-our-facilities .of-compare .of-section__header{
  text-align:center;
  max-width: 980px;
  margin: 0 auto 40px;
}

.page-template-page-our-facilities .of-compare .of-section__title{
  margin:0;
  color:#fff;
  font-weight: 600;
  font-size: 40px; /* desktop */
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.page-template-page-our-facilities .of-compare .of-section__sub{
  margin: 14px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.6;
}

/* Wrap (keeps nice width + enables scroll on small screens) */
/* .page-template-page-our-facilities .of-table-wrap{
  max-width: 1320px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
} */

/* Table base */
.page-template-page-our-facilities .of-table{
  width: 100%;
  min-width: 0; /* important for tablet/mobile scroll */
  border-collapse: collapse;
  color: rgba(255,255,255,0.90);
}

/* Head row */
.page-template-page-our-facilities .of-table thead th{
  text-align:left;
  font-weight: 600;
  font-size: 15px;
  padding: 18px 22px;
  color: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.page-template-page-our-facilities .of-table thead th:nth-child(n+2){
  text-align:center;
}

/* Body rows */
.page-template-page-our-facilities .of-table tbody td{
  padding: 22px 22px;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.22);
}

.page-template-page-our-facilities .of-table tbody td:nth-child(n+2){
  text-align:center;
}

/* Feature column slightly stronger */
.page-template-page-our-facilities .of-table tbody td:first-child{
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.01em;
}

/* Plus10 pill */
.page-template-page-our-facilities .of-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 6px 12px;
  border-radius: 999px;
  /* background: rgba(88,160,255,0.22); */
  color: #63A0DE;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
}
/* Yes / No cells */
.page-template-page-our-facilities .of-table td.is-yes,
.page-template-page-our-facilities .of-table td.is-no{
  position: relative;
  color: transparent;        /* hide raw ✓ / × */
  font-size: 0;              /* prevent layout shifts */
}

/* common circle */
td.is-yes i {
  color: #f5f5f5; /* green */
  background-color: #2E8B3C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 14px;
    line-height: 1;
    border-radius: 50%;

}

td.is-no i {
  color: #ffffff; /* red */
  background: #56606A;
    display: inline-flex;
  align-items: center;
  justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 14px;
    line-height: 1;
    border-radius: 50%;

}


/* .page-template-page-our-facilities .of-table td.is-yes::before{
  content: "✓";
  background: #2E8B3C;
  color: #fff;
}


.page-template-page-our-facilities .of-table td.is-no::before{
  content: "×";
  background: #56606A;
  color: rgba(255,255,255,0.92);
} */

/* Optional: make the table feel “airy” like screenshot */
.page-template-page-our-facilities .of-table tbody tr:hover td{
  background: rgba(255,255,255,0.02);
}

/* ===================================
   TABLET (iPads etc.)
   =================================== */
@media (max-width: 1024px){
    .page-template-page-our-facilities .of-table thead th, .page-template-page-our-facilities .of-table tbody td {
        padding: 22px 6px;
    }
  .page-template-page-our-facilities .of-compare{
    padding: 50px 0;
  }

  .page-template-page-our-facilities .of-compare .of-section__title{
    font-size: 31px;
  }

  .page-template-page-our-facilities .of-compare .of-section__header{
    margin-bottom: 32px;
    padding: 0 14px;
  }

  .page-template-page-our-facilities .of-table thead th,
  .page-template-page-our-facilities .of-table tbody td{
    padding: 18px 18px;
  }
}
@media (max-width: 768px) {
    .page-template-page-our-facilities .of-table thead th, .page-template-page-our-facilities .of-table tbody td {
        padding: 22px 6px;
    }
    .page-template-page-our-facilities .of-table {
    min-width: 0;}
}
/* ===================================
   FACILITIES PAGE - Transparent Navbar
   =================================== */

/* Keep navbar transparent at the top of facilities page */
.page-template-page-our-facilities #site-header {
  background: transparent !important;
}

/* Add background when scrolled (sticky) */
.page-template-page-our-facilities #site-header.sticky {
  background-color: #2A3138 !important;
  box-shadow: 0px 0px 3px 0px rgba(0,0,0,.5) !important;
}

/* ===================================
   FACILITIES PAGE - Hero Title Max Width
   =================================== */

.page-template-page-our-facilities .hero__title {
  max-width: 880px;
}
@media (max-width: 768px) {
  .page-template-page-our-facilities .hero__title {
    max-width: 330px;
}
}
@media (width: 768px) and (height: 1024px) {
  .page-template-page-our-facilities .hero__title {
    max-width: 560px;
  }
}
/* Tablet portrait navbar spacing */
@media (min-width: 768px) and (max-width: 1024px) {
  .navbar.navbar-fixed-top.navbar-default .navbar-nav > li > a {
    padding: 9px !important;
  }
}
.page-template-page-our-facilities .quick-actions__grid {
    grid: 0px;
}
/* ===================================
   PROMO SPLIT
   =================================== */

.page-template-page-our-facilities .of-promo{
    padding: 0;
    background: linear-gradient(180deg, #5C86B0 0%, #4A6E8F 100%);
}

/* 2-column split wrapper */
.page-template-page-our-facilities .of-promo__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 430px;               /* adjust if you want taller */
  border-radius: 0;                /* screenshot is sharp edges */
  overflow: hidden;                /* keeps image + left bg clean */
}

/* LEFT: blue panel */
.page-template-page-our-facilities .of-promo__left{
  display: flex;
  align-items: center;
  padding: 60px 20px 60px 0px;
}

/* inner box */
.page-template-page-our-facilities .of-promo__box{
  max-width: 100%;
}

/* headings */
.page-template-page-our-facilities .of-promo__box h3{
  margin: 0 0 12px;
  color: #fff;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.page-template-page-our-facilities .of-promo__box h4{
  margin: 0 0 24px;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
}

/* LISTS */
.page-template-page-our-facilities .of-promo .of-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-template-page-our-facilities .of-promo .of-list li{
  position: relative;
  padding-left: 30px;
  margin: 0 0 14px;
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.6;
}

/* check icon like screenshot */
.page-template-page-our-facilities .of-promo .of-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  font-size: 16px;
}

/* Optional additions block */
.page-template-page-our-facilities .of-promo__opt{
  margin-top: 22px;
}

.page-template-page-our-facilities .of-promo__opt-title{
  margin: 0 0 10px;
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* Make optional list bullets look like dots (not checks) */
.page-template-page-our-facilities .of-promo__opt .of-list li{
  padding-left: 14px;
  margin-bottom: 10px;
}

.page-template-page-our-facilities .of-promo__opt .of-list li::before{
  content: "•";
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.70);
}

/* Button (white pill) */
.page-template-page-our-facilities .of-promo .of-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 14px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.28);
  transition: transform .15s ease, opacity .15s ease;
}

/* keep your class but force screenshot style */
.page-template-page-our-facilities .of-promo .of-btn--primary{
  background: #fff;
  color: #3F6077;
}

.page-template-page-our-facilities .of-promo .of-btn--primary:hover{
  transform: translateY(-1px);
  opacity: 0.95;
}

/* RIGHT: image panel */
.page-template-page-our-facilities .of-promo__right{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 430px;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 991px){
    /* Collapse split to single column on tablets and allow image overflow (mobile-style) */
    .page-template-page-our-facilities .of-promo__grid{
        grid-template-columns: 1fr;
        overflow: visible;
    }

    .page-template-page-our-facilities .of-promo__right{
        order: -1; /* place image first */
        min-height: 450px;
        width: 100vw;
        max-width: none;
        margin-left: calc((100% - 100vw) / 2);
        background-size: cover;
        background-position: center;
        position: relative;
        z-index: 1;
    }

    .page-template-page-our-facilities .of-promo__left{
            padding-right: 40px;
    }
    .page-template-page-our-facilities .of-promo__box h3{
        font-size: 36px;
    }
}

@media (max-width: 767px){
  .page-template-page-our-facilities .of-promo__grid{
    grid-template-columns: 1fr;
  }

  /* image first (like many mobile layouts) */
  .page-template-page-our-facilities .of-promo__right{
    order: -1;
    min-height: 240px;
  }

  .page-template-page-our-facilities .of-promo__left{
    padding: 34px 0px;
  }

  .page-template-page-our-facilities .of-promo__box h3{
    font-size: 28px;
  }

  .page-template-page-our-facilities .of-promo__box h4{
    font-size: 18px;
  }

  .page-template-page-our-facilities .of-promo .of-list li{
    font-size: 15px;
  }
}
/* Mobile-only: allow promo split image to overflow and show full-width */
@media (max-width: 768px) {
    .page-template-page-our-facilities .of-promo__grid {
        overflow: visible;
    }
    .page-template-page-our-facilities .of-promo__right {
        width: 100vw;
        max-width: none;
        margin-left: calc((100% - 100vw) / 2);
        background-size: cover;
        background-position: center;
        position: relative;
        z-index: 1;
    }
}
/* ===================================
   CTA background image
   =================================== */

.page-template-page-our-facilities #cta-band {
  position: relative;
  overflow: hidden;
}

.page-template-page-our-facilities #cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* adjust opacity */
  z-index: 1;
}

/* Keep content above overlay */
.page-template-page-our-facilities #cta-band .container {
  position: relative;
  z-index: 2;
}


/* @media (max-width: 1199px) {
  #main-navbar {
    display: none !important;
  }

  .header-ham-icon {
    display: block !important;
  }
}


@media (min-width: 1200px) {
  #main-navbar {
    display: block !important;
  }

  .header-ham-icon {
    display: none !important;
  }
} */

