/* ==========================================================================
   Surfix Repairs - Custom Header & Top Bar Styles
   Matching exact design specification
   ========================================================================== */

:root {
    --surfix-navy: #02162e;
    --surfix-navy-dark: #011124;
    --surfix-orange: #fe8302;
    --surfix-orange-hover: #e57200;
    --surfix-text-dark: #02162e;
    --surfix-text-muted: #5b677a;
    --surfix-border-light: rgba(255, 255, 255, 0.22);
    --surfix-font-heading: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --surfix-font-body: 'Roboto', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Ensure parent container allows sticky positioning */
.page {
    overflow: visible !important;
}

#page-loader {
    display: none !important;
}

/* Master Header Container */
.surfix-master-header {
    width: 100%;
    position: relative;
    z-index: 1050;
    background: #ffffff;
    font-family: var(--surfix-font-body);
}

/* --------------------------------------------------------------------------
   1. TOP BAR
   -------------------------------------------------------------------------- */
.surfix-topbar {
    background-color: var(--surfix-navy);
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.surfix-container {
    width: 100%;
    max-width: 100%;
    padding-left: 48px;
    padding-right: 48px;
}

.surfix-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

/* Left Contact Info */
.surfix-contact-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.surfix-contact-item {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 400;
    letter-spacing: 0.1px;
    white-space: nowrap;
    text-decoration: none;
}

.surfix-contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.surfix-contact-item a:hover {
    color: var(--surfix-orange);
}

.surfix-contact-item .surfix-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 7px;
}

.surfix-contact-item .surfix-icon svg {
    width: 13.5px;
    height: 13.5px;
    fill: var(--surfix-orange);
    display: block;
}

.surfix-divider {
    color: var(--surfix-border-light);
    margin: 0 16px;
    font-size: 13px;
    font-weight: 300;
    user-select: none;
}

/* Right Social Links */
.surfix-social-links {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.surfix-social-links li {
    display: inline-flex;
    align-items: center;
}

.surfix-social-links a {
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.surfix-social-links a:hover {
    color: var(--surfix-orange);
    transform: translateY(-1px);
}

.surfix-social-links svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    display: block;
}

/* --------------------------------------------------------------------------
   2. MAIN NAVBAR
   -------------------------------------------------------------------------- */
.surfix-navbar-sticky-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.surfix-navbar-sticky-wrapper.surfix-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09);
    animation: surfixSlideDown 0.25s ease;
}

@keyframes surfixSlideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.surfix-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}

/* Brand Logo */
.surfix-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    user-select: none;
}

.surfix-brand:hover {
    text-decoration: none;
}

.surfix-brand img,
.surfix-logo-img {
    max-height: 62px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: max-height 0.2s ease;
}

/* Nav Menu Links (Desktop - Shifted to the right) */
.surfix-nav-wrap {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 32px;
}

.surfix-nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.surfix-nav-item {
    position: relative;
    list-style: none;
}

.surfix-nav-link {
    font-family: var(--surfix-font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--surfix-text-dark);
    text-decoration: none;
    padding: 10px 0;
    display: inline-block;
    position: relative;
    transition: color 0.2s ease;
}

.surfix-nav-link:hover {
    color: var(--surfix-orange);
    text-decoration: none;
}

/* Active Item with Orange Underline Indicator */
.surfix-nav-item.active .surfix-nav-link {
    color: var(--surfix-orange);
}

.surfix-nav-item.active .surfix-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background-color: var(--surfix-orange);
    border-radius: 2px;
}

/* Dropdown Support */
.surfix-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(2, 22, 46, 0.12);
    border-radius: 6px;
    padding: 10px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    border-top: 3px solid var(--surfix-orange);
}

.surfix-nav-item:hover .surfix-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.surfix-dropdown-right .surfix-dropdown-menu {
    left: auto;
    right: 0;
}

.surfix-nav-item:hover > .surfix-nav-link svg {
    transform: rotate(180deg);
}

.surfix-dropdown-menu li {
    list-style: none;
}

.surfix-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--surfix-text-dark);
    text-decoration: none;
    transition: all 0.15s ease;
}

.surfix-dropdown-menu a:hover {
    background-color: #fff7ed;
    color: var(--surfix-orange);
    padding-left: 24px;
}

/* CTA Action Button */
.surfix-nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.surfix-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--surfix-orange);
    color: #ffffff !important;
    font-family: var(--surfix-font-heading);
    font-size: 14.5px;
    font-weight: 600;
    padding: 10.5px 22px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(254, 131, 2, 0.25);
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.surfix-quote-btn:hover {
    background-color: var(--surfix-orange-hover);
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(254, 131, 2, 0.4);
}

