/* ===== Variables ===== */
:root {
    --primary-red: #e53224;
    --primary-red-dark: #af221b;
    --black: #000000;
    --dark-grey: #000000;
    --text-grey: #424242;
    --light-grey: #f5f5f5;
    --header-bg: #e8e8e8;
    --label-grey: #757575;
    --bs-body-font-family: 'Lato', sans-serif;
    --bs-font-sans-serif: 'Lato', sans-serif;
}

/* ===== Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body,
button,
input,
select,
textarea {
    font-family: 'Lato', sans-serif;
}

body {
    color: var(--text-grey);
    overflow-x: hidden;
}

p {
    font-size: 16px;
    line-height: 1.85;
}

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

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

/* ===== Top Bar ===== */
.top-bar {
    background: var(--header-bg);
}

.home-page .top-bar {
    border-bottom: none;
}

body:not(.home-page) .top-bar {
    border-bottom: 1px solid #ddd;
}

/* ===== Header Card (hero overlay) ===== */
.hero-header-container {
    position: relative;
    z-index: 10;
    padding-top: 28px;
}

.header-card {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.header-card .top-bar {
    padding: 14px 30px 10px;
    background: var(--header-bg);
}

.logo-link {
    display: inline-block;
    line-height: 0;
}

.logo-img {
    width: auto;
    height: 90px;
    object-fit: contain;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--label-grey);
    display: block;
    font-family: 'Lato', sans-serif;
    line-height: 1.3;
}

.contact-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.4;
    font-family: 'Lato', sans-serif;
}

/* ===== Navigation ===== */
.main-nav {
    background: var(--primary-red);
    padding: 0;
}

.main-nav > div {
    width: 100%;
}

.main-nav .navbar-collapse {
    width: 100%;
}

@media (min-width: 992px) {
    .main-nav .navbar-collapse {
        display: flex !important;
    }
}

.main-nav .nav-inner {
    display: flex;
    align-items: stretch;
    width: 100%;
    padding: 0 0 0 30px;
    gap: 0;
}

body:not(.home-page) .main-nav .nav-inner {
    padding-left: 15px;
}

.nav-links {
    gap: 42px;
    padding-left: 4px;
    margin: 0;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
    flex: 1;
}

.nav-links a {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 0;
    position: relative;
    transition: opacity 0.3s;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 0.85;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
}

.btn-quote {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: var(--primary-red-dark);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    padding: 14px 30px;
    border-radius: 0;
    transition: all 0.3s;
    white-space: nowrap;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    align-self: stretch;
}

.btn-quote:hover {
    background: var(--black);
    color: #fff;
}

.mobile-nav-toggle {
    border-color: rgba(255, 255, 255, 0.5);
    margin: 10px auto 10px 15px;
}

.home-page .mobile-nav-toggle {
    margin-left: 20px;
    margin-right: auto;
}

.mobile-nav-toggle .navbar-toggler-icon {
    filter: invert(1);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    background: url('../images/Banner.jpg') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.15;
    font-family: 'Lato', sans-serif;
    margin-bottom: 0;
}

.hero-title .highlight {
    color: var(--primary-red);
}

.hero-subtitle {
    font-size: 1.75rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 12px;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
}

/* ===== Client Logos ===== */
.client-logos {
    margin-top: -75px;
    position: relative;
    z-index: 10;
    padding-bottom: 50px;
}

.client-logos-inner {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 30px 50px;
}

