@font-face {
    font-family: 'Mrs Eaves';
    src: url('../mrs-eaves/mrs-eaves-bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Mrs Eaves';
    src: url('../mrs-eaves/mrs-eaves-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Golos Text';
    src: url('../Golos_Text/GolosText-VariableFont_wght.ttf') format('truetype');
}

:root {
    --bg-color: #000000;
    --primary-color-btn: #742A2C;
    --primary-hover: #8C3335;
    --text-color: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dark: #111111;
    --font-heading: 'Mrs Eaves', sans-serif;
    --font-body: 'Golos Text', sans-serif;
    --glass-bg: rgba(18, 18, 18, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --header-height: 110px;
}

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

body {
    /* background-color: #0d0d0d; */
    font-family: var(--font-body);
    color: var(--text-color);
    overflow-x: hidden;
    margin: 0;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 3.5px;
}


::-webkit-scrollbar-track {
    background: #ffffff;
}


::-webkit-scrollbar-thumb {
    background: var(--primary-color-btn);
    border-radius: 10px;
}


::-webkit-scrollbar-thumb:hover {
    background: #8C3335;
}



.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.main-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.98) 0%,
            rgba(0, 0, 0, 0.90) 25%,
            rgba(0, 0, 0, 0.70) 60%,
            rgba(0, 0, 0, 0) 100%);
    z-index: -1;
    pointer-events: none;
}

.main-header.scrolled-down {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}


.header-container {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.logo-img {
    height: 185px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: relative;
    top: 60px;
    /* adjust 8px–20px as needed */
}

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

/* Nav Links - Desktop */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-item {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    padding: 10px 0;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.nav-item:hover,    
.nav-item.active {
    color: var(--text-color);
}


/* Premium underline glow animation */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color-btn), transparent);
    box-shadow: 0 0 10px var(--primary-color-btn);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

/* Dropdown Menu styling */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    list-style: none;
    padding: 12px 0;
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s, background 0.3s;
}

.dropdown-menu li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s, background 0.3s;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-menu li a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 70%;
    background: var(--primary-color-btn);
    border-radius: 0 3px 3px 0;
}
/* Header Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 10px;
}

.phone-icon-container {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

.phone-icon {
    font-size: 18px;
    color: var(--text-color);
    transform: rotate(-15deg);
    transition: transform 0.3s ease;
}

.contact-phone:hover .phone-icon-container {
    background: rgba(116, 42, 44, 0.15);
    border-color: var(--primary-color-btn);
}

.contact-phone:hover .phone-icon {
    transform: rotate(0deg) scale(1.1);
}

.phone-text {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}

.phone-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.phone-number:hover {
    color: var(--primary-color-btn);
}

/* Submit Inquiry Pill Button */
.btn-order {
    background-color: var(--primary-color-btn);
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: 30px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(116, 42, 44, 0.3);
}

.btn-order:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(116, 42, 44, 0.5);
}

.btn-order:active {
    transform: translateY(0);
}

/* Circle Action Buttons */
.circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.circle-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Burger menu button (hidden on desktop) */
.burger-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.burger-menu-btn:hover {
    color: var(--primary-color-btn);
}

/*  FLOATING SLIDE-DOWN NAVBAR FOR DESKTOP (Triggered on scroll)*/
.floating-nav-bar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-150px);
    width: auto;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 8px 30px;
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    pointer-events: none;
}

.floating-nav-bar.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.floating-nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-nav-container .nav-links {
    gap: 40px;
}


.floating-nav-container .nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-size: 22px;
    padding: 8px 0;
}

/*  MOBILE MENU PANEL (FULL SCREEN SLIDE DOWN) */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 24px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    pointer-events: none;
    overflow-x: hidden;
}

.mobile-menu-panel.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Panel Header */
.panel-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
}

.panel-contact-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.panel-phone-icon-container {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(116, 42, 44, 0.1);
    border: 1px solid var(--primary-color-btn);
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-phone-icon {
    font-size: 20px;
    color: var(--primary-color-btn);
    transform: rotate(-15deg);
}

/* Shrink Animation Triggered when active */
.mobile-menu-panel.active .panel-phone-icon {
    animation: shrink-pulse 2.2s infinite ease-in-out;
}

@keyframes shrink-pulse {
    0% {
        transform: rotate(-15deg) scale(1);
    }

    50% {
        transform: rotate(-15deg) scale(0.8);
    }

    100% {
        transform: rotate(-15deg) scale(1);
    }
}

.panel-phone-text {
    display: flex;
    flex-direction: column;
}

.panel-phone-label {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.panel-phone-number {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
}

.panel-actions-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.panel-circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
}

.panel-close-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
}

.panel-close-btn:hover {
    color: var(--primary-color-btn);
}

/* Panel Navigation Body */
.panel-nav {
    margin: 40px 0;
    flex-grow: 1;
    overflow-y: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.panel-nav::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.panel-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.panel-nav-item {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-color);
    text-decoration: none;
    display: block;
    transition: color 0.3s, transform 0.3s;
}

.panel-nav-links li>a:hover {
    color: var(--primary-color-btn);
    transform: translateX(10px);
}

/* Mobile Dropdown styles inside panel */
.panel-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.panel-dropdown-toggle:hover .panel-nav-item {
    color: var(--primary-color-btn);
}

.panel-arrow {
    font-size: 18px;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.panel-dropdown.active .panel-arrow {
    transform: rotate(180deg);
    color: var(--primary-color-btn);
}

.panel-dropdown-menu {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
    display: none;
    flex-direction: column;
    gap: 14px;
    border-left: 2px solid var(--primary-color-btn);
    width: 100%;
    box-sizing: border-box;
}

.panel-dropdown.active .panel-dropdown-menu {
    display: flex;
}

.panel-dropdown-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.panel-dropdown-menu a:hover {
    color: var(--text-color);
}

/* Panel Bottom Action */
.panel-bottom-bar {
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.panel-btn-order {
    width: 100%;
    background-color: var(--primary-color-btn);
    color: var(--text-color);
    text-decoration: none;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 16px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(116, 42, 44, 0.4);
    transition: background-color 0.3s;
}

.panel-btn-order:hover {
    background-color: var(--primary-hover);
}

.main-content {
    margin-top: 0;
}

.hero-section {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.6) 55%,
            rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1630px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content-left {
    flex: 1.2;
    max-width: 780px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--text-color);
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 999px;
    margin-bottom: 24px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.03);
    margin-top: 150px
}

.tag-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color-btn);
    flex-shrink: 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 84px;
    font-weight: 600;
    line-height: .98;
    color: var(--text-color);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    /* color: var(--text-muted); */
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400 !important;
    letter-spacing: 3px;
    border-radius: 40px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    font-family: var(--font-body);

}

.btn-hero-primary {
    background-color: var(--primary-color-btn);
    color: var(--text-color);
    padding: 12px 8px 12px 24px;
    box-shadow: 0 4px 15px rgba(116, 42, 44, 0.3);
}

.btn-hero-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(116, 42, 44, 0.5);
}

.btn-hero-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-color);
    padding: 12px 8px 12px 24px;
    backdrop-filter: blur(5px);
}

.btn-hero-secondary:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.arrow-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .arrow-circle,
.btn-hero-secondary:hover .arrow-circle {
    transform: translate(2px, -2px) scale(1.05);
}

.hero-content-right {
    flex: 0.8;
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: flex-end;
    margin-top: 110px;
}

.hero-box-stat {
    background: rgba(30, 30, 30, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 35px 28px;
    width: 255px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 270px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    font-family: var(--font-body);
}

.stat-number {
    font-size: 76px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1;
}

.stat-plus {
    font-size: 40px;
    color: var(--text-color);
    margin-left: 2px;
}

.stat-subtext {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.2px;
    line-height: 1.5;
    margin-top: 15px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.stat-footer {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.hero-box-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    width: 255px;
    min-height: 270px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
}

.hero-mini-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* APPS SIDE PANEL */

/* Wrapper holds both backdrop and drawer */
.apps-side-panel {
    position: fixed;
    inset: 0;
    z-index: 3000;
    pointer-events: none;
}

.apps-side-panel.open {
    pointer-events: auto;
}

/* Semi-transparent backdrop — clicking closes the panel */
.apps-panel-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.apps-side-panel.open .apps-panel-backdrop {
    opacity: 1;
}

/* Slide-in drawer from right */
.apps-panel-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 90vw;
    height: 100%;
    background: #0e0e0e;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 36px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.apps-side-panel.open .apps-panel-drawer {
    transform: translateX(0);
}

.side-panel-contact a {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 10px;
}

/* Close button — top-right of drawer */
.apps-panel-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.apps-panel-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.08);
}

/* Search bar */
.apps-panel-search-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 14px 18px;
    margin-top: 20px;
    margin-bottom: 32px;
    transition: border-color 0.3s;
}

.apps-panel-search-wrap:focus-within {
    border-color: var(--primary-color-btn);
}

.apps-panel-search-icon {
    color: rgba(255, 255, 255, 0.4);
    font-size: 15px;
    flex-shrink: 0;
}

.apps-panel-search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
}

.apps-panel-search-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

/* Divider */
.apps-panel-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 28px 0;
}

/* Address block */
.apps-panel-address {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.apps-panel-address-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(116, 42, 44, 0.15);
    border: 1px solid rgba(116, 42, 44, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color-btn);
    font-size: 18px;
    flex-shrink: 0;
}

.apps-panel-address-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.apps-panel-address-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.apps-panel-address-line {
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
    font-weight: 500;
}

.apps-panel-map-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color-btn);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.apps-panel-map-link:hover {
    color: #fff;
}

/* Socials section */
.apps-panel-socials-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.apps-panel-socials-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.apps-panel-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.apps-social-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.apps-social-btn:hover {
    background: var(--primary-color-btn);
    border-color: var(--primary-color-btn);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(116, 42, 44, 0.4);
}


/*  WHO WE ARE SECTION*/
.who-we-are-section {
    position: relative;
    background-color: #f0eeeb;
    padding: 80px 0 0 0;
    padding-bottom: 220px;
    overflow: visible;
}

.wwa-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/who-we-bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: .9;
    pointer-events: none;
    z-index: 0;
    max-height: 97vh;
}

/* Main two-column wrapper */
.wwa-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ---- Left: text content ---- */
.wwa-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 60px;
}

.wwa-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 22px;
    flex-shrink: 0;
    border: 1px solid #0000001a;
    padding: 8px;
    border-radius: 60px;
}

.wwa-text {
    max-width: 720px;
    margin-left: auto;
}

.wwa-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    color: #191919;
    line-height: 1.05;
    margin-bottom: 24px;
}

.wwa-description {
    font-size: 18px;
    line-height: 1.7;
    color: #191919;
    max-width: 640px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color-btn);
    flex-shrink: 0;
}

/* ---- Right: image cards row (half outside section) ---- */
.wwa-images-wrapper {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    /* Cards start inside section and overflow below */
    margin-top: 0;
}

.wwa-img-card {
    position: relative;
    flex: 1;
    overflow: hidden;
    min-height: 480px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    cursor: pointer;
}
.wwa-img-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(116, 42, 44, 0.45); /* #742A2C light */
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    pointer-events: none;
}
.wwa-img-card:hover::before {
    transform: translateY(0);
}
.wwa-img-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
}
.wwa-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 28px 24px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.82) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2; /* Above hover layer */
}
.wwa-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.wwa-img-card:hover .wwa-img {
    transform: scale(1.04);
}

/* Dark gradient overlay at bottom of each card */
.wwa-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 28px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 50%, rgba(0, 0, 0, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0;
}

.wwa-img-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.wwa-card-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.wwa-card-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    max-width: 360px;
}

.wwa-card-btn {
    display: inline-block;
    background-color: var(--primary-color-btn);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    align-self: flex-start;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(116, 42, 44, 0.35);
}

.wwa-card-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.wwa-card-tag {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    text-align: right;
    display: block;
}

/* Next section needs to pull up to fill the visual gap left by half-outside cards */
.who-we-are-section+* {
    margin-top: -200px;
}


/* DEL LOCATION SECTION */
.del-location-section {
    position: relative;
    padding: 120px 0 80px;
    overflow: visible;
    color: var(--text-color);
    z-index: 5;
    margin-top: 1px;
}

.del-location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 120px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.77),
            rgba(0, 0, 0, 0.78)),
        url('../assets/location-bg.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.location-container {
    width: 100%;
    max-width: 1630px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.location-header-left {
    flex: 1.2;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.192);
    padding: 10px 10px;
    border-radius: 999px;
    margin-bottom: 24px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.03);
}

.location-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.5px;
}

.location-header-right {
    flex: 0.8;
    max-width: 580px;
    padding-bottom: 10px;
}

.location-header-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
}

/* Location Cards */
.location-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.location-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px 28px;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(116, 42, 44, 0.25);
}

.location-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color-btn);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.location-card:hover::after {
    transform: scaleX(1);
}

.location-card-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.location-card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.location-card-badge.headquarters,
.location-card-badge.new-location {
    background: #742a2c27;
    color: var(--bg-color);
}