.surfix-quote-btn .surfix-btn-arrow {
    font-size: 15px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.surfix-quote-btn:hover .surfix-btn-arrow {
    transform: translateX(3px);
}

/* Mobile Hamburger Toggle */
.surfix-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: #ffffff;
    border: 1px solid rgba(2, 22, 46, 0.12);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    z-index: 1051;
    transition: all 0.25s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.surfix-mobile-toggle:hover,
.surfix-mobile-toggle:focus {
    background: #f8fafc;
    border-color: var(--surfix-orange);
    outline: none;
}

.surfix-mobile-toggle span {
    display: block;
    width: 20px;
    height: 2.2px;
    background: var(--surfix-navy);
    border-radius: 2px;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, background-color 0.25s ease;
    transform-origin: center;
}

.surfix-mobile-toggle.is-active {
    background: #fff7ed;
    border-color: var(--surfix-orange);
}

.surfix-mobile-toggle.is-active span:nth-child(1) {
    transform: translateY(7.2px) rotate(45deg);
    background: var(--surfix-orange);
}

.surfix-mobile-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.surfix-mobile-toggle.is-active span:nth-child(3) {
    transform: translateY(-7.2px) rotate(-45deg);
    background: var(--surfix-orange);
}

/* Mobile Backdrop Overlay */
.surfix-mobile-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(2, 22, 46, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1035;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.surfix-mobile-backdrop.is-open {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Nav Drawer */
.surfix-mobile-drawer {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(2, 22, 46, 0.16);
    border-top: 2px solid var(--surfix-orange);
    padding: 16px 20px 28px;
    z-index: 1040;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.surfix-mobile-drawer.is-open {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.surfix-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.surfix-mobile-list > li {
    border-bottom: 1px solid #f1f5f9;
}

.surfix-mobile-link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.surfix-mobile-list a {
    display: block;
    padding: 12px 6px;
    font-family: var(--surfix-font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--surfix-navy);
    text-decoration: none;
    flex-grow: 1;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.surfix-mobile-list a:hover,
.surfix-mobile-list li.active > a,
.surfix-mobile-list li.active > .surfix-mobile-link-row > a {
    color: var(--surfix-orange);
    padding-left: 8px;
}

.surfix-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: var(--surfix-navy);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 4px;
}

.surfix-submenu-toggle svg {
    transition: transform 0.25s ease;
}

.surfix-mobile-has-submenu.is-expanded .surfix-submenu-toggle {
    background: #fff7ed;
    border-color: var(--surfix-orange);
    color: var(--surfix-orange);
}

.surfix-mobile-has-submenu.is-expanded .surfix-submenu-toggle svg {
    transform: rotate(180deg);
}

.surfix-mobile-sublist {
    display: none;
    list-style: none;
    margin: 0 0 10px 0;
    padding: 6px 12px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid var(--surfix-orange);
}

.surfix-mobile-has-submenu.is-expanded .surfix-mobile-sublist {
    display: block;
}

.surfix-mobile-sublist li {
    border-bottom: 1px dashed #e2e8f0;
}

.surfix-mobile-sublist li:last-child {
    border-bottom: none;
}

.surfix-mobile-sublist a {
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 4px;
    color: #475569;
}

.surfix-mobile-sublist a:hover {
    color: var(--surfix-orange);
    padding-left: 8px;
}

.surfix-mobile-actions {
    margin-top: 18px;
}

.surfix-mobile-actions .surfix-quote-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 15px;
}

/* Mobile Drawer Contact Information */
.surfix-mobile-contact-card {
    margin-top: 22px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.surfix-mobile-contact-title {
    font-family: var(--surfix-font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #64748b;
    margin-bottom: 12px;
}

.surfix-mobile-contact-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.surfix-mobile-citem {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--surfix-navy);
    text-decoration: none;
    font-weight: 500;
}

.surfix-mobile-citem a {
    color: var(--surfix-navy);
    text-decoration: none;
}

.surfix-mobile-citem:hover {
    color: var(--surfix-orange);
    text-decoration: none;
}

.surfix-m-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #fff7ed;
    border-radius: 6px;
    flex-shrink: 0;
}

.surfix-mobile-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.surfix-mobile-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    color: var(--surfix-navy);
    text-decoration: none;
    transition: all 0.2s ease;
}

.surfix-mobile-socials a:hover {
    background: var(--surfix-orange);
    border-color: var(--surfix-orange);
    color: #ffffff;
    transform: translateY(-2px);
}

body.surfix-menu-open {
    overflow: hidden !important;
}

body.surfix-menu-open .side-social-icons,
body.surfix-menu-open .ContactUsButton,
body.surfix-menu-open .qlwapp-toggle {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* --------------------------------------------------------------------------
   3. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1400px) {
    .surfix-container {
        padding-left: 32px;
        padding-right: 32px;
    }
    .surfix-nav-wrap {
        margin-right: 24px;
    }
    .surfix-nav-list {
        gap: 22px;
    }
}

@media (max-width: 1200px) {
    .surfix-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .surfix-nav-wrap {
        margin-right: 18px;
    }
    .surfix-nav-list {
        gap: 16px;
    }
    .surfix-nav-link {
        font-size: 14px;
    }
    .surfix-divider {
        margin: 0 10px;
    }
}

@media (max-width: 991px) {
    .surfix-nav-wrap,
    .surfix-nav-actions {
        display: none;
    }
    .surfix-mobile-toggle {
        display: flex;
    }
    .surfix-navbar-inner {
        height: 68px;
    }
    .surfix-brand img,
    .surfix-logo-img {
        max-height: 48px;
    }
    .surfix-contact-address {
        display: none;
    }
    .surfix-divider-first {
        display: none;
    }
}

@media (max-width: 767px) {
    .surfix-container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .surfix-topbar {
        padding: 7px 0;
    }
    .surfix-topbar-inner {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        flex-wrap: nowrap;
    }
    .surfix-contact-info {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0;
    }
    .surfix-contact-address,
    .surfix-contact-email,
    .surfix-divider {
        display: none !important;
    }
    .surfix-contact-phone {
        font-size: 12px;
        font-weight: 500;
        white-space: nowrap;
    }
    .surfix-contact-phone .surfix-icon svg {
        width: 12px;
        height: 12px;
    }
    .surfix-social-links {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 0;
        padding: 0;
    }
    .surfix-social-links svg {
        width: 13px;
        height: 13px;
    }
    .surfix-navbar-inner {
        height: 64px;
    }
    .surfix-brand img,
    .surfix-logo-img {
        max-height: 44px;
    }
}

@media (max-width: 480px) {
    .surfix-container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .surfix-topbar {
        padding: 6px 0;
    }
    .surfix-contact-phone {
        font-size: 11.5px;
    }
    .surfix-contact-phone .surfix-icon {
        margin-right: 5px;
    }
    .surfix-social-links {
        gap: 9px;
    }
    .surfix-social-links svg {
        width: 12px;
        height: 12px;
    }
    .surfix-navbar-inner {
        height: 64px;
    }
    .surfix-brand img,
    .surfix-logo-img {
        max-height: 40px;
    }
    .surfix-mobile-toggle {
        width: 38px;
        height: 38px;
    }
    .surfix-mobile-toggle span {
        width: 18px;
    }
    .surfix-mobile-toggle.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .surfix-mobile-toggle.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 340px) {
    .surfix-social-links {
        gap: 7px;
    }
    .surfix-contact-phone {
        font-size: 10.5px;
    }
}

/* ==========================================================================
   Surfix Hero Banner Section
   ========================================================================== */
.surfix-hero-section {
    position: relative;
    overflow: hidden;
    background-color: #02162e;
    color: #ffffff;
    min-height: 520px;
    height: clamp(520px, calc(100vh - 118px), 760px);
    max-height: 760px;
    padding: 24px 0 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.surfix-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/hero_framing_bg_hd.jpg?v=2');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 1;
}

.surfix-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #02162e 0%, #02162e 28%, rgba(2, 22, 46, 0.8) 48%, rgba(2, 22, 46, 0.25) 75%, rgba(2, 22, 46, 0.08) 100%);
    z-index: 2;
}

.surfix-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    padding-left: 48px;
    padding-right: 48px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.surfix-hero-content {
    max-width: 620px;
    margin-bottom: auto;
    padding-top: 15px;
}

.surfix-hero-eyebrow {
    display: inline-block;
    font-family: var(--surfix-font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--surfix-orange);
    margin-bottom: 12px;
}

.surfix-hero-title {
    font-family: var(--surfix-font-heading);
    font-size: clamp(34px, 3.6vw, 48px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin: 0 0 14px 0;
    text-transform: uppercase;
}

.surfix-hero-title .text-white {
    color: #ffffff;
    display: block;
}

.surfix-hero-title .text-orange {
    color: var(--surfix-orange);
    display: block;
}

.surfix-hero-desc {
    font-family: var(--surfix-font-body);
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 400;
    color: #cbd5e1;
    line-height: 1.55;
    margin: 0 0 24px 0;
    max-width: 500px;
}

.surfix-hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.surfix-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--surfix-font-heading);
    font-size: 14px;
    font-weight: 600;
    padding: 11px 25px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 1.5px solid transparent;
}

.surfix-btn-primary {
    background-color: var(--surfix-orange);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(254, 131, 2, 0.35);
}

.surfix-btn-primary:hover {
    background-color: var(--surfix-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 131, 2, 0.45);
}

.surfix-btn-primary .surfix-btn-arrow {
    font-size: 15px;
    transition: transform 0.2s ease;
}

.surfix-btn-primary:hover .surfix-btn-arrow {
    transform: translateX(4px);
}

.surfix-btn-outline {
    background-color: rgba(2, 22, 46, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
}

.surfix-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #ffffff !important;
    transform: translateY(-2px);
}

/* Glassmorphic Stats Bar */
.surfix-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(2, 22, 46, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 16px 28px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
    position: relative;
    z-index: 4;
    margin-top: auto;
    margin-bottom: 20px;
}

.surfix-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

.surfix-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.12);
}

