/* ==========================================================================
   GAITZ THEME - CUSTOM STYLES
   ========================================================================== */



/* Font Face Declarations */
@font-face {
    font-family: 'Tungsten';
    src: url('../fonts/tungsten/Tungsten-Bold.woff2') format('woff2'),
        url('../fonts/tungsten/Tungsten-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tungsten';
    src: url('../fonts/tungsten/Tungsten-Semibold.woff2') format('woff2'),
        url('../fonts/tungsten/Tungsten-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Brandon Grotesque';
    src: url('../fonts/brandon_grotesque/BrandonGrotesque-Regular.eot');
    src: url('../fonts/brandon_grotesque/BrandonGrotesque-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/brandon_grotesque/BrandonGrotesque-Regular.woff2') format('woff2'),
        url('../fonts/brandon_grotesque/BrandonGrotesque-Regular.woff') format('woff'),
        url('../fonts/brandon_grotesque/BrandonGrotesque-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Brandon Grotesque';
    src: url('../fonts/brandon_grotesque/BrandonGrotesque-Light.eot');
    src: url('../fonts/brandon_grotesque/BrandonGrotesque-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/brandon_grotesque/BrandonGrotesque-Light.woff2') format('woff2'),
        url('../fonts/brandon_grotesque/BrandonGrotesque-Light.woff') format('woff'),
        url('../fonts/brandon_grotesque/BrandonGrotesque-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Brandon Grotesque_medium';
    src: url('../fonts/brandon_grotesque/BrandonGrotesque-Medium.eot');
    src: url('../fonts/brandon_grotesque/BrandonGrotesque-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/brandon_grotesque/BrandonGrotesque-Medium.woff2') format('woff2'),
        url('../fonts/brandon_grotesque/BrandonGrotesque-Medium.woff') format('woff'),
        url('../fonts/brandon_grotesque/BrandonGrotesque-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --red-gradient: linear-gradient(180deg, #ED1C24 0%, #BA2026 100%);
    --red-gradient-hover: linear-gradient(180deg, #cd151b 0%, #740f12 100%);
    --primary-black: #000000;
    --primary-white: #ffffff;
    --text-dark: #171717;
    --text-body: #4e4e4e;
    --font-heading: 'Tungsten', Arial, sans-serif;
    --font-body: 'Brandon Grotesque', Arial, sans-serif;
}

/* Reset and Base Styles */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizelegibility;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background-image: url('/wp-content/uploads/2025/08/bg.svg');
    overflow-x: hidden;
}

.phone-cta-mobile {
    display: none;
}


.logo-column {
    display: flex;
    gap: 15px;
    width: 15%;
}

.phone-column {
    width: 85% !important;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h1 {
    font-size: 48px;
    line-height: 1.1;
}

h2 {
    font-size: 63px;
    line-height: 1.1;
}

h3 {
    font-size: 32px;
    line-height: 1.2;
}

h4 {
    font-size: 24px;
    line-height: 1.2;
}

h5 {
    font-size: 24px;
    line-height: 1.3;
}

h6 {
    font-size: 18px;
    line-height: 1.3;
}

p {
    font-family: var(--font-body);
    color: var(--text-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus {
    outline: 0 !important;
}

/* Remove default list styles */
ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Custom bullet style for content lists */
.content-block-content ul li,
.section-description ul li,
.cta-description ul li,
.contact-content ul li,
ul:not(.footer-menu):not(.navbar-nav):not(.sub-menu):not(.dropdown-menu):not(.reviews-logos):not(.partner-logos):not(.social-reviews-grid) li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    list-style: none;
}

.content-block-content ul li:before,
.section-description ul li:before,
.cta-description ul li:before,
.contact-content ul li:before,
ul:not(.footer-menu):not(.navbar-nav):not(.sub-menu):not(.dropdown-menu):not(.reviews-logos):not(.partner-logos):not(.social-reviews-grid) li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url('/wp-content/uploads/2025/09/Polygon-7.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* ========================================
   HEADER STYLES - GAITZ NAVBAR
   ======================================== */

/* Top Header Section - Black background */
.top-header {
    background-image: url('/wp-content/uploads/2025/07/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.black-header {
    background-image: url('/wp-content/uploads/2025/07/Frame-427318289.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.regular-club-banner {
    background: var(--red-gradient);
    padding: 10px 30px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 3.517px 15.825px 0 rgba(235, 235, 235, 0.30);
    transition: all 0.3s ease;
}

.regular-club-banner span {
    color: white;
    font-size: 34px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.admin-bar .top-header {
    top: 32px;
}

/* Logo Styles */
.top-header .navbar-brand {
    display: inline-block;
}

.top-header .navbar-brand img {
    max-height: 60px;
    width: auto;
}

/* Club Banner Styles - Red background */
.club-banner {
    background: var(--red-gradient);
    color: white;
    padding: 22px 19px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    gap: 10px;
    font-size: 34px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
    transition: all 0.3s ease;
}

.club-banner svg,
.regular-club-banner svg {
    transition: all 0.3s ease;
}

.club-banner:hover svg,
.regular-club-banner:hover svg {
    transform: translateX(5px);
}

.scrolled-header .club-banner {
    margin-left: 15px;
}

.club-banner span {
    margin-right: 10px;
}

.scrolled-header .club-banner:hover {
    color: white;
}

.club-banner .arrow-icon {
    font-size: 18px;
    font-weight: bold;
}

/* Phone CTA Styles - Uses global button styling */
.phone-cta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 10px;
}

.phone-cta .phone-icon {
    margin-right: 8px;
    font-size: 18px;
}

/* Main Navigation - White background */
.main-navigation {
    background: var(--primary-white);
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 100;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 3.517px 15.825px 0 rgba(48, 48, 48, 0.24);
}


/* Navigation Links */
.main-navigation .navbar-nav {
    margin: 0;
    padding: 0;
    justify-content: space-evenly;
    width: 100%;
}

.main-navigation .navbar-nav .nav-link,
.regular-menu .navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: -0.32px;
    margin: 0 20px;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.regular-menu .navbar-nav .nav-link {
    font-size: 16px;
}

.main-navigation .navbar-nav .nav-link:hover {
    color: #ED1C24 !important;
}

/* Dropdown Arrow for Bootstrap Dropdowns - DESKTOP ONLY */
@media (min-width: 992px) {
    .nav-link.dropdown-toggle::after {
        display: inline-block;
        margin-left: 8px;
        vertical-align: middle;
        content: "";
        border: none;
        width: 10px;
        height: 10px;
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='9' viewBox='0 0 10 9' fill='none'%3E%3Cpath d='M5.69615 8.375C5.5037 8.70833 5.02258 8.70833 4.83013 8.375L0.933012 1.625C0.740562 1.29167 0.981125 0.875 1.36603 0.875L9.16025 0.875001C9.54515 0.875001 9.78572 1.29167 9.59327 1.625L5.69615 8.375Z' fill='url(%23paint0_linear_29_55)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_29_55' x1='5.26314' y1='0.875' x2='5.26314' y2='9.125' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23ED1C24'/%3E%3Cstop offset='1' stop-color='%23BA2026'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: contain;
        transition: all 0.3s ease;
    }

    .blog-page-title h1 {
        font-size: 63px;
        line-height: 50px;
        letter-spacing: -1.26px;
    }

    .post-content h2 {
        font-size: 63px;
        line-height: 50px;
        letter-spacing: -1.26px;
    }

    .post-content h3,
    .featured-post h2,
    .featured-post h3,
    .bloglist h2,
    h3.blog-title {
        font-size: 43px;
        line-height: 38px;
        letter-spacing: -0.43px;
    }

    .related-post h2 {
        font-size: 63px;
        line-height: 50px;
        letter-spacing: -1.26px;
    }
}

/* Hide arrows ::after on mobile */
@media (max-width: 991.98px) {
    .nav-link.dropdown-toggle::after {
        display: none !important;
    }
}

/* NEW: Dropdown Toggle Button Styles - For the new separated structure */
.dropdown-toggle-btn {
    background: none;
    border: none;
    padding: 4px 8px;
    margin-left: 8px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.dropdown-toggle-btn svg {
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

/* Dropdown Menu Styles */
.sub-menu,
.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: white !important;
    border: 0 !important;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 3.517px 15.825px 0 rgba(48, 48, 48, 0.24);
    padding: 0 !important;
    margin-top: 0px !important;
    min-width: 200px !important;
    z-index: 1000 !important;
    display: none !important;
    transition: all 0.3s ease !important;
}

.scrolled-header nav {
    padding: 0 !important;
}

.scrolled-header .nav-link {
    padding: 20px 0 !important;
}

/* Show dropdown on hover - DESKTOP ONLY (not mobile) */
@media (min-width: 992px) {

    .main-navigation .navbar-nav li:hover .sub-menu,
    .main-navigation .navbar-nav li:hover .dropdown-menu,
    .regular-menu .navbar-nav li:hover .sub-menu,
    .regular-menu .navbar-nav li:hover .dropdown-menu,
    .navbar-nav .dropdown:hover .dropdown-menu,
    .navbar-nav li.dropdown:hover .dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Ensure parent li has relative positioning */
.main-navigation .navbar-nav li,
.regular-menu .navbar-nav li,
.navbar-nav .dropdown {
    position: relative;
}

.sub-menu li,
.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sub-menu a,
.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #171717;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
}

.sub-menu a:hover,
.dropdown-menu a:hover,
.dropdown-menu a:focus,
.dropdown-menu a.active {
    background: var(--red-gradient);
    color: white;
    text-decoration: none;
}

/* Navbar Li > A Hover Styles - DESKTOP ONLY */

.main-navigation .navbar-nav li:hover,
.regular-menu .navbar-nav li:hover {
    background: var(--red-gradient) !important;
}

.main-navigation .navbar-nav .menu-item:hover .nav-link,
.regular-menu .navbar-nav .menu-item:hover .nav-link {
    color: white !important;
}


/* Dropdown Arrow Hover Effects - DESKTOP ONLY */
@media (min-width: 992px) {

    .main-navigation .navbar-nav li:hover .nav-link.dropdown-toggle::after,
    .regular-menu .navbar-nav li:hover .nav-link.dropdown-toggle::after {
        transform: rotate(180deg);
        filter: brightness(0) invert(1);
        transition: all 0.3s ease;
    }

    .main-navigation .navbar-nav li:hover .dropdown-toggle-btn svg,
    .regular-menu .navbar-nav li:hover .dropdown-toggle-btn svg {
        transform: rotate(180deg);
        filter: brightness(0) invert(1);
        transition: all 0.3s ease;
    }
}



/* Bootstrap Navbar Toggler */
.main-navigation .navbar-toggler {
    border: none;
    padding: 0;
}

.main-navigation .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(35, 32, 31, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ========================================
   GLOBAL BUTTON STYLES - CONSISTENT CTA
   ======================================== */

/* Standard CTA Button - Used throughout the site */
.btn-cta,
.btn-primary,
.hero-cta-button a,
.phone-cta a,
.gform_button {
    position: relative !important;
    background: var(--red-gradient) !important;
    color: white !important;
    font-family: var(--font-heading) !important;
    font-size: 21px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    border-radius: 43px !important;
    box-shadow: 0 3.517px 15.825px 0 rgba(48, 48, 48, 0.24) !important;
    padding: 9px 32px !important;
    width: 200px !important;
    border: none !important;
    text-decoration: none !important;
    display: inline-block !important;
    text-align: center !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    cursor: pointer !important;
    line-height: 1.2 !important;
    overflow: hidden !important;
}

.btn-cta::before,
.btn-primary::before,
.hero-cta-button a::before,
.phone-cta a::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: var(--red-gradient-hover) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    border-radius: 43px !important;
    z-index: -1 !important;
}

.btn-cta:hover,
.btn-primary:hover,
.hero-cta-button a:hover,
.phone-cta a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px 0 rgba(48, 48, 48, 0.35) !important;
    color: white !important;
}

.btn-cta:hover::before,
.btn-primary:hover::before,
.hero-cta-button a:hover::before,
.phone-cta a:hover::before {
    opacity: 1 !important;
}

.btn-cta:focus,
.btn-primary:focus,
.hero-cta-button a:focus,
.phone-cta a:focus {
    outline: none !important;
    color: white !important;
    background: var(--red-gradient) !important;
}

/* Hero CTA Button Container */
.hero-cta-button {
    text-align: center;
}

/* ========================================
   HOME HERO SECTION
   ======================================== */

/* Home Hero Container */
.home-hero {
    padding: 60px 0 40px;
    overflow: hidden;
}

.hero-content-row {
    margin-bottom: 40px;
    min-height: 350px;
}

.hero-text-section {
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 78px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 72px;
    text-transform: uppercase;
    letter-spacing: -1.58px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 400;
    color: #7a7a7a;
    letter-spacing: -0.44px;
    line-height: 38px;
    margin: 0;
}

.hero-cta-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.cta-heading {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: normal;
}

.reviews-and-cta-container {
    background: var(--primary-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.reviews-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.review-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-logo {
    height: auto;
    width: 100%;
    object-fit: contain;
}

.hero-van-row {
    margin-bottom: 40px;
}

.hero-van-section {
    text-align: center;
}

.van-image-container {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.van-image {
    width: 100%;
    height: auto;
    animation: slideInFromLeft 1.2s ease-out forwards;
}

/* Van Image Animation */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

.hero-partners-row {
    padding-top: 20px;
}

.partner-logos-section {
    text-align: center;
}

.partner-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    height: auto;
    width: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* ========================================
   SERVICE HERO SECTION
   ======================================== */

/* Service Hero Container */
.service-hero {
    padding: 60px 0 40px;
    overflow: hidden;
}

.service-hero-header {
    margin-bottom: 50px;
}


.service-hero-title {
    font-family: var(--font-heading);
    font-size: 78px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 72px;
    text-transform: uppercase;
    letter-spacing: -1.58px;
    margin-bottom: 20px;
}

.service-hero-subtitle {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-body);
    line-height: 38px;
    margin: 0;
}

.service-hero-content-row {
    margin-bottom: 40px;
    display: flex;
}

.service-hero-van-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0;
}

.service-van-image-container {
    position: relative;
    width: 120%;
    max-width: 120%;
    margin-right: -10%;
    z-index: 2;
}

.service-van-image {
    width: 100%;
    height: auto;
    display: block;
}

.service-hero-cta-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    width: 135%;
}

.service-cta-heading {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: normal;
    margin-bottom: 20px;
}

.service-reviews-and-cta-container {
    background: var(--primary-white);
    padding: 20px 50px 20px 145px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    position: relative;
    width: 110%;
    margin-left: -5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-reviews-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.service-review-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-review-logo {
    height: auto;
    width: 100%;
    object-fit: contain;
}

.service-hero-cta-button {
    text-align: center;
}

.service-hero-partners-row {
    padding-top: 20px;
}

.service-partner-logos-section {
    text-align: center;
}

.service-partner-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.7;
}

.service-partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-partner-logo {
    height: auto;
    width: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Responsive Service Hero */
@media (max-width: 992px) {
    .service-hero-title {
        font-size: 56px;
        line-height: 60px;
    }

    .service-hero-subtitle {
        font-size: 18px;
        line-height: 32px;
    }

    .service-cta-heading {
        font-size: 36px;
        margin-top: 30px;
    }

    /* Reset van overlap effect on tablet */
    .service-hero-van-section {
        margin-bottom: 30px;
        padding-right: 0;
        justify-content: center;
    }

    .service-van-image-container {
        width: 100%;
        height: auto;
        margin-right: 0;
    }

    .service-van-image {
        width: 100%;
        height: auto;
        max-height: none;
    }

    .service-reviews-and-cta-container {
        width: 100%;
        margin-left: 0;
        padding: 30px;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 80px 0 30px;
    }

    .service-hero-header {
        margin-bottom: 30px;
    }

    .service-hero-title {
        font-size: 42px;
        line-height: 48px;
        margin-bottom: 15px;
    }

    .service-hero-subtitle {
        font-size: 18px;
        line-height: 28px;
    }

    .service-cta-heading {
        font-size: 28px;
    }

    .service-reviews-and-cta-container {
        padding: 20px;
    }

    .service-reviews-logos {
        gap: 10px;
        justify-content: center;
    }

    .service-partner-logos {
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-hero-title {
        font-size: 32px;
        line-height: 38px;
    }

    .service-cta-heading {
        font-size: 24px;
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */

/* Services Container */
.services-section {
    padding: 80px 0;
}

/* Background dark - when background field is true */
.services-section-dark {
    background-image: url('/wp-content/uploads/2025/10/Frame-427318318.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Background light - when background field is false */
.services-section-light {
    background: var(--primary-white);
}

/* Title color adjustments based on background */
.services-section-dark .services-title {
    color: var(--primary-white);
}

.services-section-light .services-title {
    color: var(--text-dark);
}

/* Legacy support for home page */
.home .services-section {
    background: var(--primary-white);
}

.home .services-title {
    color: var(--text-dark);
}

/* Services Title */
.services-title {
    font-family: var(--font-heading);
    font-size: 63px;
    font-weight: 700;
    /*     color: var(--primary-white); */
    text-transform: uppercase;
    letter-spacing: -1.26px;
    margin-bottom: 60px;
    text-align: center;
}

/* Services Grid */
.services-grid {
    margin: 0;
}

.service-item-wrapper {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

/* Service Card */
.service-card {
    border-radius: 8px;
    box-shadow: 0 3.517px 15.825px 0 rgba(48, 48, 48, 0.24);
    padding: 0 !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px 0 rgba(48, 48, 48, 0.35);
    border: 1.5px solid var(--Red-Gradient-2, #ED1C24);


}

/* Service Image */
.service-image {
    text-align: center;
    position: relative;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

/* Service Image Link */
.service-image-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
	height: 180px;
	overflow: hidden;
}

.service-content {
    padding: 26px 12px;
    background: var(--primary-white);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.service-image img {
	height: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
}

/* Service Image Overlay */
.service-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #171717;
    opacity: 0.35;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: 5;
}

/* Service Icon - Positioned over image */
.service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-img {
    width: 57px !important;
    height: 57px !important;
    object-fit: contain;
    filter: none;
}

/* Service Title */
.service-title {
    font-family: var(--font-heading);
    font-size: 43px !important;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: -0.43px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.1;
}

/* Service Description */
.service-description {
    flex-grow: 1;
    margin-bottom: 30px;
}

.service-description p {
    color: var(--text-body);
    text-align: center;
    font-family: var(--font-body);
    font-size: 16px !important;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
    letter-spacing: -0.32px;
}

/* Service CTA */
.service-cta {
    text-align: center;
    margin-top: auto;
}

/* ========================================
   FOOTER STYLES - GAITZ FOOTER
   ======================================== */

/* Main Footer */
.main-footer {
    color: var(--primary-white);
    padding: 60px 0 40px;
    background-image: url('/wp-content/uploads/2025/07/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Footer Logo */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: auto;
    padding-bottom: 25px;
}

.footer-hours-title,
.footer-tx-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-align: center;
}

.footer-logo h3 {
    color: var(--primary-white);
    font-size: 28px;
    margin: 0;
}

/* Footer Menu Sections */
.footer-menu-section {
    margin-bottom: 40px;
}

.footer-menu-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Footer Menu Lists */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.footer-menu li a:hover {
    color: #ED1C24;
}

/* Footer Contact Section */
.footer-contact-section {
    margin-bottom: 40px;
}

.footer-contact-info {
    margin-top: 10px;
}

.contact-item {
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Contact Links */
.contact-link {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ED1C24;
}

.phone-link {
    font-size: 20px;
    font-weight: 700;
}

.email-link {
    font-size: 16px;
}

/* Location and Hours Content */
.hours-content p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 28px;
    text-align: center;
}

.location-content p {
    max-width: 200px;
    line-height: 28px;
    color: white;
}

/* TX License */
.tx-license {
    padding-top: 8px;
}

.license-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

/* ========================================
   TECHNOLOGY HIGHLIGHT SECTION
   ======================================== */

.technology-highlight {
    background: var(--primary-white);
    padding: 80px 0;
}

.tech-highlight-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -1.26px;
    margin-bottom: 20px;
}

.tech-highlight-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-body);
    line-height: 28px;
    margin-bottom: 27px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tech-partner-wrapper {
    margin-bottom: 40px;
}

.tech-partner-card {
    background: var(--primary-white);
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.tech-partner-logo-container {
    width: 550px;
    height: 240px;
    border: 1px solid #ed1c24;
    border-radius: 10px;
    padding: 70px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: var(--primary-white);
}

.tech-partner-logo {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tech-partner-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: -0.43px;
    margin-bottom: 20px;
}

.tech-partner-description {
    margin-bottom: 30px;
}

.tech-partner-description p {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-body);
    line-height: 28px;
}

.tech-partner-cta {
    margin-top: auto;
}



.tech-highlight-normal .tech-partner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Technology Highlight Expanded Layout */
.tech-highlight-expanded .tech-partner-card {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 40px;
    gap: 40px;
}

/* First, third, fifth... = row (logo left) */
.tech-highlight-expanded .tech-partner-wrapper:nth-child(odd) .tech-partner-card {
    flex-direction: row;
}

/* Second, fourth, sixth... = row-reverse (logo right) */
.tech-highlight-expanded .tech-partner-wrapper:nth-child(even) .tech-partner-card {
    flex-direction: row-reverse;
}


.tech-highlight-expanded .tech-partner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-highlight-expanded .tech-partner-title {
    margin-bottom: 15px;
}

.tech-highlight-expanded .tech-partner-description {
    margin-bottom: 25px;
}

/* Responsive for Expanded Layout */
@media (max-width: 992px) {

    /* Override alternating pattern - all cards become vertical */
    .tech-highlight-expanded .tech-partner-wrapper:nth-child(odd) .tech-partner-card,
    .tech-highlight-expanded .tech-partner-wrapper:nth-child(even) .tech-partner-card {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }

    .tech-highlight-expanded .tech-partner-logo-container {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    /* Ensure vertical layout on mobile */
    .tech-highlight-expanded .tech-partner-wrapper:nth-child(odd) .tech-partner-card,
    .tech-highlight-expanded .tech-partner-wrapper:nth-child(even) .tech-partner-card {
        padding: 30px 20px;
        gap: 20px;
        flex-direction: column !important;
    }

    .tech-highlight-expanded .tech-partner-logo-container {
        width: 100%;
        height: 150px;
    }

    .tech-highlight-expanded .tech-partner-title {
        font-size: 28px;
    }
}

/* ========================================
   SERVICE BANNER SECTION
   ======================================== */

.service-banner {
    margin: 0;
    padding: 0;
}

.service-banner .container-fluid {
    padding: 0;
}

.service-banner-row {
    background-image: url('/wp-content/uploads/2025/07/Frame-427318289.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    margin: 0;
}

.service-banner-image-col {
    padding: 0;
}

.service-banner-image-container {
    height: 100%;
    overflow: hidden;
    border-radius: 8px 0 0 8px;
}

.service-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-banner-content-col {
    padding: 0;
    display: flex;
    align-items: center;
}

.service-banner-content {
    padding: 30px;
    color: white;
    width: 100%;
}

.service-banner-icon {
    margin-bottom: 20px;
}

.banner-icon {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.service-banner-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 59px;
    color: white;
    text-transform: uppercase;
    letter-spacing: -1.26px;
    line-height: 1.1;
}

.service-banner-description {
    margin-bottom: 30px;
}

.service-banner-description p {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: white;
    line-height: 28px;
    margin: 0;
}

.service-banner-cta {
    margin-top: 30px;
}

/* ========================================
   LEFT IMAGE RIGHT TEXT SECTION
   ======================================== */

.left-image-right-text {
    background: var(--primary-white);
    padding: 80px 0;
}

.left-image-col {
    padding-right: 30px;
}

.section-image-container {
    width: 100%;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.right-content-col {
    padding-left: 30px;
}


.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 55px;
    letter-spacing: -1.26px;
    margin-bottom: 18px;
    line-height: 50px;
}

.section-description {
    margin-bottom: 40px;
}

.section-description p {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-body);
    line-height: 28px;
}

.section-cta {
    margin-top: 20px;
}

/* ========================================
   AREAS WE SERVE SECTION
   ======================================== */

.areas-we-serve {
    background: var(--primary-white);
    padding: 80px 0;
}

.areas-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: -1.26px;
    margin-bottom: 16px;
    line-height: 1.1;
}

.areas-content-wrapper {
    background-image: url('/wp-content/uploads/2025/07/Frame-427318289.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.map-container {
    width: 100%;
    height: 400px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 3.517px 15.825px 0 rgba(48, 48, 48, 0.24);
}

.cities-section {
    background: rgba(0, 0, 0, 0.55);
    padding: 20px;
    border-radius: 0 0 15px 15px;
}

.cities-grid {
    margin-bottom: 40px;
}

.cities-desktop,
.cities-mobile {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.city-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    margin-bottom: 15px;
}

.city-item:hover .city-name {
    color: #ed1c24;
}

/* City Link Styles */
.city-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.city-link:hover {
    color: white;
    text-decoration: none;
}

.city-link:hover .city-name {
    color: #ed1c24;
}

.city-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.city-name {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: -0.35px;
    transition: color 0.3s ease;
    line-height: 1;
}

.areas-cta {
    text-align: center;
    margin-top: 20px;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

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

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* ========================================
   CLOUD COMFORT SECTION
   ======================================== */

/* Cloud Comfort Container */
.cloud-comfort-section,
.left-image-right-content {
    background: #171717;
    padding: 0;
    margin: 0;
    overflow: hidden;

}

.home .cloud-comfort-section {
    border-top: 4px solid #C0C1C1;
    border-bottom: 4px solid #C0C1C1;
    background-image: url('/wp-content/uploads/2025/07/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.left-image-right-content {
    border-top: 0;
    border-bottom: 0;
    background-image: url('/wp-content/uploads/2025/07/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.left-image-right-content .left-image {
    text-align: end;
    padding-right: 37px;
}

.left-image-right-content .left-image img {
    padding: 0;
    max-width: 270px;
}

.cloud-comfort-section .container-fluid {
    padding: 0;
    max-width: 100%;
}

.cloud-comfort-row {
    min-height: 388px;
    margin: 0;
}


.cloud-comfort-image {
    width: 100%;
    height: 100%;
    padding-right: 75px;
}

/* Cloud Comfort Content Column */


.cloud-comfort-content {
    width: 100%;
    padding: 60px 0;
}

/* Cloud Comfort Title */
.cloud-comfort-title {
    font-family: var(--font-heading);
    font-size: 63px;
    font-weight: 700;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: -1.26px;
    margin-bottom: 20px;
    line-height: 50px;
}

/* Cloud Comfort Description */
.cloud-comfort-description {
    margin-bottom: 40px;
}

.cloud-comfort-description p {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: white;
    line-height: 28px;
    margin-bottom: 15px;
}

.cloud-comfort-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cloud-comfort-description li {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: white;
    line-height: 28px;
    margin-bottom: 8px;
    padding-left: 30px;
    position: relative;
}

.cloud-comfort-description li:before {
    content: "▶";
    color: #ED1C24;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Cloud Comfort CTA */
.cloud-comfort-cta {
    margin-top: 30px;
}

/* ========================================
   FINANCING SECTION
   ======================================== */

/* Financing Container */
.financing-section {
    padding: 80px 0;
    background: var(--primary-white);
}

.financing-wrapper {
    background-image: url('/wp-content/uploads/2025/07/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 50px;
}

.white-financing {
    background-image: none;
    background: none;
}

.financing-content {

    text-align: center;
    max-width: 625px;
}

/* Financing Image */
.financing-image-container {
    margin-bottom: 20px;
}

.financing-image {
    height: 100%;
    width: 100%;
    max-width: 330px;
}

.white-financing .financing-title,
.white-financing .financing-description p {
    color: var(--text-dark);
}

/* Financing Title */
.financing-title {
    font-family: var(--font-heading);
    font-size: 63px;
    font-weight: 700;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: -1.26px;
    margin-bottom: 8px;
    line-height: 50px;
}

/* Financing Description */
.financing-description {
    margin-bottom: 0px;
}

.financing-description p {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: white;
    line-height: 28px;
    margin-bottom: 0px;
}

.financing-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.financing-description li {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.financing-description li:before {
    content: "▶";
    color: #ED1C24;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Financing CTA */
.financing-cta {
    margin-top: 15px;
}

/* ========================================
   CTA SECTION STYLES
   ======================================== */

/* CTA Container */
.cta-section {
    background: var(--primary-white);
    padding: 0;
}

.cta-row {
    margin: 0;
    min-height: 500px;
    align-items: center;
}

/* CTA Image Column - Edge to edge */
.cta-image-col {
    padding: 0;
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.cta-van-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.cta-van-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* CTA Content Column */
.cta-content-col {
    padding: 80px 60px;
    background: var(--primary-white);
    display: flex;
    align-items: center;
}

.cta-content {
    width: 100%;
    max-width: 550px;
}

/* CTA Title */
.cta-title {
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 63px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1.26px;

    line-height: 50px;
    margin-bottom: 15px;
}

/* CTA Reviews Logos */
.cta-reviews-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 25px;
    align-items: center;
    justify-content: flex-start;
}

.cta-review-logo-item {
    flex-shrink: 0;
}

.cta-review-logo {
    width: 100%;
    max-width: 113px;
    object-fit: contain;
}

/* CTA Description */
.cta-description {
    margin-bottom: 35px;
}

.cta-description p {
    color: var(--text-body);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
}

.cta-description ul,
.cta-description ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.cta-description li {
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.cta-description li::marker {
    color: #D32F2F;
}

.cta-button-container {
    margin-top: 30px;
}


/* ========================================
   FOOTER BOTTOM STYLES
   ======================================== */

/* Footer Bottom Section */
.footer-bottom {
    padding: 20px 0;
}

/* Footer Bottom Content - Single Row */
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 11px;
}

/* Social Media Links */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: brightness(0) invert(0.8);
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    filter: brightness(0) invert(1);
}

/* Legal Text and Links */
.copyright-text,
.lmh-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-transform: none;
}

.legal-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: none;
}

.legal-link:hover {
    color: var(--primary-white);
}

/* ========================================
   USER REVIEWS SECTION
   ======================================== */

.user-reviews {
    background: var(--primary-white);
    padding: 80px 0;
}

.reviews-main-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: -1.26px;
    margin-bottom: 20px;
    line-height: 50px;
}

.reviews-content-row {
    margin: 0;
}

.reviews-left-col {
    padding: 40px 0px;
}

.reviews-left-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 160px;
    padding-right: 80px;
}

.social-reviews-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.social-review-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-review-logo {
    width: 100%;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.social-review-logo:hover {
    opacity: 1;
}

.reviews-column-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: -0.43px;
    margin-bottom: 30px;
    line-height: 38px;
}

.reviews-content {
    margin-bottom: 20px;
}

.reviews-content p {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-body);
    line-height: 28px;
}


.reviews-right-col {
    padding: 0;
    background: var(--primary-white);
}

.reviews-slider-container {
    height: 100%;
    min-height: 600px;
    position: relative;
    padding: 80px 20px 0px 40px;
}


.review-slide {
    background: white;
    padding: 30px 25px;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    text-align: left;
    min-height: 450px;
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    justify-content: flex-start;
}

.review-date {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-body);
    font-weight: 400;
    text-align: right;
}

.review-content {
    margin-bottom: 30px;
}

.review-content p {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-body);
    line-height: 28px;
    margin-top: 65px;
    margin-bottom: 25px;
}

.read-more-link {
    font-family: 'Brandon Grotesque_medium';
    font-size: 14px;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 500;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: -0.36px;
}

.read-more-link:hover {
    color: #BA2026;
    text-decoration: none;
}

.reviewer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 70px;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
}

.reviewer-logo {
    display: flex;
    align-items: center;
}

.slider-navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    border: 2px solid var(--red-gradient);
    background: white;
    color: var(--red-gradient);
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--red-gradient);
    color: white;
}

/* ========================================
   SLICK SLIDER ACTIVE SLIDE STYLES
   ======================================== */

/* Active slide styling */
.slick-active,
.slick-current {
    border: 1px solid #ED1C24 !important;
    box-shadow: 0 0 17px 0 rgba(237, 28, 36, 0.20) !important;
    transition: all 0.3s ease !important;
}

/* Default slide styling (non-active) */
.reviews-slider .slick-slide:not(.slick-active) .review-slide {
    border: 1px solid #f0f0f0 !important;
    transition: all 0.3s ease !important;
}

.slick-slider {
    display: flex;
    align-items: center;

}

/* Slick Slider Navigation Buttons - alignment only (use provided SVGs), no extra styling */
.reviews-slider-container .slick-prev,
.reviews-slider-container .slick-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    z-index: 10 !important;
}

.reviews-slider-container .slick-prev img,
.reviews-slider-container .slick-next img {
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    transition: none !important;
}

/* Keep arrows transparent on hover */
.reviews-slider-container .slick-prev:hover,
.reviews-slider-container .slick-next:hover {
    background: transparent !important;
    border-color: transparent !important;
}

.reviews-slider-container .slick-prev:hover img,
.reviews-slider-container .slick-next:hover img {
    filter: none !important;
}

.reviews-slider-container .slick-prev {
    left: 10px !important;
}

.reviews-slider-container .slick-next {
    right: 10px !important;
}

/* Hide default slick arrow styles */
.reviews-slider-container .slick-prev:before,
.reviews-slider-container .slick-next:before {
    display: none !important;
}

/* Hide default slick dots if any */
.reviews-slider .slick-dots {
    display: none !important;
}

/* ========================================
   HEADER SCROLL BEHAVIOR
   ======================================== */

/* Header Normal - Visible by default */
.top-regular-header {
    position: relative;
    z-index: 99;
    transition: all 0.3s ease;
}

/* Scrolled Header - Hidden initially */
.scrolled-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    width: 100%;
    max-width: 1200px;
    z-index: 100;
    transition: transform 0.3s ease;
}

/* When scrolling - Show scrolled header */
.scrolled-header.show {
    transform: translateX(-50%) translateY(0%);
}

/* When scrolling - Hide normal header */
.scroll-hidden {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Admin bar adjustments */

body.admin-bar .scrolled-header.show {
    transform: translateX(-50%) translateY(0%);
}

/* ========================================
   REVIEWS SLIDER MOBILE RESPONSIVE
   ======================================== */


.user-reviews .slick-slider {
    display: block !important;
}

.user-reviews .slick-prev,
.user-reviews .slick-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 50px !important;
    height: 50px !important;
    left: auto !important;
    right: auto !important;
    z-index: 20 !important;
}

.user-reviews .slick-prev {
    left: 10px !important;
}

.user-reviews .slick-next {
    right: 10px !important;
}

.user-reviews .slick-prev:before,
.user-reviews .slick-next:before {
    display: none !important;
}

.user-reviews .slick-prev img,
.user-reviews .slick-next img {
    width: 100% !important;
    height: 109px !important;
    display: block !important;
}


.reviews-slider-container {
    position: relative;
}

.reviews-slider-container .slider-prev,
.reviews-slider-container .slider-next,
.reviews-slider-container .slick-prev,
.reviews-slider-container .slick-next {
    position: absolute !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    left: auto;
    right: auto;
}

.reviews-slider-container .slider-prev,
.reviews-slider-container .slick-prev {
    left: -50px !important;
}

.reviews-slider-container .slider-next,
.reviews-slider-container .slick-next {
    right: -50px !important;
}

/* Ensure arrows are on top of slide card borders */
.reviews-slider-container .slider-prev,
.reviews-slider-container .slider-next,
.reviews-slider-container .slick-prev,
.reviews-slider-container .slick-next {
    z-index: 50 !important;
}

.gform_title {
    text-align: center;
}

.gform_fields {
    row-gap: 20px !important;
}

.contact-form-container input,
.contact-form-container textarea {
    background: #E5E5E5 !important;
    border: 0 !important;
    border-radius: 5px;
}

.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder {
    color: #171717 !important;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
}

.gform-footer {
    justify-content: center !important;
}

.gform_button,
form input[type="submit"] {
    background: var(--red-gradient) !important;
}

p>a {
    color: #ED1C24 !important;
    text-decoration: underline !important;
}

/* ========================================
   404 ERROR PAGE STYLES
   ======================================== */

.error-404-section {
    padding: 180px 0;
    min-height: 70vh;
    background: var(--primary-white);
}

.error-404-title {
    font-family: var(--font-heading);
    font-size: 63px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: -1.26px;
    margin-bottom: 53px;
    line-height: 1.1;
}

.error-404-text {
    max-width: 600px;
    margin: 0 auto;
}

.error-404-text p {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-body);
    line-height: 28px;
    margin-bottom: 15px;
}

.adminbar-button {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .error-404-section {
        padding: 120px 0;
    }

    .error-404-title {
        font-size: 42px;
        margin-bottom: 35px;
    }
}

@media (max-width: 480px) {
    .error-404-section {
        padding: 80px 0;
    }

    .error-404-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
}

.internal-content {
    padding: 80px 0;
}

body .is-layout-flex {
    justify-content: center !important;
    padding: 30px;
}

.wp-block-columns {
    align-items: flex-start !important;
    padding: 60px 0;
}

/* Services Sidebar Block */
.services-sidebar {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid #ED1C24;
}

.services-sidebar__header {
    background: var(--red-gradient);
    padding: 24px;
}

.services-sidebar__title {
    color: #ffffff;
    font-family: 'Tungsten', sans-serif;
    font-weight: 700;
    font-size: 43px;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-sidebar__content {
    padding: 0;
}

.services-sidebar__list,
.post-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 20px 60px 20px 25px;
}

.services-sidebar__item,
.post-sidebar ul li {
    border-bottom: 1px solid #ED1C24;
    padding: 5px 0 !important;
    margin-bottom: 0 !important;
}

.services-sidebar__item::before,
.post-sidebar ul li::before {
    display: none;
}

.services-sidebar__item:last-child,
.post-sidebar ul li:last-child {
    border-bottom: none;
}

.services-sidebar__link,
.post-sidebar ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    text-transform: uppercase;
    color: #171717;
    font-family: 'Brandon Grotesque', sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.services-sidebar__link:hover,
.post-sidebar ul li a:hover {
    color: #ED1C24;
}

.services-sidebar__link:hover .services-sidebar__arrow {
    transform: translateX(5px);
    color: #ED1C24;
}

.services-sidebar__link-text {
    flex: 1;
    font-weight: 500;
}

.services-sidebar__arrow {
    font-size: 1.5rem;
    font-weight: bold;
    color: #666666;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-sidebar__title {
        font-size: 2rem;
    }

    .services-sidebar__header {
        padding: 1.5rem;
    }

    .services-sidebar__link {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
}

/* Partnerships Section */
.partnerships-section {
    padding: 4rem 0;
}

.partnerships-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.partnerships-title {
    font-family: 'Tungsten', sans-serif;
    font-weight: 700;
    font-size: 63px;
    line-height: 1.2;
    color: #171717;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.partnerships-text {
    font-family: 'Brandon Grotesque', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 10px 0;
}

.partnerships-text p {
    margin-bottom: 1rem;
}

.partnerships-text p:last-child {
    margin-bottom: 0;
}

.partnerships-logos {
    margin-top: 3rem;
}

.partnerships-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partnerships-logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    max-width: 25%;
}

.partnerships-logo {

    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partnerships-logo:hover {

    transform: scale(1.05);
}

/* Responsive Design for Partnerships */
@media (max-width: 992px) {
    .partnerships-title {
        font-size: 2.5rem;
    }

    .partnerships-text {
        font-size: 1.1rem;
    }

    .partnerships-logos-row {
        justify-content: center;
        gap: 1.5rem;
    }

    .partnerships-logo-item {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .partnerships-section {
        padding: 3rem 0;
    }

    .partnerships-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .partnerships-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .partnerships-logos {
        margin-top: 2rem;
    }

    .partnerships-logos-row {
        gap: 1rem;
    }

    .partnerships-logo-item {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
        min-height: 60px;
    }

    .partnerships-logo {
        max-height: 60px;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .partnerships-logo-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Slideshows Section */
.slideshows-section {
    padding: 90px 0;
    background-image: url('/wp-content/uploads/2025/10/Slide-Show-Dark.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.slideshows-title {
    font-family: 'Tungsten', sans-serif;
    font-weight: 700;
    font-size: 63px;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.slideshow-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Main Image Display */
.slideshow-main {
    margin: 20px auto;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    max-width: 625px;
}

.slideshow-main-wrapper {
    position: relative;
    width: 100%;
    height: 340px;
}

.slideshow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slideshow-slide.active {
    opacity: 1;
}

.slideshow-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Controls */
.slideshow-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.slideshow-arrow {
    background: #171717;
    border: 3px solid #ffffff;
    color: #ffffff;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 24px;
    flex-shrink: 0;
}

.slideshow-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slideshow-arrow:active {
    transform: scale(0.95);
}

/* Thumbnails */
.slideshow-thumbnails {
    flex: 1;
    max-width: 700px;
    /* Width for exactly 4 thumbnails: (167px + 16px gap) * 4 - 16px gap */
    overflow: hidden;
    position: relative;
}

.slideshow-thumbnails::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    /* Width of the gradient fade */
    height: 100%;
    background: linear-gradient(270deg, rgba(23, 23, 23, 0.00) 0%, #000 61.06%);
    pointer-events: none;
    /* Allow clicks to pass through */
    z-index: 2;
}

.slideshow-thumbnails::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    /* Width of the gradient fade */
    height: 100%;
    background: linear-gradient(90deg, rgba(23, 23, 23, 0.00) 0%, #000 61.06%);
    pointer-events: none;
    /* Allow clicks to pass through */
    z-index: 2;
}

.slideshow-thumbnails-wrapper {
    padding: 5px 0;
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: transform 0.4s ease;
    width: max-content;
    /* Allow wrapper to be wider than container */
}

.slideshow-thumbnail {
    width: 167px;
    height: 114px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    opacity: 0.6;
}

.slideshow-thumbnail.active {
    border-color: #f00;
    opacity: 1;
    transform: scale(1.05);
    /* Slightly less scale to avoid overlap */
}

.slideshow-thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.slideshow-thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Counter */
.slideshow-counter {
    text-align: center;
    font-family: 'Tungsten', sans-serif;
    font-size: 40px;
    color: #ffffff;
    font-weight: 500;
    max-width: 80px;
    margin: 0 auto;
    border-bottom: 4px solid #f00;
}

.slideshow-current {
    color: #ffffff;
    font-weight: 700;
}

.slideshow-total {
    color: #ffffff;
}

/* Responsive Design for Slideshows */
@media (max-width: 992px) {
    .slideshows-title {
        font-size: 48px;
        margin-bottom: 2rem;
    }

    .slideshow-main-wrapper {
        height: 400px;
    }

    .slideshow-controls {
        gap: 1.5rem;
    }

    .slideshow-thumbnails {
        max-width: 540px;
        /* Adjust for smaller screens: (130px + 16px) * 4 - 16px */
    }

    .slideshow-thumbnails::before,
    .slideshow-thumbnails::after {
        width: 60px;
        /* Smaller gradient for tablet */
    }

    .slideshow-thumbnail {
        width: 130px;
        height: 89px;
        /* Maintain aspect ratio */
    }

    .slideshow-arrow {
        width: 70px;
        height: 70px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .slideshows-section {
        padding: 3rem 0;
        min-height: auto;
    }



    .slideshows-title {
        font-size: 36px;
        margin-bottom: 1.5rem;
    }

    .slideshow-main-wrapper {
        height: 300px;
    }

    .slideshow-controls {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .slideshow-thumbnails {
        order: -1;
        max-width: 400px;
        /* Adjust for mobile: (95px + 16px) * 4 - 16px */
        margin-bottom: 1rem;
    }

    .slideshow-thumbnails::before,
    .slideshow-thumbnails::after {
        width: 40px;
        /* Even smaller gradient for mobile */
    }



    .slideshow-thumbnails-wrapper {
        /* Remove overflow-x auto since we're handling it with JavaScript */
        justify-content: flex-start;
        padding: 0;
    }

    .slideshow-thumbnail {
        width: 95px;
        height: 65px;
        /* Maintain aspect ratio */
    }

    .slideshow-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slideshow-arrow:focus {
        outline: none;
    }

    .slideshow-arrow svg {
        max-width: 18px;
    }

    .slideshow-counter {
        font-size: 24px;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .slideshows-title {
        font-size: 28px;
    }

    .slideshow-main-wrapper {
        height: 250px;
    }

    .slideshow-thumbnail {
        width: 75px;
        height: 51px;
        /* Maintain aspect ratio */
    }
}


.commercial-block {
    padding: 144px 0;
    max-width: 832px;
}


/* blog page */

.blog-page-title {
    position: relative;
    min-height: 388px;
    background: url('../images/blogetitle.png') no-repeat center center / cover;
}

.blog-page-title h1,
.blog-page-title a {
    z-index: 2;
    position: relative;
}

.bloglist {
    padding: 71px 0 10px 0;
    background-color: var(--primary-white);
}

.bloglist .blog-item {
    margin-bottom: 38px;
}

.blog-item .blog-card {
    border-radius: 10.736px;
    background: var(--primary-white);
    border: 2.013px solid #e8e5e5;
    box-shadow: 0 4.719px 21.237px 0 rgba(48, 48, 48, 0.24);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.blog-item .blog-card:hover {
    border: 2.013px solid var(--Red-Gradient-2, #ED1C24);
}

.blog-item a.blog-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: block;
    box-shadow: 0 4.719px 21.237px 0 rgba(48, 48, 48, 0.24);
}

.blog-item .blog-card img,
.featured-post img {
    width: 100%;
    height: 241.562px;
    object-fit: cover;
    object-position: center;
}

.blog-item .blog-content {
    text-align: center;
    padding: 13.5px 18px 88px 18px;
}

.blog-item .blog-content p.blog-date {
    color: var(--text-dark);
    line-height: 30px;
    margin-bottom: 0;
    font-family: 'Brandon Grotesque_medium', sans-serif;
    font-size: 16px;
}

.blog-item .blog-content .text-center {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 30px;
}

.blog-item .blog-content p.blog-excerpt {
    margin: 8px 0 18px 0;
}

.blog-item .blog-content .blog-title a:hover {
    color: var(--text-dark);
}

.featured-post .blog-card {
    border-radius: 8px;
    background: url('/wp-content/uploads/2025/07/Frame-427318289.png') no-repeat right center / cover;
    overflow: hidden;
    margin: 0;
}

.featured-post h2 {
    margin: 67px 0 13px;
}

.featured-post img {
    height: 477px;
}

.featured-post p,
.featured-post a,
.featured-post h3 {
    color: var(--primary-white);
}

.featured-content {
    padding: 20px 35px 25px 37px;
}

.featured-post p.blog-excerpt {
    margin: 14px 0 45px 0px;
}

.pagination-wrapper {
    padding-top: 20px;
}

.pagination-wrapper span {
    font-family: 'Brandon Grotesque_medium', sans-serif;
    width: 36px;
    height: 36px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

.pagination-wrapper span.page-btn.num.active {
    background: var(--Red-Gradient-2, linear-gradient(180deg, #ED1C24 0%, #BA2026 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pagination-wrapper span.page-btn.prev.disabled,
.pagination-wrapper .page-btn.next.disabled {
    display: none;
}

.pagination-wrapper span.page-btn.next {
    margin-left: 13px;
}

.pagination-wrapper span.page-btn.prev {
    margin-right: 13px;
}

.pagination-wrapper span.page-btn.next,
.pagination-wrapper span.page-btn.prev {
    border-radius: 5px;
    border: 0.74px solid var(--text-dark);
    padding: 0;
    position: relative;
}

.blog-item a.blog-img:before,
.pagination-wrapper span.page-btn.next:after,
.pagination-wrapper span.page-btn.prev:after,
.post-hero:before,
.post-hero::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.blog-item a.blog-img:before {
    opacity: 0.35;
    background: var(--text-dark);
}

.pagination-wrapper span.page-btn.next:after,
.pagination-wrapper span.page-btn.prev:after {
    background: var(--Red-Gradient-2, linear-gradient(180deg, #ED1C24 0%, #BA2026 100%));
    opacity: 0;
    border-radius: 4px;
    transition: opacity .8s ease;
}

.pagination-wrapper span.page-btn.next:hover,
.pagination-wrapper span.page-btn.prev:hover {
    border: 0;
}

.pagination-wrapper span.page-btn.next:hover:after,
.pagination-wrapper span.page-btn.prev:hover:after {
    opacity: 1;
}

.pagination-wrapper span.page-btn.next svg,
.pagination-wrapper span.page-btn.prev svg {
    z-index: 2;
}

.pagination-wrapper span.page-btn.next svg path,
.pagination-wrapper span.page-btn.prev svg path {
    transition: stroke .8s ease;
}

.pagination-wrapper span.page-btn.next:hover svg path,
.pagination-wrapper span.page-btn.prev:hover svg path {
    stroke: var(--primary-white);
}

.post-hero {
    min-height: 550px;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    justify-content: center;
    padding: 138px 50px 254px 50px;
}

.post-hero:before {
    background: url('../images/post-hero.jpg') no-repeat center center / cover;
    opacity: 0.5;
}

.post-hero::after {
    opacity: 0.68;
    background: var(--text-dark);
}

.post-hero .container {
    z-index: 1;
    position: relative;
}

.post-hero .post-hero-wrap {
    max-width: 954px;
    margin-bottom: 50px;
}

.post-hero .post-hero-wrap p.p__excerpt {
    margin: 10px 0 18px 0;
}

.post-hero .van-image-container {
    width: 100%;
    z-index: 2;
    position: absolute;
    bottom: 0;
}

.post-hero .van-image-container img {
    max-height: 191.586px;
    width: auto;
    animation: slideInFromLeft_ 2.2s ease-out forwards;
}

@keyframes slideInFromLeft_ {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(90%);
    }
}

.single-post-content {
    padding: 60px 0 75px 0;
    background-color: var(--primary-white);
}

.post-sidebar ul {
    padding: 20px 50px 20px 25px;
}

.post-sidebar ul li a::after {
    content: '→';
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.post-sidebar ul li a:hover::after {
    transform: translateX(5px);
}

.post-content {
    padding-left: 45px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6,
.post-content p {
    margin: 0;
    color: var(--text-dark);
}

.post-content img {
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 3.517px 15.825px 0 rgba(48, 48, 48, 0.24);
}

.post-content ul li::before,
.post-content ol li::before {
    display: none;
}

.post-content ul,
.post-content ol {
    padding-left: 40px;
}

.post-content ul li,
.post-content ol li {
    padding-left: 12px !important;
    margin-bottom: 11px !important;
    font-size: 18px;
}

.post-content ul li {
    list-style: disc !important;
}

.post-content ol li {
    list-style: auto !important;
}

.post-content ul li::marker,
.post-content ol li::marker {
    color: #BA2026;
    font-weight: bold;
}

.post-content .wp-block-video video {
    width: 100%;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 3.517px 15.825px 0 rgba(48, 48, 48, 0.24);
}

.post-content blockquote {
    margin: 0;
    background: url('/wp-content/uploads/2025/07/Frame-427318289.png') no-repeat center center / cover;
    border-radius: 8px;
    padding: 69px 78px 30px 40px;
    position: relative;
}

.post-content blockquote p {
    font-family: var(--font-heading);
    font-size: 43px;
    line-height: 40px;
    letter-spacing: -0.43px;
    color: var(--primary-white);
}

.post-content blockquote:before {
    content: '';
    position: absolute;
    width: 35.534px;
    height: 36.668px;
    background: url('../images/blockquote.svg') no-repeat center center / contain;
    top: 21px;
}

.post-content .social-shares {
    gap: 31px;
    position: relative;
    width: fit-content;
}

.post-content .social-shares span.copied {
    position: absolute;
    bottom: -30px;
    right: 0;
}

.post-content .social-shares a:hover svg path {
    fill: #BA2026;
}

.single-post-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 60px;
    background: url('/wp-content/uploads/2025/07/Frame-427318289.png') no-repeat center center / cover;
    padding: 45px 50px 38px 50px;
    margin-top: 28px;
}

.single-post-cta h3 {
    color: var(--primary-white);
    width: 72%;
}

.single-post-cta .btn-cta {
    width: 25% !important;
}

.related-post .bloglist {
    padding-top: 0;
}

.related-post {
    background-color: var(--primary-white);
    padding-bottom: 20px;
}

.back-link a {
    justify-content: center;
    gap: 6px;
    margin: -20px 0px 10px 0;
    padding-right: 25px;
    transition: all 1s ease;
}

.back-link a svg path {
    transition: all 1s ease;
}

.back-link a:hover {
    color: #ED1C24;
}

.back-link a:hover svg path {
    fill: #ED1C24;
}

/* end blog page */