.location-card-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.location-card-info {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-card-info li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 18px;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.location-card-info li i {
    color: var(--primary-color-btn);
    font-size: 18px;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.location-card-phone {
    margin-top: auto;
}

.location-card-phone a {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--primary-color-btn);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.location-card-phone a:hover {
    color: #8a1313d0;
}

/* Banner */
.location-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 40px;
    padding: 35px 50px;
    gap: 30px;
}

.location-banner-text {
    flex: 1;
}

.location-banner-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 8px;
}

.location-banner-desc {
    font-size: 18px;
    color: var(--text-muted);
}

.location-banner-action {
    flex-shrink: 0;
}

.btn-location-call {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-color);
    padding: 10px 10px 10px 30px;
    border-radius: 45px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-location-call:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.call-icon-wrap {
    width: 46px;
    height: 46px;
    background: var(--primary-color-btn);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

.btn-location-call:hover .call-icon-wrap {
    background: var(--primary-hover);
    transform: scale(1.05);
}

.call-icon-wrap i {
    color: #ffffff;
    font-size: 16px;
}

.location-video-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    transform: translateY(20%);
    /* border: 1px solid var(--glass-border); */
}

.location-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
}


.location-video-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.location-video-poster {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.location-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.location-play-btn {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s, box-shadow 0.3s;
}

.location-play-btn::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    opacity: 1;
    animation: location-pulse-ring 2.5s infinite;
}

@keyframes location-pulse-ring {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.location-play-btn:hover {
    transform: scale(1.1);
    background: var(--primary-color-btn);
    box-shadow: 0 20px 45px rgba(116, 42, 44, 0.5);
}

.location-play-btn i {
    color: #000000;
    font-size: 30px;
    margin-left: 8px;
    transition: color 0.3s;
}

.location-play-btn:hover i {
    color: #ffffff;
}

.location-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================
   DEL PROJECTS SLIDES SECTION
   ========================================== */
.del-projects-slides {
    position: relative;
    padding: 120px 0 100px 0;
    background: #ffffff;
    color: var(--text-dark);
    overflow: hidden;
    z-index: 5;
}

.projects-container {
    width: 100%;
    max-width: 1630px;
    margin: 0 auto;
    padding: 0 40px;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.projects-header-left {
    flex: 1.2;
}

.projects-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 10px 10px;
    border-radius: 999px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.projects-badge .tag-dot {
    background: var(--primary-color-btn);
}

.projects-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
    margin: 0;
}

.projects-header-right {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 10px;
}

.btn-projects-view {
    background-color: var(--primary-color-btn);
    color: var(--text-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 18px 36px;
    border-radius: 30px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(116, 42, 44, 0.3);
}

.btn-projects-view:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(116, 42, 44, 0.5);
}

/* Slider Layout */
.projects-slider-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    margin-bottom: 40px;
    cursor: grab;
}

.projects-slider-wrapper:active {
    cursor: grabbing;
}

.projects-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.project-slide {
    position: absolute;
    width: 44%;
    max-width: 650px;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        left 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.6s ease;
}

.project-slide-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1.5;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.project-slide-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slide Hover Button (only shows on active hover) */
.project-slide-hover-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.315);
    border: 1px solid rgba(255, 255, 255, 0.26);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 10;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.project-slide.active:hover .project-slide-hover-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.project-slide-hover-btn i {
    color: #ffffff;
    font-size: 26px;
    transition: transform 0.3s;
}

.project-slide-hover-btn:hover {
    transform: translate(-50%, -50%) scale(1.08) !important;
}

/* Info Metadata - Only visible on active */
.project-slide-info {
    position: absolute;
    top: calc(100% + 24px);
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.project-slide-tag {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.project-slide-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

/* Positioning classes */
.project-slide.active {
    left: 50%;
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
    pointer-events: auto;
    z-index: 5;
}

.project-slide.active .project-slide-info {
    opacity: 1;
    transform: translateY(0);
}

.project-slide.prev {
    left: 5%;
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.5;
    pointer-events: auto;
    z-index: 3;
}

.project-slide.next {
    left: 95%;
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.5;
    pointer-events: auto;
    z-index: 3;
}

/* Controls & range */
.projects-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 50px;
}

.projects-control-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.3);
    transition: color 0.3s, transform 0.2s;
    padding: 10px;
}

.projects-control-btn:hover {
    color: var(--text-dark);
    transform: scale(1.15);
}

.projects-range-track {
    width: 320px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
}

.projects-range-fill {
    height: 100%;
    background: var(--text-dark);
    width: 16.66%;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================
   DEL GALLERY SECTION
   ========================================== */
.del-gallery-section {
    position: relative;
    padding: 30px 0 160px 0;
    background: #ffffff;
    overflow: hidden;
    z-index: 5;
}

.del-gallery-section-quote {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto 150px;
    text-align: center;
    justify-content: center;
}

.del-gallery-section-quote i {
    font-size: 30px;
    color: var(--bg-color);
    margin-bottom: 4px;
    display: block;
}

.del-gallery-section-quote-line {
    font-family: var(--font-body);
    font-size: 24px;
    line-height: 1.2;
    color: #212529;
    margin-bottom: 24px;
    max-width: 580px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.del-gallery-section-writter {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.322);
    padding-top: 30px;
}

.gallery-bg-title {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 260px;
    font-weight: 500;
    color: #f1f1f1;
    line-height: 1;
    z-index: 1;
    pointer-events: none;
    letter-spacing: -5px;
    text-align: center;
    white-space: nowrap;
}

.gallery-rows-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.gallery-row {
    display: flex;
    width: 100%;
    overflow: hidden;
    align-items: center;
}

.gallery-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.gallery-row.scroll-left .gallery-track {
    animation: galleryScrollLeft 85s linear infinite;
    align-items: flex-end;

}

.gallery-row.scroll-right .gallery-track {
    animation: galleryScrollRight 85s linear infinite;
    align-items: flex-start;
}

.gallery-row:hover .gallery-track {
    animation-play-state: paused;
}

.gallery-item {
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    background: #e8e8e8;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Different Sizing Classes */
.gallery-item.size-sm {
    width: 320px;
    height: 210px;
}

.gallery-item.size-md {
    width: 450px;
    height: 280px;
}

.gallery-item.size-lg {
    width: 520px;
    height: 350px;
}

@keyframes galleryScrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes galleryScrollRight {
    0% {
        transform: translateX(-50%);
    }

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


/*  DEL ARTICLES SECTION */
.del-articles-section {
    position: relative;
    padding: 0px 0 120px 0;
    background: #ffffff;
    z-index: 5;
}

.articles-container {
    width: 100%;
    max-width: 1630px;
    margin: 0 auto;
    padding: 0 40px;
}

.articles-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.articles-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 10px;
    border-radius: 999px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.articles-badge .tag-dot {
    background: var(--primary-color-btn);
}

.articles-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
    margin: 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.article-card {
    /* background: #ffffff; */
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); */
    /* border: 1px solid rgba(0, 0, 0, 0.06); */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-6px);
    /* box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12); */
}

.article-card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 20px;

}

.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-card-img img {
    transform: scale(1.05);
}

.article-card-body {
    padding: 24px 24px 28px 24px;
}

.article-date {
    display: block;
    font-size: 16px;
    color: #666666;
    font-weight: 500;
    letter-spacing: 0.4px;
    margin-bottom: 12px;
}

.article-card-title {
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 700;
    color: #212529;
    line-height: 1.4;
    margin: 0;
}

.articles-cta {
    display: flex;
    justify-content: center;
}

.btn-articles-view {
    display: inline-block;
    background-color: var(--primary-color-btn);
    color: var(--text-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 14px 55px;
    border-radius: 30px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(116, 42, 44, 0.3);
}

.btn-articles-view:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(116, 42, 44, 0.5);
}

/* ==========================================
   DEL FOOTER
   ========================================== */
.del-footer {
    position: relative;
    background: #0d0d0d;
    color: var(--text-color);
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.footer-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.footer-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.88);
}

.footer-container {
    width: 100%;
    max-width: 1630px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.footer-main {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px 0;
}

.footer-main .footer-container {
    display: flex;
    gap: 0;
}

.footer-col {
    flex: 1;
    padding-right: 40px;
}

.footer-brand-col {
    flex: 1.2;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-logo {
    height: 200px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.footer-social-btn:hover {
    background: rgba(116, 42, 44, 0.4);
    border-color: var(--primary-color-btn);
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    margin-top: 0;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav-list li a {
    font-size: 18px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.4;
}

.footer-nav-list li a:hover {
    color: #ffffff9f;
}

.footer-location-block {
    margin-bottom: 28px;
}

.footer-location-block:last-child {
    margin-bottom: 0;
}

.footer-location-city {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.footer-location-block p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0 0 8px 0;
}

.footer-phone {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color-btn);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-phone:hover {
    color: #c0494c;
}

/* Badges Row */
.footer-badges-row {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-badge-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    opacity: 0.95;
    transition: opacity 0.3s, transform 0.3s;
}

.footer-badge-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Copyright Bar */
.footer-bottom-bar {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.199);
    padding: 22px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom-bar .footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-copyright {
    font-size: 16px;
    color: rgb(255, 255, 255);
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal-links a {
    font-size: 16px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.3s;
    text-decoration: underline;
}

.footer-legal-links a:hover {
    color: #fff;
}

.footer-legal-links span {
    color: rgb(255, 255, 255);
}


/* HERO RESI SECTION (residential-concrete.html)*/

.main-services {
    background: #ffffff;
}

.hero-resi-section {
    position: relative;
    background: #ffffff;
    overflow: visible;
}

/* ---- Top dark band with BG image ---- */
.resi-hero-top {
    position: relative;
    padding: 90px 20px 160px 20px;
    text-align: center;
    overflow: hidden;
}

.resi-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.resi-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.resi-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.95);
}

.resi-hero-title-wrap {
    position: relative;
    z-index: 6;
}

.resi-hero-title {
    font-family: var(--font-heading);
    font-size: 72px;
    max-width: 1000px;
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 auto;
    letter-spacing: -1px;
    text-align: center;
    padding-top: 40px;
}

/* ---- Banner image — pulled up to overlap dark bg ---- */
.resi-hero-banner-wrap {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1200px;
    margin: -140px auto 0 auto;
    padding: 0 24px;
}

.resi-hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* ---- White content below banner ---- */
.resi-hero-content {
    padding: 60px 24px 80px 24px;
    text-align: center;
    max-width: 1010px;
    margin: 0 auto;
}

.resi-hero-sub-title {
    font-family: var(--font-body);
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    color: #191919;
    margin: 0 0 28px 0;
}

.resi-hero-desc {
    font-size: 20px;
    line-height: 1.75;
    color: #4d4d52;
    margin: 0 0 18px 0;
}

.resi-hero-desc:last-of-type {
    margin-bottom: 40px;
}

/* CTA button */
.btn-resi-quote {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background-color: var(--primary-color-btn);
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.8px;
    padding: 10px 10px 10px 22px;
    border-radius: 999px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(116, 42, 44, 0.3);
}

.btn-resi-quote:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(116, 42, 44, 0.5);
}

.btn-resi-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
    transition: background 0.3s;
}

.btn-resi-quote:hover .btn-resi-arrow {
    background: rgba(255, 255, 255, 0.35);
}


/* RESI BUILT SECTION & RESI CONCRETE SECTION */

.resi-built-section {
    background: #000000;
    width: 100%;
}

.resi-built-container {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.resi-built-left {
    flex: 1;
    position: relative;
    min-height: 520px;
}

.resi-built-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.resi-built-right {
    flex: 1;
    background: #000000;
    display: flex;
    align-items: center;
    padding: 80px 8% 80px 2%;
}

.resi-built-content {
    max-width: 540px;
}

.resi-built-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 500;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.resi-built-desc {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.resi-built-desc:last-child {
    margin-bottom: 0;
}


.resi-concrete-section {
    background: #ffffff;
    padding: 120px 24px;
    width: 100%;
}

.resi-concrete-container {
    max-width: 1400px;
    margin: 0 auto;
}

.resi-concrete-heading {
    font-family: var(--font-heading);
    font-size: 64px;
    color: #111111;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -1px;
    font-weight: 500;
}

.resi-concrete-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.resi-concrete-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03), 0 4px 12px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.resi-concrete-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06), 0 5px 15px rgba(0, 0, 0, 0.02);
}

.resi-concrete-icon-wrap {
    margin-bottom: 30px;
}

.resi-concrete-icon {
    height: 65px;
    width: auto;
    object-fit: contain;
    display: block;
}

.resi-concrete-card-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.resi-concrete-card-desc {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: #000;
}



/* RESI HOME OWNERS SECTION */
.resi-home-owners {
    position: relative;
    padding: 120px 24px;
    overflow: hidden;
    width: 100%;
    z-index: 1;
}

.resi-home-owners::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../assets/gallery-1.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
}

.resi-home-owners-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.82);
    z-index: -1;
}

.resi-home-owners-container {
    max-width: 1400px;
    margin: 0 auto;
}

.resi-home-owners-heading {
    font-family: var(--font-heading);
    font-size: 52px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -1px;
    font-weight: 500;
}