.surfix-stat-icon {
    color: #ffffff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.surfix-stat-icon svg {
    display: block;
    width: 28px;
    height: 28px;
}

.surfix-stat-info {
    display: flex;
    flex-direction: column;
}

.surfix-stat-number {
    font-family: var(--surfix-font-heading);
    font-size: clamp(20px, 1.8vw, 24px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.surfix-stat-label {
    font-family: var(--surfix-font-body);
    font-size: 12px;
    font-weight: 400;
    color: #94a3b8;
    margin-top: 2px;
    white-space: nowrap;
}

/* Hero Bottom Cutout Transition */
.surfix-hero-curve {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 5;
    pointer-events: none;
}

.surfix-hero-curve svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ==========================================================================
   Surfix About Us Section
   ========================================================================== */
.surfix-about-section {
    background-color: #ffffff;
    padding: 50px 0 52px;
    position: relative;
    z-index: 4;
    margin-top: -2px;
    overflow: hidden;
}

.surfix-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
}

/* Left Image Composition */
.surfix-about-media-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.surfix-about-composition {
    position: relative;
    width: 100%;
    max-width: 490px;
    margin: 0 auto;
    padding: 15px 20px 30px 10px;
}

/* Main Building Card with Cut/Beveled Top-Right Corner */
.surfix-main-img-card {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 20px 60px 20px 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(2, 22, 46, 0.14);
    background-color: #f1f5f9;
}

.surfix-main-building-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.surfix-main-img-card:hover .surfix-main-building-img {
    transform: scale(1.03);
}

/* Overlapping Worker Image (Bottom Right) */
.surfix-worker-overlap-card {
    position: absolute;
    right: 0;
    bottom: 8px;
    width: 195px;
    height: 195px;
    border-radius: 18px;
    overflow: hidden;
    border: 4.5px solid #ffffff;
    box-shadow: 0 16px 36px rgba(2, 22, 46, 0.22);
    z-index: 3;
    background-color: #e2e8f0;
}

.surfix-worker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.surfix-worker-overlap-card:hover .surfix-worker-img {
    transform: scale(1.05);
}

/* Floating Trust Badge (Bottom Left) */
.surfix-trust-badge {
    position: absolute;
    left: -10px;
    bottom: 0;
    background: #ffffff;
    border-radius: 50px;
    padding: 7px 22px 7px 7px;
    box-shadow: 0 12px 32px rgba(2, 22, 46, 0.16);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    z-index: 4;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.surfix-trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(2, 22, 46, 0.2);
}

.surfix-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--surfix-orange);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(254, 131, 2, 0.35);
}