.client-logo-img {
    height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.client-logo-img:hover {
    transform: scale(1.05);
}

/* ===== About Section ===== */
.about-section {
    position: relative;
    padding: 50px 0 80px;
    background: #fff;
    overflow: visible;
}

.about-decor {
    position: absolute;
    top: -110px;
    right: 0;
    width: 28%;
    max-width: 340px;
    height: calc(100% + 110px);
    pointer-events: none;
    z-index: 0;
}

.about-decor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top right;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-image {
    border-radius: 15px;
    width: 100%;
    object-fit: cover;
    min-height: 380px;
}

.about-section .section-label {
    color: var(--primary-red);
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-family: 'Lato', sans-serif;
}

.about-section .section-text {
    font-size: 20px;
    line-height: 1.85;
    color: var(--black);
    font-weight: 400;
    margin-bottom: 28px;
    max-width: 600px;
    font-family: 'Lato', sans-serif;
}

.about-section .btn-red {
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
}

.section-label {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.section-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-grey);
    margin-bottom: 25px;
}

.btn-red {
    background: var(--primary-red);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
    display: inline-block;
}

.btn-red:hover {
    background: var(--primary-red-dark);
    color: #fff;
}

/* ===== Services & Video Wrapper ===== */
.services-video-wrap {
    position: relative;
    background: #fff;
}

/* ===== Services Section ===== */
.services-section {
    background: url('../images/red-bg.jpg') center center / cover no-repeat;
    padding: 70px 0 110px;
    position: relative;
    overflow: visible;
    margin-bottom: 0;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-heading {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 45px;
    letter-spacing: 0.5px;
    line-height: 1.35;
    font-family: 'Lato', sans-serif;
}

.services-slider-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.services-owl-wrap {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.services-owl.owl-carousel {
    display: block;
    width: 100%;
}

.services-owl .item {
    padding: 0;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    text-align: center;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-card-top {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px 20px;
}

.service-card-bottom {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 15px 28px;
}

.service-icon {
    height: 80px;
    width: auto;
    max-width:80px;
    object-fit: contain;
}

.service-divider {
    width: calc(100% - 40px);
    height: 3px;
    background: var(--primary-red);
    margin: 0 auto;
    flex-shrink: 0;
}

.service-title {
    font-size: 22px;
    font-weight: 500;
    color: #000000;
    font-family: 'Lato', sans-serif;
    margin-bottom: 0;
    line-height: 1.45;
}

.services-nav-next {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.services-nav-next:hover {
    opacity: 0.85;
    transform: translateX(4px);
}

.services-nav-next img {
    width: 16px;
    height: auto;
    display: block;
    mix-blend-mode: screen;
}

/* Owl Carousel overrides */
.services-owl.owl-carousel:not(.owl-loaded) {
    display: flex !important;
    flex-wrap: wrap;
    gap: 20px;
}

.services-owl.owl-carousel:not(.owl-loaded) .item {
    flex: 0 0 calc(33.333% - 14px);
}

.services-owl .owl-stage-outer {
    overflow: hidden;
}

.services-owl .owl-nav,
.services-owl .owl-dots {
    display: none !important;
}

/* ===== Video Section ===== */
.video-section {
    position: relative;
    margin-top: -85px;
    padding-top: 50px;
    padding-bottom: 50px;
    background: transparent;
    z-index: 5;
    overflow: visible;
}

.video-decor-left {
    position: absolute;
    top: 66px;
    left: 0;
    width: 32%;
    max-width: 380px;
    margin-top: 25px;
    padding-top: 70px;
    pointer-events: none;
    z-index: 0;
}

.video-decor-left img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    object-position: top left;
}

.video-section .container {
    position: relative;
    z-index: 1;
}

.video-card {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    line-height: 0;
}

.promo-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: #000;
    vertical-align: top;
}

/* ===== Gallery Section ===== */
.gallery-section {
    padding: 60px 0 80px;
    background: #fff;
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 1.35fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery-item {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    min-height: 260px;
}

.gallery-item-wide {
    grid-column: 2 / 4;
}

.gallery-cta {
    background: url('../images/Black-BG.jpg') center center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 40px 32px;
}

.gallery-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    border-radius: 18px;
}

.gallery-box-content {
    position: relative;
    z-index: 2;
}

.gallery-cta h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Lato', sans-serif;
}

.gallery-img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.04);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: url('../images/Black-BG.jpg') center center / cover no-repeat;
    padding: 80px 0;
    position: relative;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonial-left {
    max-width: 100%;
}