.resi-home-owners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.resi-home-owners-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(116, 42, 44, 0.6);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.resi-home-owners-card:hover {
    border-color: rgba(116, 42, 44, 1);
    transform: translateY(-5px);
}

.resi-home-owners-card-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.resi-home-owners-card-desc {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* RESI ESTIMATE SECTION */
.resi-estimate {
    background: #ffffff;
    padding: 120px 24px;
    width: 100%;
}

.resi-estimate-container {
    max-width: 1400px;
    margin: 0 auto;
}

.resi-estimate-heading {
    font-family: var(--font-heading);
    font-size: 64px;
    color: #191919;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -1px;
    font-weight: 500;
}

.resi-estimate-subtext {
    font-family: var(--font-body);
    font-size: 22px;
    color: var(--bg-color);
    text-align: center;
    margin-bottom: 80px;
}

.resi-calc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.resi-calc-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.resi-calc-header {
    background: #22252a;
    padding: 24px 30px;
    text-align: center;
}

.resi-calc-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.resi-calc-body {
    padding: 40px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.resi-calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.resi-calc-row label {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: #111111;
    flex: 1;
}

.resi-calc-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 180px;
}

.resi-calc-input-wrap input {
    width: 100%;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0 12px;
    font-family: var(--font-body);
    font-size: 16px;
    color: #111111;
    background: #ffffff;
    outline: none;
    transition: border-color 0.3s ease;
}

.resi-calc-input-wrap input:focus {
    border-color: var(--primary-color-btn);
}

.resi-calc-input-wrap select {
    height: 28px;
    border: none;
    background: #000000;
    color: #ffffff;
    border-radius: 20px;
    padding: 0 16px;
    font-family: var(--font-body);
    font-size: 14px;
    cursor: pointer;
    outline: none;
    min-width: 88px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 28px;
}

.resi-calc-btn {
    /* width: calc(100% - 60px); */
    margin: 0 0px 0px 0px;
    height: 50px;
    background: var(--primary-color-btn);
    color: #ffffff;
    border: none;
    /* border-radius: 12px; */
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    padding-top: 10px;
    padding-bottom: 10px;
}

.resi-calc-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.resi-calc-btn:active {
    transform: translateY(0);
}

/* Custom Concrete Calculator Styles */
.resi-calc-result {
    margin-top: 25px;
    border-top: 2px dashed rgba(0, 0, 0, 0.08);
    padding-top: 20px;
}

.result-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-family: var(--font-body);
    font-size: 14px;
}

.result-table th, 
.result-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.result-table th {
    background-color: #f8fafc;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.result-table td {
    color: #1e293b;
}

.result-table td span {
    font-weight: 700;
    color: var(--primary-color-btn);
}

.result-table tr:hover {
    background-color: #f8fafc;
}

.resi-calc-error {
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #fef2f2;
    border-left: 4px solid #ef4444;
    border-radius: 4px;
    color: #991b1b;
    font-size: 14px;
    font-family: var(--font-body);
}

.resi-estimate-help {
    text-align: center;
    margin-top: 60px;
}

.resi-estimate-help h3 {
    font-family: var(--font-heading);
    font-size: 30px;
    color: #000;
    margin-bottom: 12px;
    font-weight: 400;
}

.resi-estimate-help p {
    font-family: var(--font-body);
    font-size: 18px;
    color: #000;
}

/* RESI CTA SECTION */
.resi-cta {
    position: relative;
    padding: 120px 24px;
    overflow: hidden;
    width: 100%;
    z-index: 1;
    text-align: center;
}

.resi-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../assets/gallery-16.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
}

.resi-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(116, 42, 44, 0.95), rgba(116, 42, 44, 0.85));
    z-index: -1;
}

.resi-cta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.resi-cta-heading {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.resi-cta-subtext {
    font-family: var(--font-body);
    font-size: 30px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.resi-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.btn-resi-cta-primary,
.btn-resi-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.8px;
    padding: 10px 10px 10px 22px;
    border-radius: 999px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.btn-resi-cta-primary {
    background-color: #000000;
    color: #ffffff;
}

.btn-resi-cta-primary:hover {
    background-color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-resi-cta-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff;
}

.btn-resi-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}


/* COMMERCIAL PROJECTS SECTION */
.com-project-section {
    background: #ffffff;
    padding: 120px 24px;
    width: 100%;
}

.com-project-container {
    max-width: 1400px;
    margin: 0 auto;
}

.com-project-heading {
    font-family: var(--font-heading);
    font-size: 64px;
    color: #111111;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
    font-weight: 500;
}

.com-project-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.com-project-card {
    background: #ffffff;
    border: 1.2px solid rgba(116, 42, 44, 0.25);
    border-radius: 16px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.com-project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(116, 42, 44, 0.7);
    box-shadow: 0 15px 35px rgba(116, 42, 44, 0.08);
    cursor: pointer;
}

.com-project-icon-wrap {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.com-project-icon {
    height: 65px;
    width: auto;
    object-fit: contain;
    display: block;
}

.com-project-card-title {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 500;
    color: #000;
    line-height: 1.3;
}


/* GALLERY HERO SECTION */
.gallery-hero-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gallery-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.gallery-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.7);
}

.gallery-hero-title-wrap {
    position: relative;
    z-index: 2;
}

.gallery-hero-title {
    font-family: var(--font-heading);
    font-size: 90px;
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    letter-spacing: 2px;
    text-align: center;
}

/* GALLERY PHOTOS SECTION */
.del-gallery-photos {
    background: #ffffff;
    padding: 100px 24px;
    width: 100%;
}

.gallery-photos-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gallery-group {
    display: grid;
    gap: 30px;
    width: 100%;
}

.group-left-large {
    grid-template-columns: 1.5fr 1fr;
    height: 520px;
}

.group-right-large {
    grid-template-columns: 1fr 1.5fr;
    height: 520px;
}

.group-fullwidth {
    grid-template-columns: 1fr;
    height: 480px;
}

.gallery-small-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    height: 100%;
}

.gallery-big-item, .gallery-fullwidth-item, .gallery-small-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.gallery-big-item:hover .gallery-img, 
.gallery-small-item:hover .gallery-img, 
.gallery-fullwidth-item:hover .gallery-img {
    transform: scale(1.03);
}

/* GALLERY SLIDESHOW */
.gallery-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 2;
}

.gallery-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-slide-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.gallery-slide-indicators .indicator {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.gallery-slide-indicators .indicator.active {
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Slide overlay */
.gallery-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.68) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.10) 100%
    );
    z-index: 3;
    border-radius: 20px;
}

/* Slide text content */
.gallery-slide-content {
    position: absolute;
    bottom: 70px;
    left: 50px;
    z-index: 4;
    max-width: 520px;

    /* initial hidden state — will animate on .active */
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.25s,
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}

/* When slide is active, animate content in */
.gallery-slide.active .gallery-slide-content {
    opacity: 1;
    transform: translateY(0);
}

.gallery-slide-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 14px 0;
    line-height: 1.15;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.gallery-slide-desc {
    font-family: var(--font-body);
    font-size: 22px;
    line-height: 1.65;
    color: rgba(255, 255, 255);
    margin: 0;
    text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

/* GALLERY LIGHTBOX POPUP */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 85%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: var(--primary-color-btn);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.lightbox-arrow:hover {
    background-color: var(--primary-color-btn);
    border-color: var(--primary-color-btn);
    color: #ffffff;
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}


/* About Us Page Sections styling */
.about-us-intro,
.about-us-lower-intro {
    background: #fff;
    width: 100%;
    
}
.about-us-intro .section-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 500;
    line-height: 1.15;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-align: center;
    padding: 50px 0;
}
.about-us-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.about-us-intro-left,
.about-us-intro-right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 4% 80px 8%;
}

.about-us-intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-us-intro-left .about-us-intro-img {
    border-radius: 40px 40px 40px 40px;
    max-height: 700px;
}

.about-us-intro-right .about-us-intro-img {
    border-radius: 40px 40px 40px 40px;
    max-height: 700px;
}

.about-us-intro-right {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 15px 8% 80px 4%;
}

.about-us-lower-intro .about-us-intro-left {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 80px 4% 80px 8%;
}

.about-us-intro-content {
    max-width: 620px;
}

.about-us-intro-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 500;
    line-height: 1.15;
    color: #000000;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.about-us-intro-text {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.75;
    color: #000000;
    margin-bottom: 24px;
}

.about-us-intro-text.highlight {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

/* Mid Banner Section */
.about-us-full-banner {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-us-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.about-us-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.about-us-banner-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 40px;
    text-align: center;
}

.about-us-banner-text {
    font-family: var(--font-heading);
    font-size: 52px;
    color: #ffffff;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: -0.5px;
}

/* Contact Us Page styling */
.contact-us-section {
    background: #ffffff;
    padding: 100px 0;
    width: 100%;
}

.contact-us-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-top-row {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: stretch;
    margin-bottom: 100px;
}

.contact-left-media {
    flex: 1;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    min-height: 500px;
}

.contact-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-logo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.contact-logo-img {
    width: 60%;
    max-width: 380px;
    height: auto;
    object-fit: contain;
}

.contact-right-form {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    width: 100%;
    margin-bottom: 35px;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 16px;
    color: #111111;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 18px 24px;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaaaaa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color-btn);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 24px center;
    background-size: 16px;
    padding-right: 48px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--primary-color-btn);
    color: #ffffff;
    border: none;
    padding: 6px 8px 6px 36px;
    border-radius: 45px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.contact-submit-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.arrow-circle-white {
    width: 38px;
    height: 38px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.arrow-circle-white i {
    color: var(--primary-color-btn);
    font-size: 16px;
}

.contact-submit-btn:hover .arrow-circle-white {
    transform: scale(1.05);
}

/* Contact info boxes */
.contact-boxes-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.contact-info-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;

}
.contact-info-box:hover,
.contact-info-box.active {
    transform: scale(.97);
    box-shadow: 0 10px 20px rgba(116, 42, 44, 0.25);
    cursor: pointer;
}

.contact-info-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color-btn);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.contact-info-box:hover::after,
.contact-info-box.active::after {
    transform: scaleX(1);
}
.box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.box-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 500;
    color: #111111;
}

.badge {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.badge-hq {
    background: rgba(116, 42, 44, 0.1);
    color: var(--primary-color-btn);
}

.badge-new {
    background: rgba(116, 42, 44, 0.1);
    color: var(--primary-color-btn);
}

.box-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-line {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-line i {
    color: var(--primary-color-btn);
    font-size: 18px;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.info-line span {
    font-family: var(--font-body);
    font-size: 15px;
    color: #444444;
    line-height: 1.5;
}

.box-phone-link {
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 500;
    color: var(--primary-color-btn);
    text-decoration: none;
    margin-top: 15px;
    transition: color 0.3s;
}

.box-phone-link:hover {
    color: var(--primary-hover);
}

.contact-map-wrap {
    width: 100%;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: -100px;
    position: relative;
    z-index: 10;
}

.contact-map-wrap iframe {
    display: block;
}

/* Privacy Policy Section styling */
.privacy-policy-section {
    background: #ffffff;
    padding: 100px 0;
    width: 100%;
}

.privacy-policy-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.privacy-heading {
    font-family: var(--font-heading);
    font-size: 44px;
    color: #742A2C;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.2;
}

.privacy-subheading {
    font-family: var(--font-heading);
    font-size: 28px;
    color: #742A2C;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.25;
}

.privacy-policy-container p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 20px;
}

.privacy-policy-container p strong {
    color: #000000;
}

.privacy-policy-container ul {
    list-style-type: disc;
    margin-left: 24px;
    margin-bottom: 25px;
}

.privacy-policy-container li {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 12px;
}

.privacy-policy-container a {
    color: #742A2C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.privacy-policy-container a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.contact-details-list {
    list-style-type: none !important;
    margin-left: 0 !important;
    background: rgba(116, 42, 44, 0.04);
    border-left: 4px solid #742A2C;
    padding: 24px 30px;
    border-radius: 0 16px 16px 0;
}

.contact-details-list li {
    margin-bottom: 10px !important;
}

.contact-details-list li:last-child {
    margin-bottom: 0 !important;
}

.privacy-footnote {
    font-style: italic;
    color: #666666 !important;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Careers Section styling */
.careers-section {
    background: #ffffff;
    padding: 100px 0;
    width: 100%;
}

.careers-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
}

.careers-sidebar {
    flex: 0 0 320px;
    position: sticky;
    top: 130px;
}

.filter-desktop-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.filter-btn {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: #444444;
    background: transparent;
    border: none;
    text-align: left;
    padding: 14px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.filter-btn:hover {
    background: rgba(0, 0, 0, 0.02);
    color: #111111;
}

.filter-btn.active {
    background: rgba(116, 42, 44, 0.05);
    color: var(--primary-color-btn);
    border-left-color: var(--primary-color-btn);
    font-weight: 600;
}

.filter-mobile-dropdown {
    display: none;
    flex-direction: column;
    margin-bottom: 30px;
}

.filter-mobile-dropdown label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 8px;
}

.filter-mobile-dropdown select {
    font-family: var(--font-body);
    font-size: 16px;
    color: #111111;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    outline: none;
    width: 100%;
}

.careers-sidebar-promo {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 30px;
}

.careers-sidebar-promo p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 25px;
}

.btn-share-linkedin {
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #111111;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.btn-share-linkedin:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.careers-listings {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.job-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.job-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.job-card .job-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 15px;
}

.job-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.job-tag {
    font-family: var(--font-body);
    font-size: 12px;
    color: #666666;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    padding: 6px 16px;
    background: #ffffff;
}

.job-description {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 30px;
}

.job-action {
    display: flex;
    justify-content: flex-end;
}

.btn-see-position {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color-btn);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-see-position:hover {
    background: var(--primary-hover);
    transform: translateX(2px);
}

/* Employment Application Page styling */
.application-form-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.app-form {
    width: 100%;
}

.form-section-block {
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 50px;
}

.form-section-block:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.form-section-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.form-row-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 25px;
}