.surfix-trust-text {
    display: flex;
    flex-direction: column;
}

.surfix-trust-sub {
    font-family: var(--surfix-font-body);
    font-size: 11.5px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.2;
}

.surfix-trust-main {
    font-family: var(--surfix-font-heading);
    font-size: 13.5px;
    font-weight: 800;
    color: var(--surfix-navy);
    line-height: 1.25;
}

/* Decorative Orange Accent Lines */
.surfix-about-decor-line-tr {
    position: absolute;
    top: 2px;
    right: 8px;
    width: 90px;
    height: 90px;
    border-top: 3.5px solid var(--surfix-orange);
    border-right: 3.5px solid var(--surfix-orange);
    border-radius: 0 40px 0 0;
    z-index: 1;
    pointer-events: none;
}

.surfix-about-decor-line-bl {
    position: absolute;
    bottom: -8px;
    right: 50px;
    width: 140px;
    height: 3.5px;
    background: linear-gradient(90deg, var(--surfix-orange), transparent);
    z-index: 1;
    pointer-events: none;
}

/* Right Content */
.surfix-about-content-col {
    padding-left: 10px;
}

.surfix-about-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--surfix-font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--surfix-orange);
    letter-spacing: 1.2px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.surfix-tag-line {
    width: 36px;
    height: 2.5px;
    background-color: var(--surfix-orange);
    border-radius: 2px;
    display: inline-block;
}