.testimonial-heading {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.25;
    font-family: 'Lato', sans-serif;
    max-width: 280px;
}

.testimonial-heading .highlight {
    color: var(--primary-red);
}

.testimonial-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.85;
    font-family: 'Lato', sans-serif;
    max-width: 270px;
}

.testimonial-right {
    padding-left: 20px;
}

.testimonial-slider-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 55px;
    max-width: 480px;
    width: 100%;
}

.testimonial-owl-wrap {
    flex: 1;
    min-width: 0;
    max-width: 400px;
    overflow: hidden;
}

.testimonial-owl.owl-carousel {
    display: block;
    width: 100%;
}

.testimonial-owl .item {
    padding: 0;
}

.testimonial-owl .owl-nav,
.testimonial-owl .owl-dots {
    display: none !important;
}

.testimonial-owl.owl-carousel .owl-item img {
    display: block;
    width: 7%;
}

.testimonial-owl.owl-carousel .owl-item .testimonial-avatar {
    width: 48px;
    height: 48px;
}

.testimonial-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 26px 24px;
    position: relative;
    border-bottom: 3px solid var(--primary-red);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1), 6px 6px 0 0 var(--primary-red);
    height: 285px;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    margin-bottom: 14px;
    flex-shrink: 0;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.85;
    color: #000000;
    margin-bottom: 22px;
    font-family: 'Lato', sans-serif;
    height: calc(16px * 1.85 * 4);
    min-height: calc(16px * 1.85 * 4);
    max-height: calc(16px * 1.85 * 4);
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    color: #000000;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
}

.testimonial-nav-next {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.testimonial-nav-next:hover {
    opacity: 0.85;
    transform: translateX(3px);
}

.testimonial-nav-next img {
    width: 22px;
    height: 22px;
    display: block;
}

/* ===== Newsletter ===== */
.newsletter-section {
    background: var(--primary-red);
    padding: 28px 0;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.newsletter-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
    white-space: nowrap;
    word-spacing: 1px;
}

.newsletter-alert {
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    width: 100%;
    text-align: center;
}

.newsletter-alert-success {
    color: #fff;
}

.newsletter-alert-danger {
    color: #ffe0de;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    border: none;
    border-radius: 6px;
    padding: 11px 16px;
    font-size: 14px;
    width: 260px;
    max-width: 100%;
    font-family: 'Lato', sans-serif;
}

.newsletter-input::placeholder {
    color: #999;
}

.btn-signup {
    background: var(--black);
    color: #fff;
    border: none;
    padding: 11px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: background 0.3s;
    font-family: 'Lato', sans-serif;
}

.btn-signup:hover {
    background: var(--primary-red-dark);
    color: #fff;
}

/* ===== Footer ===== */
.main-footer {
    background: #fff;
}

.footer-logo {
    width: auto;
    height: 90px;
    object-fit: contain;
}

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 28px;
    max-width: 340px;
}

.footer-list li {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 6px;
    line-height: 1.5;
    font-family: 'Lato', sans-serif;
}

.social-icons img {
    width: auto;
    height: 17px;
    transition: opacity 0.3s;
}

.social-icons a:hover img {
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid #eee;
    font-size: 15px;
    color: #555;
}

.footer-mobile-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 28px 0 8px;
    border-bottom: 1px solid #eee;
}

.footer-mobile-contact .contact-item {
    justify-content: center;
    text-align: left;
}