.form-row-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.form-row-full {
    width: 100%;
    margin-bottom: 25px;
}

.form-group-item {
    display: flex;
    flex-direction: column;
}

.form-group-item label {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 8px;
}

.form-group-item input,
.form-group-item textarea {
    font-family: var(--font-body);
    font-size: 16px;
    color: #111111;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group-item input::placeholder,
.form-group-item textarea::placeholder {
    color: #aaaaaa;
}

.form-group-item input:focus,
.form-group-item textarea:focus {
    border-color: var(--primary-color-btn);
}

/* Eligibility questions */
.eligibility-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.eligibility-row:last-of-type {
    border-bottom: none;
}

.question-text {
    font-family: var(--font-body);
    font-size: 16px;
    color: #333333;
    font-weight: 500;
}

.radio-options {
    display: flex;
    gap: 40px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    color: #111111;
}

.radio-label input[type="radio"] {
    accent-color: var(--primary-color-btn);
    width: 18px;
    height: 18px;
}

.inline-question-field {
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Resume dropzone */
.resume-dropzone {
    border: 2px dashed rgba(116, 42, 44, 0.3);
    background: rgba(116, 42, 44, 0.02);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.dropzone-text {
    font-family: var(--font-body);
    font-size: 16px;
    color: #555555;
    font-weight: 500;
}

.resume-dropzone input[type="file"] {
    font-family: var(--font-body);
    font-size: 14px;
}

/* Disclaimer text block */
.disclaimer-text-box {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px 30px;
    margin-bottom: 35px;
}

.disclaimer-label {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.disclaimer-text-box p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: #444444;
}

/* Signature Canvas group */
.signature-row-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.signature-canvas-group {
    display: flex;
    flex-direction: column;
}

.signature-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.signature-label-row label {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #111111;
}

.clear-sig-btn {
    background: transparent;
    border: none;
    color: #888888;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.clear-sig-btn:hover {
    color: var(--primary-color-btn);
}

.signature-pad-wrap {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    height: 150px;
}

.signature-pad-wrap canvas {
    display: block;
    width: 100%;
    height: 100%;
    cursor: crosshair;
}

.date-field-wrap {
    margin-top: 28px;
}

.app-submit-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Career View Page styling */
.career-view-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.career-view-header {
    text-align: center;
    margin-bottom: 60px;
}

.career-view-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.center-tags {
    justify-content: center;
}

.apply-btn-wrap {
    margin-top: 30px;
}

.btn-apply-now {
    font-size: 16px;
    padding: 14px 40px;
    letter-spacing: 1px;
}

.career-view-body {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.detail-block {
    width: 100%;
}

.detail-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #111111;
    margin-bottom: 15px;
    font-weight: 500;
}

.career-view-body p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: #444444;
}

.detail-bullets-list {
    list-style-type: disc;
    margin-left: 24px;
}

.detail-bullets-list li {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: #444444;
    margin-bottom: 10px;
}

.detail-bullets-list li:last-child {
    margin-bottom: 0;
}

.bottom-apply {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 40px;
}
.required-asterisk{
color: #ff0000cb;
}

/* 1. LARGEST SCREENS (Separate) */
/* @media (min-width: 1440px) {
    .header-container {
        max-width: 1700px;
        padding: 0 60px;
    }
    
    .nav-links {
        gap: 40px;
    }
    
    .nav-item {
        font-size: 16px;
    }

    .btn-order {
        padding: 16px 32px;
        font-size: 14px;
    }

    .hero-container {
        max-width: 1600px;
        padding: 0 60px;
    }
    
    .hero-title {
        font-size: 110px;
    }
    
    .hero-description {
        font-size: 22px;
        max-width: 650px;
    }
    
    .hero-box-stat,
    .hero-box-image {
        width: 280px;
        min-height: 310px;
    }
} */
@media (min-width: 1440px) {
    .resi-hero-top {
        padding: 110px 20px 180px 20px;
    }

    .resi-hero-title {
        font-size: 82px;
        padding-top: 40px;
        margin-bottom: 0;
    }

    .resi-hero-banner-wrap {
        max-width: 1200px;
        margin-top: -150px;
    }
}

@media (min-width: 1200px) and (max-width: 1439px) {
    .logo-img {
        height: 130px !important;
        top: 30px;
    }

    .nav-links {
        gap: 30px;
    }

    .contact-phone {
        display: flex;
    }

    .phone-icon-container {
        display: none;
    }

    .hero-title {
        font-size: 72px;
        max-width: 580px;
    }

    .hero-description {
        font-size: 20px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 14px;
    }

    /* del location */
    .del-location-section {
        padding: 140px 0 100px 0;
    }

    .location-title {
        font-size: 72px;
    }

    .location-card {
        padding: 40px 30px;
    }

    .location-card-title {
        font-size: 36px;
    }

    .location-card-phone a {
        font-size: 28px;
    }

    .location-banner-title {
        font-size: 34px;
    }

    .wwa-description,
    .location-header-desc,
    .location-banner-desc {
        font-size: 20px;
    }


    .projects-title {
        font-size: 56px;
    }

    .projects-slider-wrapper {
        height: 520px;
    }

    .project-slide {
        width: 46%;
    }

    .project-slide.prev {
        left: 12%;
    }

    .project-slide.next {
        left: 88%;
    }

    .project-slide-title {
        font-size: 30px;
    }

    .gallery-bg-title {
        font-size: 210px;
    }

    .articles-title {
        font-size: 56px;
    }

    .article-card-title {
        font-size: 22px;
    }

    .footer-logo {
        height: 100px;
    }

    .resi-hero-top {
        padding: 95px 20px 160px 20px;
    }

    .resi-hero-title {
        font-size: 74px;
        padding-top: 30px;
        margin-bottom: 0;
    }

    .resi-hero-banner-wrap {
        max-width: 1000px;
        margin-top: -130px;
    }
     
    .resi-hero-sub-title {
        font-size: 32px;
    }

    .resi-built-title {
        font-size: 46px;
    }
    .resi-concrete-heading {
        font-size: 54px;
        margin-bottom: 60px;
    }
    .resi-concrete-card {
        padding: 40px 30px;
    }
    .resi-concrete-card-title {
        font-size: 28px;
    }

    .resi-home-owners-heading,
    .resi-estimate-heading,
    .resi-cta-heading {
        font-size: 54px;
    }
    .resi-estimate-subtext,
    .resi-cta-subtext {
        font-size: 18px;
    }
    .resi-calc-header h3{
        font-size: 22px;
    }
    .com-project-heading {
        font-size: 48px;
        margin-bottom: 50px;
    }
    .gallery-hero-title {
        font-size: 68px;
    }
    .group-left-large, .group-right-large {
        height: 480px;
    }
    .group-fullwidth {
        height: 420px;
    }
    .about-us-intro-title {
        font-size: 42px;
    }
    .about-us-banner-text {
        font-size: 40px;
    }
    .contact-us-container {
        padding: 0 40px;
    }
    .contact-top-row {
        gap: 40px;
        margin-bottom: 80px;
    }
    .contact-boxes-row {
        gap: 24px;
        margin-bottom: 80px;
    }
    .contact-info-box {
        padding: 30px;
    }
    .box-title {
        font-size: 34px;
    }
    .box-phone-link {
        font-size: 26px;
    }
    .careers-container {
        gap: 40px;
        padding: 0 40px;
    }
    .careers-sidebar {
        flex: 0 0 280px;
    }
}

/* 2. MINI DESKTOPS & LANDSCAPE TABLETS (Together) */
@media (min-width: 992px) and (max-width: 1199px) {

    .main-header {
        height: var(--header-height);
    }

    .header-container {
        padding: 0 24px;
    }

    .logo-img {
        height: 120px;
        top: 12px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-item {
        font-size: 14px;
    }

    .header-actions {
        gap: 12px;
    }

    .contact-phone {
        display: flex;
        gap: 8px;
    }

    .phone-icon-container {
        display: none;
    }

    .phone-icon {
        font-size: 16px;
    }

    .phone-number {
        font-size: 13px;
    }

    .btn-order {
        padding: 10px 18px;
        font-size: 12px;
    }

    .circle-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .hero-container {
        padding: 0 24px;
        gap: 30px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-box-stat,
    .hero-box-image {
        width: 210px;
        min-height: 240px;
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 56px;
    }

    .stat-plus {
        font-size: 30px;
    }

    /* Who We Are — mini desktops & landscape tablets */
    .who-we-are-section {
        padding: 60px 0 180px 0;
    }

    .wwa-container {
        padding: 0 24px;
    }

    .wwa-title {
        font-size: 42px;
    }

    .wwa-img-card {
        min-height: 400px;
    }

    .wwa-card-title {
        font-size: 22px;
    }

    .wwa-card-desc {
        font-size: 12px;
    }

    /* del location */
    .del-location-section {
        padding: 120px 0 80px 0;
    }

    .location-container {
        padding: 0 24px;
    }

    .location-header {
        margin-bottom: 40px;
        gap: 30px;
    }

    .location-title {
        font-size: 56px;
    }

    .location-header-desc {
        font-size: 16px;
    }

    .location-cards-grid {
        gap: 24px;
        margin-bottom: 60px;
    }

    .location-card {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .location-card-title {
        font-size: 30px;
    }

    .location-card-badge {
        margin-bottom: 20px;
    }

    .location-card-divider {
        margin-bottom: 20px;
    }

    .location-card-info {
        gap: 16px;
        margin-bottom: 35px;
    }

    .location-card-info li {
        font-size: 14px;
    }

    .location-card-phone a {
        font-size: 24px;
    }

    .location-banner {
        padding: 30px 40px;
        border-radius: 30px;
        margin-bottom: 60px;
    }

    .location-banner-title {
        font-size: 28px;
    }

    .location-banner-desc {
        font-size: 15px;
    }

    .btn-location-call {
        font-size: 14px;
        padding: 8px 8px 8px 24px;
    }

    .call-icon-wrap {
        width: 40px;
        height: 40px;
    }

    .del-projects-slides {
        padding: 90px 0 80px 0;
    }

    .projects-container {
        padding: 0 24px;
    }

    .projects-title {
        font-size: 46px;
    }

    .projects-slider-wrapper {
        height: 480px;
    }

    .project-slide {
        width: 48%;
    }

    .project-slide.prev {
        left: 10%;
    }

    .project-slide.next {
        left: 90%;
    }

    .project-slide-title {
        font-size: 26px;
    }

    .project-slide-tag {
        font-size: 13px;
    }

    .gallery-bg-title {
        font-size: 170px;
    }

    .gallery-item.size-sm {
        width: 240px;
        height: 180px;
    }

    .gallery-item.size-md {
        width: 340px;
        height: 240px;
    }

    .gallery-item.size-lg {
        width: 440px;
        height: 300px;
    }

    .del-articles-section {
        padding: 80px 0 90px 0;
    }

    .articles-container {
        padding: 0 24px;
    }

    .articles-title {
        font-size: 48px;
    }

    .articles-grid {
        gap: 24px;
    }

    .article-card-title {
        font-size: 17px;
    }

    .footer-container {
        padding: 0 24px;
    }

    .footer-col {
        padding-right: 24px;
    }

    .footer-logo {
        height: 90px;
    }

    .footer-col-title {
        font-size: 14px;
    }

    .footer-nav-list li a {
        font-size: 13px;
    }
    .resi-hero-top {
        padding: 70px 20px 130px 20px;
    }

    .resi-hero-title {
        font-size: 58px;
    }

    .resi-hero-banner-wrap {
        max-width: 720px;
        margin-top: -100px;
    }

    .resi-hero-sub-title {
        font-size: 28px;
    }

    .resi-hero-desc {
        font-size: 15px;
    }

    .resi-built-title {
        font-size: 38px;
    }
    .resi-built-desc {
        font-size: 16px;
    }
    .resi-concrete-heading {
        font-size: 48px;
        margin-bottom: 50px;
    }
    .resi-concrete-grid {
        gap: 24px;
    }
    .resi-concrete-card {
        padding: 35px 25px;
        border-radius: 20px;
    }
    .resi-concrete-card-title {
        font-size: 24px;
    }
    .resi-concrete-card-desc {
        font-size: 15px;
    }
    .resi-home-owners-heading,
    .resi-estimate-heading,
    .resi-cta-heading {
        font-size: 46px;
    }
    .resi-home-owners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .resi-calc-grid {
        gap: 20px;
    }
    .resi-estimate-subtext,
    .resi-cta-subtext {
        font-size: 16px;
    }
    .com-project-heading {
        font-size: 42px;
        margin-bottom: 40px;
    }
    .com-project-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .gallery-hero-section {
        min-height: 35vh;
    }
    .gallery-hero-title {
        font-size: 56px;
    }
    .del-gallery-photos {
        padding: 80px 24px;
    }
    .group-left-large, .group-right-large {
        height: 400px;
        gap: 20px;
    }
    .group-fullwidth {
        height: 350px;
    }
    .gallery-small-group {
        gap: 16px;
    }
    .gallery-slide-title{
        font-size: 30px;
    }
    .gallery-slide-desc{
        font-size: 20px;
    }
    .about-us-intro-title {
        font-size: 38px;
        margin-bottom: 20px;
    }
    .about-us-intro-text {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 16px;
    }
    .about-us-intro-text.highlight {
        font-size: 17px;
    }
    .about-us-banner-text {
        font-size: 36px;
    }
    .about-us-full-banner {
        height: 420px;
    }
    .contact-us-container {
        padding: 0 24px;
    }
    .contact-top-row {
        gap: 30px;
        margin-bottom: 70px;
    }
    .contact-left-media {
        min-height: 450px;
    }
    .contact-boxes-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 70px;
    }
    .contact-info-box {
        padding: 24px;
    }
    .box-title {
        font-size: 28px;
    }
    .box-phone-link {
        font-size: 22px;
    }
    .form-grid {
        gap: 20px;
    }
    .careers-container {
        gap: 30px;
        padding: 0 24px;
    }
    .careers-sidebar {
        flex: 0 0 240px;
    }
    .filter-btn {
        font-size: 15px;
        padding: 10px 16px;
    }
}

/* 3. PORTRAIT TABLETS (Separate) */
@media (min-width: 577px) and (max-width: 991px) {

    .panel-phone-label {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .panel-circle-btn {
        width: 54px;
        height: 54px;
        font-size: 18px;
    }

    .panel-close-btn {
        font-size: 34px;
    }

    .panel-nav-item {
        font-size: 45px;
    }

    .panel-dropdown-menu a {
        font-size: 26px;
    }

    .panel-btn-order {
        width: 400px;
        font-size: 20px;
    }

    .main-header {
        height: var(--header-height);
    }

    .header-container {
        padding: 0 24px;
    }

    .logo-img {
        height: 150px;
        top: 30px;
    }

    /* Hide desktop-only navigation and action items */
    .desktop-nav,
    .contact-phone,
    .btn-order,
    .circle-btn.search-btn,
    .circle-btn.apps-btn {
        display: none !important;
    }

    /* Show burger menu button */
    .burger-menu-btn {
        display: block;
        font-size: 40px;
    }

    .content-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
        align-items: center;
        padding: 0 24px;
    }

    .hero-badge {
        font-size: 15px;
    }

    .hero-content-left {
        align-items: center;
        text-align: center;
        max-width: 680px;
    }

    .hero-title {
        font-size: 65px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 24px;
        margin-left: auto;
        margin-right: auto;
        max-width: 650px;
    }

    .hero-actions-row {
        justify-content: center;
    }

    .hero-content-right {
        justify-content: center;
        width: 100%;
    }

    .hero-box-stat {
        width: 325px;
    }

    .hero-box-image {
        width: 325px;
        min-height: 280px;
    }

    .stat-subtext {
        font-size: 14px;
        text-align: left;
    }

    .stat-footer {
        font-size: 14px
    }

    /* Who We Are — portrait tablets */
    .who-we-are-section {
        padding: 60px 0 160px 0;
    }

    .wwa-container {
        padding: 0 24px;
    }

    .wwa-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .wwa-title {
        font-size: 42px;
    }

    .wwa-description {
        font-size: 16px;
    }

    .wwa-images-wrapper {
        gap: 16px;
    }

    .wwa-img-card {
        min-height: 420px;
    }

    .wwa-card-title {
        font-size: 22px;
    }

    .wwa-card-desc {
        font-size: 13px;
    }

    /* Del location */
    .del-location-section {
        padding: 100px 0 80px 0;
    }

    .location-container {
        padding: 0 24px;
    }

    .location-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
        gap: 20px;
    }

    .location-title {
        font-size: 48px;
    }

    .location-header-desc {
        font-size: 16px;
    }

    .location-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 550px;
        margin: 0 auto 50px auto;
    }

    .location-card {
        padding: 40px;
        border-radius: 24px;
    }

    .location-card-title {
        font-size: 34px;
    }

    .location-card-phone a {
        font-size: 28px;
    }

    .location-banner {
        flex-direction: column;
        text-align: center;
        padding: 35px 30px;
        border-radius: 30px;
        margin-bottom: 50px;
        gap: 24px;
    }

    .location-banner-title {
        font-size: 28px;
    }

    .location-banner-desc {
        font-size: 15px;
    }

    .btn-location-call {
        width: 100%;
        max-width: 340px;
        justify-content: space-between;
    }

    .location-video-container {
        border-radius: 24px;
    }

    .location-play-btn {
        width: 90px;
        height: 90px;
    }

    .location-play-btn i {
        font-size: 24px;
        margin-left: 6px;
    }

    .del-projects-slides {
        padding: 80px 0 60px 0;
    }

    .projects-container {
        padding: 0 24px;
    }

    .projects-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }

    .projects-header-right {
        width: 100%;
        justify-content: flex-start;
    }

    .projects-title {
        font-size: 38px;
    }

    .projects-slider-wrapper {
        height: 420px;
    }

    .project-slide {
        width: 65%;
    }

    .project-slide.prev {
        left: -10%;
        opacity: 0.3;
    }

    .project-slide.next {
        left: 110%;
        opacity: 0.3;
    }

    .project-slide-title {
        font-size: 24px;
    }

    .projects-slider-controls {
        padding-top: 70px;
    }

    .del-gallery-section {
        padding: 80px 0 100px 0;
    }

    .gallery-bg-title {
        font-size: 130px;
        top: 38%;
    }

    .gallery-rows-container {
        gap: 20px;
    }

    .gallery-track {
        gap: 20px;
    }

    .gallery-item {
        border-radius: 5px;
    }

    .gallery-item.size-sm {
        width: 190px;
        height: 140px;
    }

    .gallery-item.size-md {
        width: 270px;
        height: 190px;
    }

    .gallery-item.size-lg {
        width: 350px;
        height: 240px;
    }

    .del-articles-section {
        padding: 70px 0 80px 0;
    }

    .articles-container {
        padding: 0 24px;
    }

    .articles-title {
        font-size: 40px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
        gap: 28px;
    }

    .article-card-title {
        font-size: 20px;
    }

    .footer-container {
        padding: 0 24px;
    }

    .footer-main .footer-container {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-col {
        flex: 1 1 calc(50% - 20px);
        min-width: 200px;
        padding-right: 0;
    }

    .footer-brand-col {
        flex: 1 1 100%;
    }

    .footer-logo {
        height: 90px;
    }

    .footer-badges {
        gap: 30px;
    }

    .footer-badge-img {
        height: 70px;
    }

    .footer-bottom-bar .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .resi-hero-top {
        padding: 90px 20px 140px 20px;
    }

    .resi-hero-title {
        font-size: 44px;
        letter-spacing: 0;
        padding-top: 20px;
        margin-top: 0;
    }

    .resi-hero-banner-wrap {
        max-width: 90%;
        margin-top: -70px;
        padding: 0 16px;
    }

    .resi-hero-banner-img {
        border-radius: 16px;
    }

    .resi-hero-content {
        padding: 50px 24px 60px 24px;
    }

    .resi-hero-sub-title {
        font-size: 26px;
    }

    .resi-hero-desc {
        font-size: 15px;
    }

    .resi-built-container {
        flex-direction: column;
    }
    .resi-built-left {
        min-height: 380px;
    }
    .resi-built-right {
        padding: 60px 40px;
    }
    .resi-built-title {
        font-size: 36px;
    }
    .resi-concrete-heading {
        font-size: 42px;
        margin-bottom: 40px;
    }
    .resi-concrete-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .resi-concrete-card {
        padding: 35px 25px;
        border-radius: 20px;
    }
    .resi-concrete-card-title {
        font-size: 24px;
    }

    .resi-home-owners {
        padding: 80px 24px;
    }
    .resi-home-owners-heading,
    .resi-estimate-heading,
    .resi-cta-heading {
        font-size: 40px;
    }
    .resi-home-owners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .resi-estimate {
        padding: 80px 24px;
    }
    .resi-calc-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 50px auto;
        gap: 30px;
    }
    .resi-cta {
        padding: 80px 24px;
    }
    .resi-cta-subtext {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .com-project-section {
        padding: 80px 24px;
    }
    .com-project-heading {
        font-size: 38px;
        margin-bottom: 35px;
    }
    .com-project-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .com-project-card {
        padding: 30px 15px;
    }
    .gallery-hero-section {
        min-height: 30vh;
    }
    .gallery-hero-title {
        font-size: 48px;
    }
    .del-gallery-photos {
        padding: 60px 20px;
    }
    .group-left-large, .group-right-large {
        height: 320px;
        gap: 16px;
    }
    .group-fullwidth {
        height: 280px;
    }
    .gallery-small-group {
        gap: 12px;
    }
    .about-us-container {
        flex-direction: column;
    }
    .about-us-intro-left,
    .about-us-intro-right {
        min-height: 400px;
    }
    .about-us-intro-content{
        max-width: 745px;
    }
    .about-us-intro-right {
        padding: 60px 40px;
        justify-content: center;
    }
    .about-us-lower-intro .about-us-intro-left {
        padding: 60px 40px;
        justify-content: center;
    }
    .about-us-intro-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .about-us-intro-left .about-us-intro-img,
    .about-us-intro-right .about-us-intro-img {
        border-radius: 20px;
        padding: 0 16px;
    }
    .about-us-intro-img {
        object-fit: cover;
    }
    .about-us-banner-text {
        font-size: 32px;
    }
    .about-us-full-banner {
        height: 380px;
    }
    .contact-us-section {
        padding: 60px 0;
    }
    .contact-top-row {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }
    .contact-left-media {
        min-height: 350px;
    }
    .contact-boxes-row {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        margin-bottom: 60px;
    }
    .contact-info-box {
        padding: 30px;
    }
    .box-title {
        font-size: 32px;
    }
    .box-phone-link {
        font-size: 24px;
    }
    .contact-map-wrap {
        margin-bottom: -60px;
    }
    .careers-container {
        flex-direction: column;
        gap: 50px;
        padding: 0 24px;
    }
    .careers-sidebar {
        flex: none;
        width: 100%;
        position: relative;
        top: 0;
    }
    .filter-desktop-list {
        margin-bottom: 25px;
    }
    .careers-sidebar-promo {
        padding-top: 20px;
    }
}

/*  4. MOBILE (Separate) */
@media (max-width: 576px) {
    .main-header {
        height: 68px;
    }

    .header-container {
        padding: 0 16px;
    }

    .logo-img {
        height: 80px;
        top: 15px;
    }

    /* Hide desktop elements */
    .desktop-nav,
    .contact-phone,
    .btn-order,
    .circle-btn.search-btn,
    .circle-btn.apps-btn {
        display: none !important;
    }

    /* Show burger menu */
    .burger-menu-btn {
        display: block;
        font-size: 26px;
    }

    /* Mobile Content updates */
    .hero-section {
        min-height: 95vh;
        padding: 0 0 50px 0;
    }

    .hero-container {
        flex-direction: column;
        gap: 0px;
        text-align: center;
        align-items: center;
        padding: 0 16px;

    }

    .hero-content-left {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .hero-actions-row {
        flex-direction: column;
        width: 100%;
        gap: 14px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: space-between;
        padding: 12px 8px 12px 35px;
        font-size: 16px;
        gap: 1px;
        align-items: center;
        max-width: 80%;
    }

    .arrow-circle {
        width: 34px;
        height: 34px;
    }

    .hero-content-right {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        justify-content: center;
    }

    .hero-box-stat,
    .hero-box-image {
        width: 100%;
        max-width: 320px;
        min-height: 250px;
    }

    .stat-number {
        font-size: 64px;
    }

    .stat-subtext {
        text-align: left;
    }

    .details-section {
        padding: 60px 16px;
    }

    .content-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Adjust full screen panel typography for small devices */
    .panel-nav-item {
        font-size: 32px;
    }

    .panel-dropdown-menu a {
        font-size: 24px;
    }

    .panel-phone-number {
        font-size: 13px;
    }

    .panel-phone-icon-container {
        width: 44px;
        height: 44px;
    }

    .panel-phone-label {
        font-size: 14px;
        padding-bottom: 5px
    }

    .panel-phone-icon {
        font-size: 16px;
    }

    /* Who We Are — mobile */
    .who-we-are-section {
        padding: 50px 0 100px 0;
    }

    .wwa-container {
        padding: 0 16px;
    }

    .wwa-content {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .wwa-text {
        margin-left: 0;
        max-width: 100%;

    }

    .wwa-title {
        font-size: 40px;
    }

    .wwa-description {
        font-size: 18px;
    }

    .wwa-images-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .wwa-img-card {
        min-height: 340px;
        flex: unset;
        width: 100%;
    }

    .wwa-card-title {
        font-size: 20px;
    }

    .wwa-card-desc {
        font-size: 13px;
    }

    .who-we-are-section+* {
        margin-top: -80px;
    }


    /* Del location */
    .del-location-section {
        padding: 80px 0 60px 0;
    }

    .location-container {
        padding: 0 16px;
    }

    .location-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
        gap: 15px;
    }

    .location-badge {
        font-size: 10px;
        padding: 8px 16px;
        margin-bottom: 16px;
    }

    .location-title {
        font-size: 40px;
    }

    .location-header-desc {
        font-size: 18px;
    }

    .location-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .location-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .location-card-title {
        font-size: 28px;
    }

    .location-card-badge {
        margin-bottom: 20px;
        font-size: 10px;
        padding: 4px 10px;
    }

    .location-card-divider {
        margin-bottom: 20px;
    }

    .location-card-info {
        gap: 14px;
        margin-bottom: 30px;
    }

    .location-card-info li {
        font-size: 14px;
        gap: 10px;
    }

    .location-card-info li i {
        font-size: 14px;
        margin-top: 2px;
    }

    .location-card-phone a {
        font-size: 24px;
    }

    .location-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        border-radius: 20px;
        margin-bottom: 40px;
        gap: 20px;
    }

    .location-banner-title {
        font-size: 22px;
    }

    .location-banner-desc {
        font-size: 14px;
    }

    .btn-location-call {
        width: 100%;
        font-size: 14px;
        padding: 8px 8px 8px 20px;
        justify-content: space-between;
    }

    .call-icon-wrap {
        width: 38px;
        height: 38px;
    }

    .location-video-container {
        border-radius: 16px;
    }

    .location-play-btn {
        width: 70px;
        height: 70px;
    }

    .location-play-btn::before {
        inset: -10px;
    }

    .location-play-btn i {
        font-size: 20px;
        margin-left: 4px;
    }


    /* Del Slides */
    .del-projects-slides {
        padding: 60px 0 50px 0;
    }

    .projects-container {
        padding: 0 16px;
    }

    .projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }

    .projects-header-right {
        width: 100%;
        justify-content: flex-start;
    }

    .btn-projects-view {
        width: 100%;
        text-align: center;
        padding: 15px 30px;
    }

    .projects-badge {
        font-size: 11px;
        padding: 8px 16px;
        margin-bottom: 16px;
    }

    .projects-title {
        font-size: 32px;
    }

    .projects-slider-wrapper {
        height: 340px;
    }

    .project-slide {
        width: 85%;
    }

    .project-slide.prev,
    .project-slide.next {
        opacity: 0;
        pointer-events: none;
    }

    .project-slide-title {
        font-size: 20px;
    }

    .project-slide-tag {
        font-size: 12px;
    }

    .projects-range-track {
        width: 180px;
    }

    .del-gallery-section {
        padding: 60px 0 80px 0;
    }

    .gallery-bg-title {
        font-size: 100px;
        top: 45%;
    }

    .del-gallery-section-quote-line {
        font-size: 19px;
    }


    .gallery-rows-container {
        gap: 15px;
    }

    .gallery-track {
        gap: 15px;
    }

    .gallery-item {
        border-radius: 5px;
    }

    .gallery-item.size-sm {
        width: 130px;
        height: 100px;
    }

    .gallery-item.size-md {
        width: 190px;
        height: 140px;
    }

    .gallery-item.size-lg {
        width: 250px;
        height: 180px;
    }

    .del-articles-section {
        padding: 0px 0 70px 0;
    }

    .del-articles-section {
        padding: 60px 0 70px 0;
    }

    .articles-container {
        padding: 0 16px;
    }

    .articles-title {
        font-size: 32px;
    }

    .articles-badge {
        font-size: 11px;
    }

    .articles-grid {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        margin-bottom: 40px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .articles-grid::-webkit-scrollbar {
        display: none;
    }

    .article-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    .article-card-title {
        font-size: 18px !important;
    }

    .btn-articles-view {
        width: 100%;
        text-align: center;
        padding: 16px 30px;
    }

    .footer-container {
        padding: 0 16px;
    }

    .footer-main {
        padding: 60px 0 40px 0;
    }

    .footer-main .footer-container {
        display: flex;
        flex-wrap: wrap;
        gap: 40px 20px;
    }

    .footer-brand-col {
        flex: 0 0 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .footer-main .footer-col:not(.footer-brand-col) {
        flex: 0 0 calc(50% - 10px);
    }

    .footer-col {
        padding-right: 0;

    }

    .footer-brand-col {
        flex: unset;
        width: 100%;
    }

    .footer-logo {
        height: 110px;
    }

    .footer-col-title {
        font-size: 15px;
    }

    .footer-badges {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-badge-img {
        height: 60px;
    }

    .footer-bottom-bar .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-legal-links a {
        font-size: 12px;
    }

    .footer-col:last-child {
        flex: 0 0 100%;
    }

    .footer-col:last-child .footer-location-block {
        margin-bottom: 0;
    }

    /* Location section full width */
    .footer-col:last-child {
        flex: 0 0 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(190px, 1fr));
        column-gap: 24px;
        row-gap: 20px;
    }

    /* Location heading */
    .footer-col:last-child .footer-col-title {
        grid-column: 1 / -1;
        margin-bottom: 0;
    }

    /* Individual location blocks */
    .footer-col:last-child .footer-location-block {
        min-width: 0;
        margin: 0;
    }
    .resi-hero-top {
        padding: 85px 16px 110px 16px !important;
    }

    .resi-hero-title {
        font-size: 34px;
        letter-spacing: 0;
        padding-top: 15px;
        margin-top: 0;
    }

    .resi-hero-banner-wrap {
        max-width: 100%;
        margin-top: -55px;
        padding: 0 12px;
    }

    .resi-hero-banner-img {
        border-radius: 12px;
    }

    .resi-hero-content {
        padding: 40px 16px 50px 16px;
    }

    .resi-hero-sub-title {
        font-size: 40px;
        text-align: left;

    }

    .resi-hero-desc {
        font-size: 18px;
        text-align: left;
    }

    .btn-resi-quote {
        font-size: 16px;
        letter-spacing: 1.2px;
        padding: 14px 20px 14px 28px;
        gap: 10px;
    }

    .btn-resi-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .resi-built-container {
        flex-direction: column;
    }
    .resi-built-left {
        min-height: 280px;
    }
    .resi-built-right {
        padding: 50px 20px;
    }
    .resi-built-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .resi-built-desc {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    .resi-concrete-section {
        padding: 60px 16px;
    }
    .resi-concrete-heading {
        font-size: 40px;
        margin-bottom: 30px;
        text-align: left;
    }
    .resi-concrete-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .resi-concrete-card {
        padding: 30px 20px;
        border-radius: 16px;
    }
    .resi-concrete-card-title {
        font-size: 26px;
    }
    .resi-concrete-card-desc {
        font-size: 18px;
    }
 .resi-concrete-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .resi-concrete-grid::-webkit-scrollbar {
        display: none;
    }

    .resi-concrete-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }
    .resi-home-owners {
        padding: 60px 16px;
    }

    .resi-home-owners-heading,
    .resi-estimate-heading
   {
        font-size: 40px;
        margin-bottom: 40px;
        text-align: left;
    }
     .resi-cta-heading {
        font-size: 40px;
     }
    .resi-home-owners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .resi-home-owners-card {
        padding: 30px 20px;
    }
    .resi-home-owners-card-title {
        font-size: 24px;
    }
    .resi-estimate {
        padding: 60px 16px;
    }
    .resi-estimate-subtext {
        font-size: 18px;
        margin-bottom: 40px;
        text-align: left;
    }
    .resi-calc-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }
    .resi-calc-header {
        padding: 20px;
    }
    .resi-calc-header h3 {
        font-size: 20px;
    }
    .resi-calc-body {
         padding: 30px 20px;
    }
    .resi-calc-btn {
        margin: 0 0px 0px 0px;
    }
    .resi-estimate-help h3 {
        font-size: 40px;
    }
    .resi-estimate-help p {
        font-size: 18px;
    }
    .resi-cta {
        padding: 60px 16px;
    }
    .resi-cta-subtext {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .resi-cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
    .btn-resi-cta-primary,
    .btn-resi-cta-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: space-between;
    }
    .com-project-section {
        padding: 60px 16px;
    }
    .com-project-heading {
        font-size: 32px;
        margin-bottom: 30px;
        text-align: left;
    }
    .com-project-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .com-project-card {
        padding: 24px 12px;
        border-radius: 12px;
    }
    .com-project-card-title {
        font-size: 15px;
    }
    .com-project-icon {
        height: 50px;
    }
    .com-project-icon-wrap {
        height: 55px;
        margin-bottom: 15px;
    }
    .gallery-hero-section {
        min-height: 25vh;
        padding: 40px 16px;
    }
    .gallery-hero-title {
        font-size: 36px;
    }
    .del-gallery-photos {
        padding: 40px 16px;
    }
    .gallery-photos-container {
        gap: 24px;
    }
    .gallery-group {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 16px;
    }
    .gallery-big-item, .gallery-fullwidth-item {
        height: 250px;
    }
    .gallery-small-group {
        display: flex;
        flex-direction: row;
        grid-template-columns: none;
        grid-template-rows: none;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        height: 140px;
        padding-bottom: 5px;
        scrollbar-width: none;
    }
    .gallery-small-group::-webkit-scrollbar {
        display: none;
    }
    .gallery-small-item {
        flex: 0 0 65%;
        scroll-snap-align: start;
        height: 100%;
    }
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 28px;
    }
    .lightbox-arrow {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    .lightbox-prev {
        left: 15px;
    }
    .lightbox-next {
        right: 15px;
    }
    .lightbox-content {
        max-width: 90%;
    }
    /* Hide overlay and text on mobile slideshow */
    .gallery-slide-overlay,
    .gallery-slide-content {
        display: none;
    }
    .about-us-container {
        flex-direction: column;
    }
    .about-us-intro-left,
    .about-us-intro-right {
        min-height: 250px;
    }
    .about-us-intro-right {
        padding: 40px 16px;
    }
    .about-us-lower-intro .about-us-intro-left {
        padding: 40px 16px;
    }
    .about-us-intro-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .about-us-intro-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    .about-us-intro-text.highlight {
        font-size: 15px;
    }
    .about-us-intro-left .about-us-intro-img,
    .about-us-intro-right .about-us-intro-img {
        border-radius: 12px;
        padding: 0 8px;
    }
    .about-us-banner-text {
        font-size: 24px;
        padding: 0 16px;
    }
    .about-us-full-banner {
        height: 280px;
    }
    .contact-us-section {
        padding: 50px 0;
    }
    .contact-us-container {
        padding: 0 16px;
    }
    .contact-top-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }
    .contact-left-media {
        min-height: 250px;
        border-radius: 20px;
    }
    .contact-logo-overlay {
        padding: 20px;
    }
    .contact-logo-img {
        width: 80%;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 15px;
        padding: 14px 18px;
    }
    .form-group.full-width {
        margin-bottom: 25px;
    }
    .contact-submit-btn {
        /* width: 100%; */
        font-size: 16px;
        padding: 10px 10px 10px 24px;
    }
    .arrow-circle-white {
        width: 38px;
        height: 38px;
    }
    .contact-boxes-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    .contact-info-box {
        padding: 24px;
        border-radius: 16px;
    }
    .box-title {
        font-size: 28px;
    }
    .box-phone-link {
        font-size: 24px;
    }
    .contact-map-wrap {
        margin-bottom: -50px;
    }
    .contact-map-wrap iframe {
        height: 350px;
    }
   .contact-left-media{
    display: none;
   }
   .contact-boxes-row {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.contact-boxes-row::-webkit-scrollbar {
    display: none;
}

.contact-info-box {
    flex: 0 0 90%;
    scroll-snap-align: start;
}
    .privacy-policy-section {
        padding: 50px 0;
    }
    .privacy-policy-container {
        padding: 0 16px;
    }
    .privacy-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .privacy-subheading {
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .privacy-policy-container p,
    .privacy-policy-container li {
        font-size: 14px;
        line-height: 1.7;
    }
    .contact-details-list {
        padding: 20px;
    }
    .careers-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 16px;
    }
    .careers-sidebar {
        flex: none;
        width: 100%;
        position: relative;
        top: 0;
    }
    .filter-desktop-list {
        display: none;
    }
    .filter-mobile-dropdown {
        display: flex;
    }
    .careers-sidebar-promo {
        padding-top: 20px;
    }
    .job-card {
        padding: 24px 20px;
        border-radius: 16px;
    }
    .job-card .job-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .job-tags {
        margin-bottom: 15px;
    }
    .job-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .btn-see-position {
        width: 100%;
        justify-content: space-between;
        font-size: 14px;
        padding: 10px 20px;
    }
    .application-form-container {
        padding: 0 16px;
    }
    .form-section-block {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    .form-section-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .form-row-grid,
    .form-row-grid.grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    .eligibility-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 15px 0;
    }
    .radio-options {
        gap: 30px;
    }
    .resume-dropzone {
        padding: 24px 16px;
    }
    .signature-row-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .signature-pad-wrap {
        height: 120px;
    }
    .date-field-wrap {
        margin-top: 0;
    }
    .career-view-container {
        padding: 0 16px;
    }
    .career-view-header {
        margin-bottom: 40px;
    }
    .career-view-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }
    .career-view-body {
        gap: 30px;
    }
    .detail-heading {
        font-size: 20px;
    }
    .career-view-body p,
    .detail-bullets-list li {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* ---- Project View Page Styling ---- */
.project-child-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 35px;
}

.project-view-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    width: 100%;
    cursor: pointer;
}

.project-card-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    /* border-radius: 12px; */
    background-color: #f1f5f9;
}