.surfix-about-heading {
    font-family: var(--surfix-font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--surfix-navy);
    line-height: 1.22;
    letter-spacing: -0.3px;
    margin: 0 0 22px 0;
}

.surfix-about-desc {
    font-family: var(--surfix-font-body);
    font-size: 15.5px;
    font-weight: 400;
    color: #475569;
    line-height: 1.68;
    margin: 0 0 28px 0;
}

.surfix-about-desc p {
    font-family: var(--surfix-font-body);
    font-size: 15.5px;
    font-weight: 400;
    color: #475569;
    line-height: 1.68;
    margin: 0 0 12px 0;
}

.surfix-about-desc p:last-child {
    margin-bottom: 0;
}

.surfix-about-lead {
    font-family: var(--surfix-font-body);
    font-size: 15.5px;
    font-weight: 400;
    color: #475569;
    line-height: 1.68;
    margin: 0 0 14px 0;
}

.surfix-about-sublead {
    font-family: var(--surfix-font-body);
    font-size: 15px;
    font-weight: 400;
    color: #475569;
    line-height: 1.68;
    margin: 0 0 36px 0;
}

.surfix-about-btn-wrap {
    margin-top: 32px;
}

/* 4 Feature Points Grid */
.surfix-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.surfix-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.surfix-feature-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--surfix-orange);
    transition: all 0.25s ease;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(254, 131, 2, 0.12);
}

.surfix-feature-icon {
    width: 52px;
    height: 52px;
    display: block;
}

.surfix-feature-item:hover .surfix-feature-icon-wrap {
    background-color: #fff7ed;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(254, 131, 2, 0.22);
}