/* ===== Page Banner (inner pages) ===== */
.page-banner {
    background: url('../images/Banner.jpg') center/cover no-repeat;
    position: relative;
    padding: 80px 0;
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.page-banner .breadcrumb-nav {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 10px;
}

.page-banner .breadcrumb-nav a {
    color: #fff;
}

.page-banner .breadcrumb-nav a:hover {
    color: var(--primary-red);
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 80px 0;
}

.contact-info-card {
    background: var(--light-grey);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
}

.contact-info-card h4 {
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item img {
    width: 30px;
    height: 30px;
}

.contact-form-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-card .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(229, 50, 36, 0.15);
}

/* ===== Gallery Page ===== */
.gallery-page-section {
    padding: 80px 0;
}

.gallery-page-item {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.gallery-page-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-page-item:hover img {
    transform: scale(1.05);
}

/* ===== About Page ===== */
.about-page-section {
    padding: 80px 0;
}

.about-feature {
    text-align: center;
    padding: 30px 20px;
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.about-feature h5 {
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .client-logo-img {
        height: 60px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .btn-quote {
        font-size: 13px;
        padding: 9px 18px;
    }

    .main-nav .nav-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    }

    .nav-links {
        padding: 14px 20px;
    }

    .btn-quote {
        margin-left: 0;
        margin-top: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.25);
        justify-content: center;
        width: 100%;
        text-align: center;
    }

}

@media (max-width: 767px) {
    .top-bar-row {
        justify-content: center;
    }

    .top-bar-logo-col {
        display: flex;
        justify-content: center;
    }

    .header-card .top-bar {
        padding: 12px 16px 10px;
    }

    .main-nav .nav-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px 24px;
        padding: 14px 20px;
    }

    .btn-quote {
        margin-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.25);
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-decor {
        top: -80px;
        width: 38%;
        max-width: 260px;
        height: calc(100% + 80px);
        opacity: 0.7;
    }

    .about-section {
        overflow: hidden;
    }

    .about-image {
        min-height: 260px;
    }

    .about-section .section-label {
        font-size: 1.35rem;
    }

    .about-section .section-text {
        font-size: 18px;
    }

    .client-logos {
        margin-top: -50px;
    }

    .client-logos-inner {
        padding: 20px 25px;
    }

    .client-logo-img {
        height: 45px;
    }

    .services-heading {
        font-size: 1.5rem;
    }

    .services-slider-row {
        gap: 12px;
    }

    .services-nav-next img {
        width: 14px;
    }

    .service-icon {
        height: 44px;
        max-width: 50px;
    }

    .services-section {
        padding-bottom: 80px;
    }

    .video-section {
        margin-top: -65px;
        padding-top: 35px;
        padding-bottom: 40px;
    }

    .video-decor-left {
        width: 40%;
        max-width: 220px;
        margin-top: 15px;
        padding-top: 50px;
    }

    .video-decor-left img {
        max-height: 180px;
    }

    .promo-video {
        height: auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .gallery-item {
        min-height: 220px;
    }

    .gallery-img {
        min-height: 220px;
    }

    .gallery-cta h3 {
        font-size: 1.6rem;
    }

    .testimonial-desc,
    .testimonial-heading {
        max-width: 100%;
    }

    .testimonial-left {
        padding-left: 15px;
    }

    .testimonial-right {
        padding-left: 15px;
    }

    .testimonial-slider-row {
        margin-left: 0;
        max-width: 100%;
    }

    .testimonial-owl-wrap {
        max-width: 100%;
    }

    .testimonial-card {
        max-width: 100%;
        padding: 24px 20px 20px;
        height: 285px;
    }

    .testimonial-text {
        height: calc(16px * 1.85 * 4);
        min-height: calc(16px * 1.85 * 4);
        max-height: calc(16px * 1.85 * 4);
    }

    .testimonial-heading {
        font-size: 1.6rem;
    }

    .testimonial-slider-row {
        gap: 10px;
    }

    .testimonial-nav-next img {
        width: 20px;
        height: 20px;
    }

    .newsletter-inner {
        flex-direction: column;
        gap: 14px;
    }

    .newsletter-input {
        width: 240px;
    }

    .footer-links-grid {
        max-width: 100%;
    }
}