.project-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card-hover-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.project-card-arrow-circle {
    width: 90px;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card-arrow-circle i {
    font-size: 28px;
    color: var(--primary-color-btn, #742a2c);
}

/* Hover effects */
.project-view-card:hover .project-card-img {
    transform: scale(1.04);
}

.project-view-card:hover .project-card-hover-overlay {
    opacity: 1;
}

.project-view-card:hover .project-card-arrow-circle {
    transform: scale(1);
}

.project-card-info {
    padding: 16px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-card-category {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

.project-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    margin: 6px 0 0 0;
    letter-spacing: -0.5px;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}

.project-view-card:hover .project-card-title {
    color: var(--primary-color-btn, #742a2c);
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .project-child-section {
        gap: 30px;
    }
    .project-card-arrow-circle {
        width: 80px;
        height: 80px;
    }
    .project-card-arrow-circle i {
        font-size: 24px;
    }
    .project-card-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .project-child-section {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .project-card-arrow-circle {
        width: 70px;
        height: 70px;
    }
    .project-card-arrow-circle i {
        font-size: 20px;
    }
    .project-card-title {
        font-size: 20px;
    }
}

/* ---- Project Nested Page Styling ---- */
.project-nested-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 24px;
    width: 100%;
}

.nested-meta-container {
    display: flex;
    justify-content: space-between;
    padding-bottom: 24px;
    margin-bottom: 40px;
    border-bottom: 1.5px solid #eaeaea;
    width: 100%;
}

.nested-meta-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.nested-meta-label {
    font-size: 14px;
    color: #8a8a8a;
    font-weight: 500;
    font-family: var(--font-body);
}

.nested-meta-value {
    font-size: 22px;
    font-weight: 400;
    color: #212529;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.nested-slider-container {
    width: 100%;
    margin-bottom: 60px;
}

.nested-slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 24px;
}

.nested-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.nested-slide.active {
    opacity: 1;
    z-index: 2;
}

.nested-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nested-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 120px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    border: none;
    outline: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nested-slider-nav.nav-prev {
    left: 0;
    border-radius: 0 100px 100px 0;
    padding-right: 15px;
}

.nested-slider-nav.nav-next {
    right: 0;
    border-radius: 100px 0 0 100px;
    padding-left: 15px;
}

.nested-slider-nav i {
    font-size: 24px;
    color: var(--primary-color-btn, #742a2c);
    transition: transform 0.3s ease;
}

.nested-slider-nav.nav-prev:hover i {
    transform: scale(1.15) translateX(-3px);
}

.nested-slider-nav.nav-next:hover i {
    transform: scale(1.15) translateX(3px);
}

.nested-slider-thumbnails {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.nested-thumbnail {
    width: 100px;
    height: 62px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.nested-thumbnail.active {
    border-color: var(--primary-color-btn, #742a2c);
    opacity: 1;
}

.nested-thumbnail:hover {
    opacity: 1;
}

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

/* Blogs Grid Section */
.del-blogs {
    background: #ffffff;
    padding: 120px 0;
    width: 100%;
}

.blogs-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 30px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    outline: none;
}

.blog-card-img-wrap {
    width: 100%;
    aspect-ratio: 1.5;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f0f0f0;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.04);
}

.blog-card-date {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: rgba(17, 17, 17, 0.6);
    margin-bottom: 8px;
    display: block;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 500;
    color: #111111;
    line-height: 1.25;
    margin: 0;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--primary-color-btn, #742A2C);
}

/* Blog View Details Section */
.del-blog-view {
    background: #ffffff;
    padding: 100px 0;
    width: 100%;
}

.blog-view-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.blog-view-main-title {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 35px;
    line-height: 1.2;
}

.blog-view-paragraph {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: #4D4D52;
    margin-bottom: 25px;
}

.blog-view-blockquote {
    background-color: rgba(116, 42, 44, 0.06);
    border-left: 5px solid var(--primary-color-btn, #742A2C);
    padding: 30px 40px;
    border-radius: 0 16px 16px 0;
    margin: 40px 0;
}

.blog-view-blockquote .quote-text {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 19px;
    color: #111111;
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-view-blockquote .quote-author {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-color-btn, #742A2C);
    font-style: normal;
    display: block;
}

.blog-view-split-quote {
    display: flex;
    align-items: stretch;
    gap: 18px;
    margin: 50px 0;
}

.split-quote-img-wrap {
    flex: 1;
    /* border-radius: 16px; */
    overflow: hidden;
    height: auto;
    min-height: 340px;
}

.split-quote-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-quote-card {
    flex: 1.3;
    background: #f3f4f6;
    padding: 45px;
    /* border-radius: 16px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-quote-text {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 25px;
    font-style: normal;
}

.split-quote-author {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 22px;
    color: #111111;
    font-style: normal;
    display: block;
}

.blog-view-subheading {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 500;
    color: #111111;
    line-height: 1.3;
    margin: 45px 0 25px 0;
}

.blog-view-double-img {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 50px 0 20px 0;
}

.double-img-col {
    overflow: hidden;
    width: 100%;
}

.double-img-col:first-child {
    height: 620px;
}

.double-img-col:last-child {
    height: 520px;
}

.double-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.double-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-view-caption {
    font-family: var(--font-body);
    font-size: 14px;
    color: #4D4D52;
    margin-top: 12px;
    margin-bottom: 10px;
    text-align: left;
    max-width: 580px;
}

.blog-view-section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: #111111;
    margin: 55px 0 30px 0;
}

.blog-view-list {
    list-style-type:circle;
    padding: 0;
    margin: 0 0 60px 0;
    color: #4D4D52;
    font-size: 18px;
    line-height: 1.8;
}

.blog-view-list-item {
    margin-bottom: 35px;
}

.blog-view-list-item:last-child {
    margin-bottom: 0;
}

.list-item-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-color-btn, #742A2C);
    display: block;
    margin-bottom: 10px;
}



/* Delivery Quote Form Section */
.mix-form-section {
    background: #fbfbfc;
    padding: 140px 0;
    width: 100%;
}

.quote-form-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.quote-form-header {
    text-align: center;
    margin-bottom: 60px;
}

.quote-form-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color-btn, #742A2C);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.quote-form-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 500;
    color: #111111;
    letter-spacing: -1.5px;
}

/* Step progress bar */
.step-indicator-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.35;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-indicator.active {
    opacity: 1;
}

.step-indicator.completed {
    opacity: 0.85;
}

.step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: #111111;
    transition: all 0.4s;
}

.step-indicator.active .step-num {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.step-indicator.completed .step-num {
    background: var(--primary-color-btn, #742A2C);
    color: #ffffff;
    border-color: var(--primary-color-btn, #742A2C);
}

.step-label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: #111111;
}

.step-line {
    width: 80px;
    height: 2px;
    background: #e5e7eb;
    transition: background 0.4s;
}

.step-indicator.completed + .step-line {
    background: var(--primary-color-btn, #742A2C);
}

/* Form structure */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: formFadeIn 0.5s ease;
}

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

.form-section-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 500;
    color: #111111;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 12px;
    margin: 45px 0 25px 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.span-2 {
    grid-column: span 2;
}

.form-group label,
.product-field label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
}

.form-group input,
.form-group select,
.form-group textarea,
.product-field input,
.product-field select {
    font-family: var(--font-body);
    font-size: 16px;
    color: #111111;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 14px 18px;
    outline: none;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.product-field input:focus,
.product-field select:focus {
    border-color: var(--primary-color-btn, #742A2C);
    box-shadow: 0 0 0 4px rgba(116, 42, 44, 0.08);
}

.form-group input.input-error,
.form-group select.input-error,
.product-field input.input-error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.form-group select,
.product-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 15px;
    padding-right: 45px;
}

.input-helper {
    font-family: var(--font-body);
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}

/* Form navigation buttons */
.form-navigation {
    display: flex;
    justify-content: flex-end;
    margin-top: 50px;
}

.form-navigation.split-nav {
    justify-content: space-between;
}

.btn-step-next,
.btn-step-submit {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--primary-color-btn, #742A2C);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 14px 36px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-step-next:hover,
.btn-step-submit:hover {
    background: var(--primary-hover, #8C3335);
    transform: translateY(-2px);
}

.btn-step-next:active,
.btn-step-submit:active {
    transform: translateY(0);
}

.btn-step-back {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    color: #111111;
    border: 1px solid #d1d5db;
    border-radius: 30px;
    padding: 14px 36px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-step-back:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: #111111;
}

.form-navigation .arrow-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.btn-step-back .arrow-circle {
    background: rgba(0, 0, 0, 0.05);
}

.btn-step-next:hover .arrow-circle {
    transform: translateX(4px);
}

.btn-step-back:hover .arrow-circle {
    transform: translateX(-4px);
}

.btn-step-submit:hover .arrow-circle {
    transform: scale(1.1);
}

/* Products Section (Supplies / Reinforcing) */
.reinforcing-products-section {
    animation: formFadeIn 0.5s ease;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.product-card-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.product-img-wrap {
    flex: 0 0 160px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1.25;
    background-color: #f9fafb;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-details {
    flex: 1;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 20px;
    border-bottom: 1px dashed #e5e7eb;
    padding-bottom: 8px;
}

.product-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
}

.product-fields-grid.rebar-fields {
    grid-template-columns: repeat(3, 1fr);
}

.product-field {
    display: flex;
    flex-direction: column;
}
@media (max-width: 991px) {
    .nested-meta-value {
        font-size: 18px;
    }
    .nested-slider-wrapper {
        border-radius: 16px;
    }
    .del-blogs {
        padding: 80px 0;
    }
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
    .del-blog-view {
        padding: 80px 0;
    }
    .blog-view-main-title {
        font-size: 38px;
        margin-bottom: 25px;
    }
    .blog-view-split-quote {
        flex-direction: column;
        gap: 30px;
    }
    .split-quote-img-wrap {
        min-height: 300px;
    }
    .mix-form-section {
        padding: 100px 0;
    }
    .quote-form-title {
        font-size: 42px;
    }
    .product-card-item {
        flex-direction: column;
        gap: 20px;
    }
    .product-img-wrap {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 1.5;
    }
}

@media (max-width: 768px) {
    .nested-meta-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
    .nested-slider-nav {
        width: 50px;
        height: 100px;
    }
    .nested-slider-nav i {
        font-size: 20px;
    }
    .blogs-container {
        padding: 0 24px;
    }
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 36px 0;
    }
    .blog-card-title {
        font-size: 22px;
    }
    .blog-view-container {
        padding: 0 24px;
    }
    .blog-view-main-title {
        font-size: 32px;
    }
    .blog-view-subheading {
        font-size: 24px;
    }
    .blog-view-double-img {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .double-img-col {
        height: auto !important;
        aspect-ratio: 1.5;
    }
    .blog-view-blockquote {
        padding: 24px 30px;
    }
    .blog-view-blockquote .quote-text {
        font-size: 17px;
    }
    .split-quote-card {
        padding: 30px;
    }
    .blog-view-section-title {
        font-size: 26px;
    }
    .list-item-title {
        font-size: 20px;
    }
    .quote-form-wrapper {
        padding: 0 24px;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .form-group.span-2 {
        grid-column: span 1;
    }
    .product-fields-grid,
    .product-fields-grid.rebar-fields {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .step-indicator-wrapper {
        gap: 15px;
    }
    .step-line {
        width: 40px;
    }
    .step-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nested-meta-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .nested-slider-nav {
        width: 45px;
        height: 90px;
    }
    .nested-slider-nav i {
        font-size: 16px;
    }
    .nested-slider-wrapper {
        border-radius: 12px;
        aspect-ratio: 16 / 10;
    }
    .nested-thumbnail {
        width: 80px;
        height: 50px;
    }
    .del-blogs {
        padding: 60px 0;
    }
    .del-blog-view {
        padding: 60px 0;
    }
    .blog-view-main-title {
        font-size: 28px;
    }
    .blog-view-subheading {
        font-size: 22px;
    }
    .blog-view-section-title {
        font-size: 24px;
    }
    .mix-form-section {
        padding: 80px 0;
    }
    .quote-form-title {
        font-size: 34px;
    }
    .step-label {
        display: none;
    }
    .step-line {
        width: 60px;
    }
    .btn-step-next,
    .btn-step-submit,
    .btn-step-back {
        padding: 12px 24px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
    .form-navigation.split-nav {
        flex-direction: column-reverse;
        gap: 15px;
    }
    .ready-mix-specifications {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ready-mix-specifications table {
        width: 100%;
        min-width: 650px;
    }

    .ready-mix-specifications::-webkit-scrollbar {
        height: 4px;
    }

    .ready-mix-specifications::-webkit-scrollbar-thumb {
        background: rgba(116, 42, 44, 0.4);
        border-radius: 10px;
    }
}

.del-weather-section {
    width: 100%;
    padding: 80px 40px;
    background: #f4f5f6;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.weather-container {
    width: 100%;
    max-width: 1630px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.weather-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.weather-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #111111;
    border: 2px solid rgba(0, 0, 0, 0.15);
    padding: 10px 20px;
    border-radius: 999px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.03);
    margin-bottom: 15px;
}

.weather-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    color: #111111;
}

.weather-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.weather-current-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    color: #111111;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.weather-current-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color-btn);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.weather-current-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.weather-temp-large {
    font-size: 72px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1;
    color: #111111;
}

.weather-current-icon-wrap {
    font-size: 80px;
    color: var(--primary-color-btn);
}


.weather-current-desc {
    font-size: 20px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 30px;
}

.weather-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 25px;
}

.weather-detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.weather-detail-label {
    font-size: 11px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.weather-detail-value {
    font-size: 15px;
    font-weight: 600;
    color: #111111;
}

.weather-forecast-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

.weather-forecast-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    color: #111111;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.weather-forecast-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color-btn);
    background: rgba(116, 42, 44, 0.04);
}

.forecast-day {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: #333333;
}

.forecast-icon {
    font-size: 36px;
    color: #222222;
    margin: 15px 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.weather-forecast-card:hover .forecast-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--primary-color-btn);
}

.forecast-temps {
    display: flex;
    gap: 8px;
    font-size: 14px;
}

.forecast-temp-max {
    font-weight: 700;
    color: #111111;
}

.forecast-temp-min {
    color: #666666;
}

/* Media Queries for Weather Section */
@media (max-width: 1300px) {
    .weather-forecast-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

@media (max-width: 991px) {
    .weather-grid {
        grid-template-columns: 1fr;
    }
    .weather-forecast-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .del-weather-section {
        padding: 60px 24px;
    }
    .weather-forecast-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .weather-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .weather-forecast-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .weather-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .weather-current-main {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }
    .weather-temp-large {
        font-size: 56px;
    }
    .weather-current-icon-wrap {
font-size: 50px !important;
    }
    .weather-badge{
        font-size: 11px;
    }
}

/* Weather Condition Theme Classes for Forecast Cards */
.weather-card-clear {
    background: rgba(254, 243, 199, 0.6) !important;
    border-color: rgba(251, 191, 36, 0.3) !important;
}
.weather-card-clear:hover {
    background: rgba(254, 243, 199, 0.8) !important;
    border-color: #fbbf24 !important;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.12);
}

.weather-card-cloudy {
    background: rgba(241, 245, 249, 0.7) !important;
    border-color: rgba(203, 213, 225, 0.5) !important;
}
.weather-card-cloudy:hover {
    background: rgba(241, 245, 249, 0.9) !important;
    border-color: #94a3b8 !important;
    box-shadow: 0 8px 20px rgba(148, 163, 184, 0.12);
}

.weather-card-rainy {
    background: rgba(224, 242, 254, 0.6) !important;
    border-color: rgba(186, 230, 253, 0.5) !important;
}
.weather-card-rainy:hover {
    background: rgba(224, 242, 254, 0.8) !important;
    border-color: #38bdf8 !important;
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.12);
}

.weather-card-stormy {
    background: rgba(243, 232, 255, 0.6) !important;
    border-color: rgba(233, 213, 255, 0.5) !important;
}
.weather-card-stormy:hover {
    background: rgba(243, 232, 255, 0.8) !important;
    border-color: #c084fc !important;
    box-shadow: 0 8px 20px rgba(192, 132, 252, 0.12);
}

.weather-card-snowy {
    background: rgba(238, 242, 255, 0.6) !important;
    border-color: rgba(224, 231, 255, 0.5) !important;
}
.weather-card-snowy:hover {
    background: rgba(238, 242, 255, 0.8) !important;
    border-color: #818cf8 !important;
    box-shadow: 0 8px 20px rgba(129, 140, 248, 0.12);
}

.weather-forecast-card .forecast-desc {
    font-size: 12px;
    font-weight: 500;
    color: #444444;
    margin: 8px 0;
    line-height: 1.2;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Nested Page Thumbnail Slider --- */
.nested-thumbnails-outer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
}

.nested-slider-thumbnails-viewport {
    overflow: hidden;
    width: calc(100px * 10 + 15px * 9); /* Max 10 visible thumbnails */
    max-width: 100%;
}

.nested-slider-thumbnails {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 0 !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: max-content;
}

.nested-thumbnail {
    flex: 0 0 100px !important;
    height: 62px !important;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.thumb-nav {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--primary-color-btn, #742a2c);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 5;
    flex-shrink: 0;
}

.thumb-nav:hover {
    background: var(--primary-color-btn, #742a2c);
    color: #ffffff;
    border-color: var(--primary-color-btn, #742a2c);
}

.thumb-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Tablet & Mobile Breakpoint for Thumbnails */
@media (max-width: 1199px) {
    .nested-slider-thumbnails-viewport {
        width: calc(100px * 6 + 15px * 5); /* Max 6 visible on smaller screens */
    }
}

@media (max-width: 768px) {
    .thumb-nav {
        display: none !important; /* Hide chevrons on mobile */
    }
    
    .nested-slider-thumbnails-viewport {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        width: calc(80px * 3 + 10px * 2); /* Exactly 3 thumbnails visible */
        margin: 0 auto;
    }
    
    .nested-slider-thumbnails-viewport::-webkit-scrollbar {
        display: none;
    }
    
    .nested-slider-thumbnails {
        gap: 10px;
        transform: none !important; /* Disable translate scroll on mobile */
        padding: 0 10px;
    }
    
    .nested-thumbnail {
        flex: 0 0 80px !important;
        height: 50px !important;
        scroll-snap-align: center;
    }
}

/* Footer Quick Links Split Columns */
.footer-quick-links-split {
    display: flex;
    gap: 30px;
}

.footer-quick-links-split .footer-nav-list {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .footer-quick-links-split {
        flex-direction: column;
        gap: 0;
    }
}

/* ========================================================= Form thank-you modal */
body.thank-you-modal-open {
    overflow: hidden;
}

.thank-you-modal {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: grid;
    place-items: center;
    padding: 24px;
    visibility: hidden;
    pointer-events: none;
}

.thank-you-modal.is-visible {
    visibility: visible;
    pointer-events: auto;
}

.thank-you-modal-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 35%, rgba(130, 31, 36, 0.2), transparent 42%),
        rgba(12, 15, 18, 0.76);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.thank-you-modal.is-visible .thank-you-modal-backdrop {
    opacity: 1;
}

.thank-you-modal-card {
    position: relative;
    width: min(100%, 560px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 64px 54px 48px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 240, 0.98));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35), 0 8px 24px rgba(92, 22, 25, 0.16);
    text-align: center;
    opacity: 0;
    transform: translateY(28px) scale(0.94);
    transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.thank-you-modal.is-visible .thank-you-modal-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.thank-you-accent {
    position: absolute;
    top: 0;
    left: 50%;
    width: 130px;
    height: 5px;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(90deg, #5b171b, #a23d3f, #5b171b);
    transform: translateX(-50%);
    box-shadow: 0 5px 16px rgba(116, 42, 44, 0.28);
}

.thank-you-close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(24, 24, 24, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    color: #37312f;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.thank-you-close:hover,
.thank-you-close:focus-visible {
    border-color: #742a2c;
    background: #742a2c;
    color: #fff;
    transform: rotate(8deg);
    outline: none;
}

.thank-you-icon-wrap {
    position: relative;
    display: grid;
    width: 112px;
    height: 112px;
    margin: 0 auto 26px;
    place-items: center;
}

.thank-you-icon-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(116, 42, 44, 0.16);
    border-radius: 50%;
}

.thank-you-icon-ring-one {
    animation: thank-you-ring 2.2s ease-out infinite;
}

.thank-you-icon-ring-two {
    inset: 11px;
    animation: thank-you-ring 2.2s 0.35s ease-out infinite;
}

.thank-you-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #8d3437, #601b1f);
    box-shadow: 0 14px 30px rgba(116, 42, 44, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 30px;
}

.thank-you-modal.is-visible .thank-you-icon {
    animation: thank-you-check-in 0.62s 0.16s both cubic-bezier(0.16, 1, 0.3, 1);
}

.thank-you-eyebrow {
    margin: 0 0 10px;
    color: #8b3033;
    font-family: var(--font-body, Arial, sans-serif);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.2px;
}

.thank-you-title {
    margin: 0;
    color: #191716;
    font-family: var(--font-heading, Georgia, serif);
    font-size: clamp(38px, 6vw, 54px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.thank-you-message {
    max-width: 430px;
    margin: 20px auto 24px;
    color: #5d5754;
    font-family: var(--font-body, Arial, sans-serif);
    font-size: 16px;
    line-height: 1.7;
}

.thank-you-follow-up {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0 0 28px;
    padding: 16px 18px;
    border: 1px solid rgba(116, 42, 44, 0.11);
    border-radius: 14px;
    background: rgba(116, 42, 44, 0.055);
    color: #493f3c;
    font-family: var(--font-body, Arial, sans-serif);
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
}

.thank-you-follow-up-icon {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 5px 14px rgba(40, 26, 23, 0.09);
    color: #7c292c;
    font-size: 15px;
}

.thank-you-done {
    display: inline-flex;
    min-height: 54px;
    padding: 7px 7px 7px 25px;
    align-items: center;
    gap: 18px;
    border: 0;
    border-radius: 999px;
    background: #742a2c;
    box-shadow: 0 12px 24px rgba(116, 42, 44, 0.22);
    color: #fff;
    font-family: var(--font-body, Arial, sans-serif);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.1px;
    cursor: pointer;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.thank-you-done:hover,
.thank-you-done:focus-visible {
    background: #581b1e;
    box-shadow: 0 15px 30px rgba(116, 42, 44, 0.3);
    transform: translateY(-2px);
    outline: none;
}

.thank-you-done-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #742a2c;
    font-size: 14px;
    transition: transform 0.25s ease;
}

.thank-you-done:hover .thank-you-done-icon,
.thank-you-done:focus-visible .thank-you-done-icon {
    transform: translateX(2px);
}

@keyframes thank-you-ring {
    0% { opacity: 0.7; transform: scale(0.72); }
    70%, 100% { opacity: 0; transform: scale(1.13); }
}

@keyframes thank-you-check-in {
    0% { opacity: 0; transform: scale(0.45) rotate(-18deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}

@media (max-width: 600px) {
    .thank-you-modal {
        padding: 16px;
    }

    .thank-you-modal-card {
        max-height: calc(100vh - 32px);
        padding: 54px 24px 32px;
        border-radius: 22px;
    }

    .thank-you-close {
        top: 14px;
        right: 14px;
    }

    .thank-you-icon-wrap {
        width: 96px;
        height: 96px;
        margin-bottom: 22px;
    }

    .thank-you-icon {
        width: 64px;
        height: 64px;
        font-size: 27px;
    }

    .thank-you-title {
        font-size: 38px;
    }

    .thank-you-message {
        margin-top: 16px;
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .thank-you-modal-backdrop,
    .thank-you-modal-card,
    .thank-you-icon,
    .thank-you-icon-ring {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
}

/* Projects page: remove desktop overlap whitespace on phones/tablets. */
@media (max-width: 768px) {
    .projects-categories-section {
        padding-top: 32px;
        padding-bottom: 88px;
    }

    .projects-categories-section .wwa-container {
        padding-inline: 16px;
    }

    .projects-categories-section .wwa-content {
        gap: 0;
        margin-bottom: 24px;
    }

    .projects-categories-section .wwa-badge {
        margin-bottom: 0;
    }

    .projects-categories-section .wwa-images-wrapper {
        gap: 16px;
    }

    .projects-categories-section .wwa-img-card {
        min-height: 320px;
    }

    .projects-categories-section + .resi-cta {
        margin-top: -64px;
    }

    .projects-categories-section + .resi-cta .resi-cta-container {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .projects-categories-section {
        padding-top: 28px;
        padding-bottom: 76px;
    }

    .projects-categories-section .wwa-content {
        margin-bottom: 20px;
    }

    .projects-categories-section .wwa-img-overlay {
        padding: 24px 24px 20px;
    }

    .projects-categories-section .wwa-img-body {
        gap: 9px;
        margin-bottom: 14px;
    }

    .projects-categories-section + .resi-cta {
        margin-top: -56px;
    }
}


    