.surfix-feature-title {
    font-family: var(--surfix-font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--surfix-navy);
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

/* Side Social Floating Pill */
.side-social-icons {
    position: fixed;
    right: 18px;
    top: 45%;
    transform: translateY(-50%);
    z-index: 1040;
}

.side-social-icons ul {
    list-style-type: none;
    margin: 0;
    padding: 8px 6px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.side-social-icons ul li {
    background: transparent !important;
    margin: 0 !important;
    padding: 4px !important;
    border: none !important;
    line-height: 1 !important;
    border-radius: 6px !important;
    text-align: center;
}

.side-social-icons ul li a {
    font-size: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease;
}

.side-social-icons ul li a:hover {
    transform: scale(1.15);
}

/* Responsive Breakpoints for Hero & About Us */
@media (max-width: 1200px) {
    .surfix-hero-title {
        font-size: 46px;
    }
    .surfix-stats-bar {
        padding: 18px 24px;
        gap: 16px;
    }
    .surfix-stat-number {
        font-size: 22px;
    }
    .surfix-stat-label {
        font-size: 11.5px;
    }
    .surfix-about-heading {
        font-size: 32px;
    }
    .surfix-about-grid {
        gap: 40px;
    }
}

@media (max-width: 991px), (max-height: 640px) {
    .surfix-hero-section {
        min-height: auto;
        height: auto;
        padding: 50px 0 60px;
    }
    .surfix-hero-container {
        height: auto;
    }
    .surfix-hero-bg {
        width: 100%;
        opacity: 0.88;
        background-position: center center;
    }
    .surfix-hero-overlay {
        background: linear-gradient(180deg, rgba(2, 22, 46, 0.74) 0%, rgba(2, 22, 46, 0.50) 45%, rgba(2, 22, 46, 0.85) 100%);
    }
    .surfix-hero-content {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .surfix-hero-title {
        font-size: 38px;
    }
    .surfix-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 20px;
        margin-bottom: 0;
    }
    .surfix-stat-item:nth-child(2)::after {
        display: none;
    }
    .surfix-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .surfix-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .surfix-hero-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .surfix-hero-title {
        font-size: 32px;
    }
    .surfix-hero-desc {
        font-size: 14.5px;
    }
    .surfix-hero-buttons {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 10px;
        flex-wrap: nowrap;
        width: 100%;
    }
    .surfix-btn {
        width: auto;
        flex: 1 1 0;
        padding: 10.5px 12px;
        font-size: 13.5px;
        white-space: nowrap;
        text-align: center;
        justify-content: center;
    }
    .surfix-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 16px 14px;
        gap: 16px 12px;
    }
    .surfix-stat-item::after {
        display: none !important;
    }
    .surfix-stat-item {
        gap: 10px;
    }
    .surfix-stat-icon svg {
        width: 24px;
        height: 24px;
    }
    .surfix-stat-number {
        font-size: 20px;
    }
    .surfix-stat-label {
        font-size: 11.5px;
        white-space: normal;
        line-height: 1.25;
    }
    .surfix-about-section {
        padding: 35px 0 40px;
    }
    .surfix-main-img-card {
        height: clamp(300px, 78vw, 350px);
        border-radius: 16px 45px 16px 16px;
    }
    .surfix-worker-overlap-card {
        width: 145px;
        height: 145px;
        right: 0;
        bottom: 8px;
    }
    .surfix-trust-badge {
        left: 0;
        padding: 5px 14px 5px 5px;
    }
    .surfix-trust-icon {
        width: 36px;
        height: 36px;
    }
    .surfix-trust-sub {
        font-size: 10px;
    }
    .surfix-trust-main {
        font-size: 11.5px;
    }
    .surfix-about-heading {
        font-size: 26px;
    }
    .ContactUsButton {
        display: none !important;
    }
    .side-social-icons {
        right: 4px !important;
        transform: translateY(-50%) scale(0.8) !important;
        transform-origin: right center !important;
    }
    .surfix-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 14px;
        margin-top: 22px;
        margin-bottom: 8px;
        padding-right: 22px;
    }
    .surfix-feature-item {
        align-items: center;
        text-align: center;
    }
    .surfix-feature-icon-wrap {
        width: 50px;
        height: 50px;
    }
    .surfix-feature-icon {
        width: 50px;
        height: 50px;
    }
    .surfix-feature-title {
        font-size: 13px;
        line-height: 1.28;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .surfix-hero-container {
        padding-left: 14px;
        padding-right: 14px;
    }
    .surfix-hero-buttons {
        gap: 8px;
    }
    .surfix-btn {
        padding: 9.5px 8px;
        font-size: 12.5px;
    }
    .surfix-btn-arrow {
        font-size: 13px;
    }
    .surfix-stats-bar {
        padding: 14px 12px;
        gap: 14px 10px;
    }
    .surfix-stat-item {
        gap: 8px;
    }
    .surfix-stat-number {
        font-size: 19px;
    }
    .surfix-stat-label {
        font-size: 11px;
    }
}

@media (max-width: 350px) {
    .surfix-hero-buttons {
        gap: 6px;
    }
    .surfix-btn {
        padding: 8.5px 5px;
        font-size: 11.5px;
    }
    .surfix-stats-bar {
        padding: 12px 8px;
        gap: 12px 6px;
    }
    .surfix-stat-item {
        gap: 6px;
    }
    .surfix-stat-icon svg {
        width: 20px;
        height: 20px;
    }
    .surfix-stat-number {
        font-size: 17px;
    }
    .surfix-stat-label {
        font-size: 10px;
    }
    .surfix-features-grid {
        gap: 18px 10px;
        padding-right: 18px;
    }
    .surfix-feature-icon-wrap {
        width: 46px;
        height: 46px;
    }
    .surfix-feature-icon {
        width: 46px;
        height: 46px;
    }
    .surfix-feature-title {
        font-size: 12px;
    }
}

/* ==========================================================================
   Surfix Compact Testimonials Section
   ========================================================================== */
.surfix-testimonials-section {
    padding: 50px 0 52px !important;
    background-color: #f8fafc;
    position: relative;
    border-top: none;
    margin-top: -2px;
    z-index: 4;
}

.surfix-testimonials-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 22px;
}

.surfix-testimonials-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--surfix-font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--surfix-orange);
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.surfix-testimonials-heading {
    font-family: var(--surfix-font-heading);
    font-size: 34px;
    font-weight: 800;
    color: var(--surfix-navy);
    line-height: 1.22;
    letter-spacing: -0.3px;
    margin: 0;
}

.surfix-testimonials-section .swiper-style-2 {
    margin-bottom: 20px;
}

.surfix-testimonials-section .comment--custom {
    padding: 22px 26px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(2, 22, 46, 0.06);
    border: 1px solid #e2e8f0;
    background: #ffffff;
}

.surfix-testimonials-cta {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

@media (max-width: 991px) {
    .surfix-testimonials-section {
        padding: 40px 0 45px !important;
    }
    .surfix-testimonials-heading {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .surfix-testimonials-section {
        padding: 35px 0 40px !important;
    }
    .surfix-testimonials-heading {
        font-size: 24px;
    }
}

/* ==========================================================================
   Surfix Latest Updates (Blog) Section
   ========================================================================== */
.surfix-updates-section {
    background-color: #f8fafc;
    padding: 35px 0 50px;
    margin-top: -2px;
    position: relative;
    z-index: 4;
}

.surfix-updates-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 26px;
}

.surfix-updates-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--surfix-font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--surfix-orange);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.surfix-updates-heading {
    font-family: var(--surfix-font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--surfix-navy);
    line-height: 1.22;
    letter-spacing: -0.3px;
    margin: 0 0 14px 0;
}

.surfix-updates-subheading {
    font-family: var(--surfix-font-body);
    font-size: 15.5px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* 4 Column Cards Grid */
.surfix-updates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

/* Individual Card */
.surfix-update-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 20px rgba(2, 22, 46, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.surfix-update-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(2, 22, 46, 0.12);
    border-color: rgba(254, 131, 2, 0.4);
}

/* Media / Image */
.surfix-update-media-link {
    display: block;
    text-decoration: none;
    overflow: hidden;
}

.surfix-update-media {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: #0b223d;
}

.surfix-update-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.45s ease;
}

.surfix-update-card:hover .surfix-update-img {
    transform: scale(1.08);
}

/* Date Badge on Image */
.surfix-update-date-badge {
    position: absolute;
    bottom: 12px;
    left: 14px;
    background: rgba(2, 22, 46, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 5px 12px;
    font-family: var(--surfix-font-heading);
    font-size: 11.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.surfix-update-date-badge svg {
    color: var(--surfix-orange);
}

/* Card Body */
.surfix-update-body {
    padding: 20px 20px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.surfix-update-title {
    font-family: var(--surfix-font-heading);
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.surfix-update-title a {
    color: var(--surfix-navy);
    text-decoration: none !important;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.surfix-update-card:hover .surfix-update-title a {
    color: var(--surfix-orange);
}

.surfix-update-excerpt {
    font-family: var(--surfix-font-body);
    font-size: 13.5px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.55;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer Link */
.surfix-update-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.surfix-update-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--surfix-font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--surfix-orange);
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.surfix-update-arrow {
    font-size: 15px;
    transition: transform 0.2s ease;
}

.surfix-update-card:hover .surfix-update-readmore .surfix-update-arrow {
    transform: translateX(4px);
}

/* Bottom CTA Center */
.surfix-updates-cta {
    display: flex;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .surfix-updates-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
    .surfix-update-media {
        height: auto;
        aspect-ratio: 4 / 5;
    }
    .surfix-update-title {
        font-size: 14.5px;
    }
}

@media (max-width: 991px) {
    .surfix-updates-section {
        padding: 45px 0 50px;
    }
    .surfix-updates-heading {
        font-size: 30px;
    }
    .surfix-updates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .surfix-updates-section {
        padding: 35px 0 40px;
    }
    .surfix-updates-heading {
        font-size: 24px;
    }
    .surfix-updates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 10px;
    }
    .surfix-update-media {
        height: auto;
        max-height: none;
    }
    .surfix-update-img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        display: block;
    }
    .surfix-update-date-badge {
        bottom: 8px;
        left: 8px;
        padding: 3px 8px;
        font-size: 10.5px;
    }
    .surfix-update-date-badge svg {
        width: 11px;
        height: 11px;
    }
    .surfix-update-body {
        padding: 12px 10px 14px;
    }
    .surfix-update-title {
        font-size: 12.5px;
        line-height: 1.35;
        margin-bottom: 6px;
    }
    .surfix-update-excerpt {
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    .surfix-update-footer {
        padding-top: 10px;
    }
    .surfix-update-readmore {
        font-size: 11.5px;
    }
}

@media (max-width: 360px) {
    .surfix-updates-grid {
        gap: 12px 8px;
    }
    .surfix-update-body {
        padding: 10px 8px 12px;
    }
    .surfix-update-title {
        font-size: 11.5px;
    }
    .surfix-update-excerpt {
        display: none;
    }
}

/* ==========================================================================
   Surfix Modern Project Gallery Section with Upper and Lower Cutouts
   ========================================================================== */
.surfix-gallery-section {
    background: radial-gradient(ellipse at 50% 0%, #062347 0%, #02162e 65%, #010e1e 100%);
    padding: 68px 0 72px;
    margin-top: -2px;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

/* ── Upper Cutout (Top) ── */
.surfix-gallery-cutout-top {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 62px;
    z-index: 5;
    pointer-events: none;
}

.surfix-gallery-cutout-top svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ── Lower Cutout (Bottom) ── */
.surfix-gallery-cutout-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 57px;
    z-index: 5;
    pointer-events: none;
}

.surfix-gallery-cutout-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
}

.surfix-gallery-section .surfix-container {
    position: relative;
    z-index: 3;
}

.surfix-gallery-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 24px;
}

.surfix-gallery-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--surfix-font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--surfix-orange);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.surfix-gallery-heading {
    font-family: var(--surfix-font-heading);
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.22;
    letter-spacing: -0.3px;
    margin: 0 0 14px 0;
}

.surfix-gallery-subheading {
    font-family: var(--surfix-font-body);
    font-size: 15.5px;
    font-weight: 400;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* 4-Column Grid */
.surfix-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

/* Individual Item Card */
.surfix-gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #091f3a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.surfix-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
    border-color: rgba(254, 131, 2, 0.6);
}

.surfix-gallery-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none !important;
    cursor: pointer;
}

.surfix-gallery-media {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.surfix-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Overlay & Floating Zoom */
.surfix-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 22, 46, 0.15) 0%, rgba(2, 22, 46, 0.5) 45%, rgba(2, 22, 46, 0.92) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.surfix-gallery-item:hover .surfix-gallery-overlay {
    opacity: 1;
}

.surfix-gallery-zoom-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--surfix-orange);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(254, 131, 2, 0.55);
    transform: scale(0.65);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease;
}

.surfix-gallery-item:hover .surfix-gallery-zoom-btn {
    transform: scale(1);
}

.surfix-gallery-meta {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.surfix-gallery-badge {
    background: rgba(2, 22, 46, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: var(--surfix-font-heading);
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.surfix-gallery-badge svg {
    color: var(--surfix-orange);
}

.surfix-gallery-click-hint {
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--surfix-font-body);
    font-size: 11.5px;
    font-weight: 500;
}

/* Bottom CTA */
.surfix-gallery-cta {
    display: flex;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .surfix-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
    .surfix-gallery-media {
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 991px) {
    .surfix-gallery-section {
        padding: 55px 0 60px;
    }
    .surfix-gallery-cutout-top {
        height: 50px;
    }
    .surfix-gallery-cutout-bottom {
        height: 47px;
    }
    .surfix-gallery-heading {
        font-size: 30px;
    }
    .surfix-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .surfix-gallery-media {
        height: auto;
        aspect-ratio: 1 / 1;
        width: 100%;
    }
    .surfix-gallery-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

@media (max-width: 767px) {
    .surfix-gallery-section {
        padding: 46px 0 52px;
    }
    .surfix-gallery-cutout-top {
        height: 44px;
    }
    .surfix-gallery-cutout-bottom {
        height: 42px;
    }
    .surfix-gallery-heading {
        font-size: 26px;
    }
    .surfix-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 10px;
    }
    .surfix-gallery-zoom-btn {
        width: 44px;
        height: 44px;
    }
    .surfix-gallery-zoom-btn svg {
        width: 18px;
        height: 18px;
    }
    .surfix-gallery-meta {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
    .surfix-gallery-badge {
        font-size: 10.5px;
        padding: 3px 7px;
    }
    .surfix-gallery-click-hint {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .surfix-gallery-section {
        padding: 42px 0 48px;
    }
    .surfix-gallery-cutout-top {
        height: 40px;
    }
    .surfix-gallery-cutout-bottom {
        height: 38px;
    }
    .surfix-gallery-heading {
        font-size: 24px;
    }
    .surfix-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 10px;
    }
    .surfix-gallery-media {
        height: auto;
        aspect-ratio: 1 / 1;
        width: 100%;
    }
    .surfix-gallery-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .surfix-gallery-zoom-btn {
        width: 38px;
        height: 38px;
    }
    .surfix-gallery-zoom-btn svg {
        width: 16px;
        height: 16px;
    }
    .surfix-gallery-meta {
        bottom: 8px;
        left: 8px;
        right: 8px;
    }
    .surfix-gallery-badge {
        font-size: 9.5px;
        padding: 3px 6px;
        gap: 4px;
    }
    .surfix-gallery-badge svg {
        width: 10px;
        height: 10px;
    }
    .surfix-gallery-click-hint {
        display: none;
    }
}

@media (max-width: 360px) {
    .surfix-gallery-grid {
        gap: 10px 8px;
    }
    .surfix-gallery-badge {
        font-size: 8.5px;
        padding: 2px 5px;
    }
}

/* Footer Seamless Overlap with Lower Cutouts */
.page-footer {
    margin-top: -2px;
    position: relative;
    z-index: 4;
}



