/* EVICK Industrial Doors - Demon-Style Theme */
/* Black, White &amp; Red - Multi-Page Structure */

/* ===== CSS VARIABLES ===== */
:root {
    --black: #000000;
    --black-light: #0d0d0d;
    --black-lighter: #1a1a1a;
    --white: #ffffff;
    --white-off: #f0f0f0;
    --red: #dc0000;
    --red-dark: #b30000;
    --red-light: #ff1a1a;
    --gray-dark: #222222;
    --gray: #666666;
    --gray-light: #999999;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-red: 0 20px 60px rgba(220, 0, 0, 0.3);
}

/* ===== RESET &amp; BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body{
    width:100%;
    overflow-x:hidden;
}

*{
    box-sizing:border-box;
}

.hero,
.section,
.footer{
    overflow-x:hidden;
}

/* The desktop header must allow dropdowns to extend below it. */
.header{
    overflow:visible;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 700; }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding:0 24px;
}

.container-narrow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.section {
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-white { color: var(--white); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--red);
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: var(--red-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--black);
}

.btn-white:hover {
    background-color: var(--red);
    color: var(--white);
}

/* ===== HEADER &amp; NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, transparent 100%);
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--white);
}

.logo-text span {
    color: var(--red);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--red);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

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

/* Dropdown Menu Styles */
.nav-links li {
    position: relative;
}

.nav-links .has-dropdown > a {
    padding-right: 1.5rem;
}

.nav-links .has-dropdown > a::before {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    transition: var(--transition);
}

.nav-links .has-dropdown:hover > a::before {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -1rem;
    min-width: 220px;
    background-color: rgba(0, 0, 0, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-top: 2px solid var(--red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 2rem;
}

.dropdown-menu a::after {
    display: none;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-phone i {
    color: var(--red);
    font-size: 1rem;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding-bottom: clamp(4rem, 10vw, 8rem);
    overflow: hidden;
    border-bottom: 5px solid var(--red);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--red);
    margin-bottom: 2rem;
}

.hero-label::before {
    content: '';
    width: 60px;
    height: 1px;
    background-color: var(--red);
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--red);
}

.hero-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding-top: 10rem;
    padding-bottom: clamp(3rem, 8vw, 5rem);
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.page-header-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.95) 100%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 0, 0, 0.5), transparent);
    z-index: 2;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header h1 span {
    color: var(--red);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--red);
}

.breadcrumb span {
    color: var(--red);
}

/* ===== FEATURED SECTIONS ===== */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.featured-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: var(--black-lighter);
}

.featured-card-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.6);
}

.featured-card:hover .featured-card-image img {
    transform: scale(1.05);
    filter: brightness(0.4);
}

.featured-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
    transform: translateY(20px);
    transition: var(--transition);
}

.featured-card:hover .featured-card-content {
    transform: translateY(0);
}

.featured-card-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.featured-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.featured-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.featured-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

.featured-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-card-link i {
    transition: var(--transition);
}

.featured-card:hover .featured-card-link i {
    transform: translateX(5px);
}

/* ===== ABOUT SECTION ===== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro-image {
    position: relative;
}

.about-intro-image img {
    width: 100%;
    height: auto;
}

.about-intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--red);
    z-index: -1;
}

.about-intro-content h2 {
    margin-bottom: 2rem;
}

.about-intro-content h2 span {
    color: var(--red);
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.feature-block {
    background-color: var(--black);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.feature-block:hover {
    background-color: var(--black-lighter);
    border-bottom-color: var(--red);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--red);
}

.feature-block h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.feature-block p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== PRODUCTS SECTION ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background-color: var(--black-lighter);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--red);
    transform: scaleX(0);
    transition: var(--transition);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    background-color: var(--black-light);
    transform: translateY(-5px);
}

.product-image {
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition);
}

.product-card:hover .product-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* ===== PRODUCT DETAIL ===== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 8rem;
}

.product-gallery-main {
    background-color: var(--black-lighter);
    margin-bottom: 1rem;
}

.product-gallery-main img {
    width: 100%;
    height: auto;
}

.product-info h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.product-info h1 span {
    color: var(--red);
}

.product-info-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--red);
    margin-bottom: 2rem;
}

.product-specs {
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.spec-value {
    font-weight: 600;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--black-lighter);
    padding: 3rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.service-card:hover {
    border-left-color: var(--red);
    background-color: var(--black-light);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    padding: clamp(4rem, 8vw, 6rem) 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-section .btn-white {
    background-color: var(--white);
    color: var(--red);
}

.cta-section .btn-white:hover {
    background-color: var(--black);
    color: var(--white);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-info h2 span {
    color: var(--red);
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background-color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item-content p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-item-content a {
    color: rgba(255, 255, 255, 0.7);
}

.contact-item-content a:hover {
    color: var(--red);
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    background-color: var(--black-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    background-color: var(--black);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* ===== MAP SECTION ===== */
.map-section {
    height: 400px;
    background-color: var(--black-lighter);
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(92%) contrast(83%);
}


/* ===== SLEEK PREMIUM FOOTER ===== */
.footer {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0 2rem;
    background:
        radial-gradient(circle at 92% 0%, rgba(220, 0, 0, .14), transparent 34%),
        radial-gradient(circle at 8% 100%, rgba(220, 0, 0, .07), transparent 28%),
        #050505;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1.8fr) repeat(3, minmax(150px, .75fr));
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
    margin-bottom: 3.5rem;
}

.footer-brand {
    max-width: 520px;
}

.footer-logo {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-brand .logo-text {
    display: none;
}

.footer-brand p {
    max-width: 500px;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, .62);
    font-size: .95rem;
    line-height: 1.75;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    background: rgba(255,255,255,.035);
    color: rgba(255,255,255,.72);
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.social-link:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links h5 {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: .8rem;
    color: #fff;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.footer-links h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    background: var(--red);
}

.footer-links ul {
    display: grid;
    gap: .2rem;
}

.footer-links ul li {
    margin: 0;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .42rem 0;
    color: rgba(255,255,255,.58);
    font-size: .91rem;
    line-height: 1.5;
    transition: color .22s ease, transform .22s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a i {
    width: 16px;
    color: var(--red);
    font-size: .8rem;
}

/* Real accreditation logos: DHF, ADSA, CSCS and CHAS */
.footer-accreditations {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 4vw, 3rem);
    margin: 0 0 2.25rem;
    padding: 1.7rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.018);
}

.footer-accreditations img {
    display: block;
    width: auto;
    max-width: 150px;
    height: 48px;
    object-fit: contain;
    opacity: .82;
    filter: grayscale(100%) brightness(1.25);
    transition: opacity .25s ease, filter .25s ease, transform .25s ease;
}

.footer-accreditations img:hover {
    opacity: 1;
    filter: none;
    transform: translateY(-3px);
}

/* Hide the old text boxes when the upgraded footer is used */
.footer-certifications,
.cert-badge {
    display: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 1.75rem;
    border-top: 0;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.4);
    font-size: .8rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .8rem 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,.42);
    font-size: .8rem;
}

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

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: minmax(280px, 1.4fr) repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 700px;
    }
}

@media (max-width: 760px) {
    .footer {
        padding: 4rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 2.4rem 1.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-logo {
        width: 180px;
    }

    .footer-accreditations {
        justify-content: flex-start;
        gap: 1.3rem 1.8rem;
        padding: 1.4rem 0;
        background: transparent;
    }

    .footer-accreditations img {
        height: 40px;
        max-width: 120px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-accreditations {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
    }

    .footer-accreditations img {
        justify-self: start;
        height: 38px;
    }
}


/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}


/* ===== DESKTOP DROPDOWN FIX ===== */
@media (min-width: 993px) {
    .header,
    .header .container,
    .header-inner,
    .nav-menu,
    .nav-links,
    .nav-links > li {
        overflow: visible;
    }

    .header {
        z-index: 10000;
    }

    .nav-menu,
    .nav-links {
        position: relative;
        z-index: 10001;
    }

    .nav-links .has-dropdown {
        position: relative;
    }

    .nav-links .has-dropdown > .dropdown-menu {
        display: block;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        width: max-content;
        min-width: 250px;
        max-width: 340px;
        max-height: none;
        overflow: visible;
        margin: 0;
        padding: .65rem 0;
        background: rgba(5, 5, 5, .98);
        border-top: 3px solid var(--red);
        box-shadow: 0 18px 45px rgba(0, 0, 0, .55);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(8px);
        transition:
            opacity .2s ease,
            visibility .2s ease,
            transform .2s ease;
        z-index: 10020;
    }

    /* Invisible hover bridge prevents the menu closing across the small gap. */
    .nav-links .has-dropdown > .dropdown-menu::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -12px;
        height: 12px;
    }

    .nav-links .has-dropdown:hover > .dropdown-menu,
    .nav-links .has-dropdown:focus-within > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .dropdown-menu li,
    .dropdown-menu a {
        width: 100%;
    }

    .dropdown-menu a {
        display: block;
        padding: .8rem 1.25rem;
        white-space: nowrap;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a:focus-visible {
        padding-left: 1.5rem;
        background: rgba(255, 255, 255, .07);
        color: #fff;
    }

    /* Keep the Services dropdown inside the right edge on narrower desktops. */
    .nav-links > .has-dropdown:nth-last-of-type(-n+2) > .dropdown-menu {
        left: auto;
        right: 0;
    }
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .products-grid,
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:992px){

    .header{
        overflow:hidden;
    }

    .header-inner{
        min-height:70px;
    }

    .mobile-toggle{
        display:flex;
        z-index:2100;
    }

    .nav-menu{
        position:fixed;
        top:0;
        right:-100%;
        width:85%;
        max-width:360px;
        height:100vh;
        background:#000;

        display:flex;
        flex-direction:column;
        justify-content:flex-start;
        align-items:stretch;

        padding:90px 20px 30px;

        overflow-y:auto;
        overflow-x:hidden;

        box-sizing:border-box;

        transition:right .35s ease;

        z-index:2000;
    }

    .nav-menu.active{
        right:0;
    }

    .nav-links{
        width:100%;
        display:flex;
        flex-direction:column;
        gap:0;
    }

    .nav-links>li{
        width:100%;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .nav-links>li>a{
        display:flex;
        justify-content:space-between;
        align-items:center;
        width:100%;
        padding:16px 0;
        font-size:18px;
    }

    .dropdown-menu{
        position:static;
        display:none;
        opacity:1;
        visibility:visible;
        transform:none;
        background:none;
        border:0;
        box-shadow:none;
        min-width:0;
        padding:0 0 15px;
    }

    .has-dropdown.open>.dropdown-menu{
        display:block;
    }

    .dropdown-menu a{
        display:block;
        padding:12px 20px;
        font-size:16px;
    }

    .nav-cta{
        width:100%;
        display:flex;
        flex-direction:column;
        margin-top:25px;
    }

    .nav-cta .btn,
    .nav-phone{
        width:100%;
        justify-content:center;
    }
}


/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-light);
}

/* Selection */
::selection {
    background-color: var(--red);
    color: var(--white);
}


/* ===== MOBILE UI POLISH — DESKTOP UNCHANGED ===== */
.nav-backdrop{display:none}
@media (max-width:992px){
  :root{--mobile-gutter:18px;--mobile-radius:14px}
  body.menu-open{overscroll-behavior:none}
  .header{height:72px;padding:0;overflow:visible;background:rgba(0,0,0,.94);border-bottom:1px solid rgba(255,255,255,.08);backdrop-filter:blur(16px)}
  .header.scrolled{padding:0}
  .header .container{height:100%;padding-inline:var(--mobile-gutter)}
  .header-inner{height:100%;min-height:72px}
  .logo img{width:138px!important}
  .mobile-toggle{display:inline-flex;position:relative;width:46px;height:46px;padding:0;align-items:center;justify-content:center;gap:5px;border:1px solid rgba(255,255,255,.12);border-radius:12px;background:rgba(255,255,255,.045);z-index:2202}
  .mobile-toggle span{width:22px;height:2px;border-radius:2px}
  .mobile-toggle.active{background:var(--red);border-color:var(--red)}
  .mobile-toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .mobile-toggle.active span:nth-child(2){opacity:0}
  .mobile-toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .nav-backdrop{position:fixed;inset:0;display:block;border:0;padding:0;background:rgba(0,0,0,.68);backdrop-filter:blur(3px);opacity:0;visibility:hidden;pointer-events:none;transition:.25s ease;z-index:2098}
  body.menu-open .nav-backdrop{opacity:1;visibility:visible;pointer-events:auto}
  .nav-menu{top:0;right:0;width:min(88vw,390px);max-width:390px;height:100dvh;padding:92px 20px max(26px,env(safe-area-inset-bottom));gap:18px;overflow-y:auto;overflow-x:hidden;background:radial-gradient(circle at 100% 0,rgba(220,0,0,.18),transparent 36%),#080808;border-left:1px solid rgba(255,255,255,.08);box-shadow:-24px 0 70px rgba(0,0,0,.55);transform:translateX(105%);transition:transform .32s cubic-bezier(.16,1,.3,1);z-index:2200}
  .nav-menu.active{right:0;transform:translateX(0)}
  .nav-links{gap:8px}
  .nav-links>li{overflow:hidden;border:1px solid rgba(255,255,255,.07);border-radius:12px;background:rgba(255,255,255,.025)}
  .nav-links>li>a{min-height:56px;padding:15px 16px;font-size:.93rem;font-weight:700;letter-spacing:.09em}
  .nav-links>li>a::after{position:static;width:auto;height:auto;margin-left:auto;background:none}
  .nav-links .has-dropdown>a::before{display:none}
  .has-dropdown>a::after{content:'+';display:inline-flex;width:28px;height:28px;align-items:center;justify-content:center;margin-left:12px;border-radius:50%;background:rgba(255,255,255,.07);color:#fff;font-size:1rem}
  .has-dropdown.open>a::after{content:'−';background:var(--red)}
  .dropdown-menu{display:block;max-height:0;padding:0;border:0;background:rgba(0,0,0,.28);overflow:hidden;transition:max-height .3s ease,padding .3s ease}
  .has-dropdown.open>.dropdown-menu{max-height:620px;padding:6px 8px 10px}
  .dropdown-menu li+li{border-top:1px solid rgba(255,255,255,.055)}
  .dropdown-menu a{min-height:46px;display:flex;align-items:center;padding:11px 12px;border-radius:8px;color:rgba(255,255,255,.72);font-size:.9rem;letter-spacing:.035em;text-transform:none}
  .nav-cta{gap:10px;margin-top:auto;padding-top:8px}
  .nav-phone{min-height:52px;border:1px solid rgba(255,255,255,.09);border-radius:12px;background:rgba(255,255,255,.035)}
  .nav-cta .btn{min-height:54px;border-radius:12px}
  .hero{min-height:min(780px,100svh);padding-top:72px;padding-bottom:0;align-items:flex-end}
  .hero::after{content:'';position:absolute;inset:0;pointer-events:none;background:linear-gradient(180deg,rgba(0,0,0,.2) 10%,rgba(0,0,0,.84) 84%)}
  .hero .container{position:relative;z-index:2;padding-inline:var(--mobile-gutter)}
  .hero-content{padding:72px 0 52px}
  .hero-content h1{max-width:12ch;margin-bottom:18px;font-size:clamp(2.15rem,10vw,3.45rem);line-height:.98;letter-spacing:-.045em}
  .hero-label{display:inline-flex;margin-bottom:18px;font-size:.72rem;letter-spacing:.16em}
  .hero-label::before{width:34px}
  .hero-text{margin-bottom:24px;font-size:1rem;line-height:1.65}
  .hero-buttons{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .hero-buttons .btn{width:100%;min-height:52px;padding:14px 12px;border-radius:10px;font-size:.72rem;letter-spacing:.11em}
  .section{padding:58px 0}
  .section>.container{padding-inline:var(--mobile-gutter)}
  .featured-grid{grid-template-columns:1fr!important;gap:16px}
  .featured-card{height:auto;min-height:390px;border-radius:var(--mobile-radius);box-shadow:0 18px 45px rgba(0,0,0,.28)}
  .featured-card-image img{filter:brightness(.55)}
  .featured-card-content{padding:26px 22px;transform:none;background:linear-gradient(0deg,rgba(0,0,0,.96),rgba(0,0,0,.18) 85%)}
  .featured-card h3{font-size:1.55rem}
  .featured-card p{opacity:1;transform:none;margin-bottom:14px;font-size:.92rem;line-height:1.6}
  .about-modern-grid{gap:32px}
  .about-modern-frame{border-radius:var(--mobile-radius)}
  .about-modern-frame img{min-height:360px}
  .about-modern-badge{right:14px;bottom:14px;width:min(240px,70%);padding:14px 16px;border-radius:10px}
  .about-modern h2{font-size:clamp(2.25rem,10vw,3.4rem);line-height:1}
  .about-modern-actions{display:grid;grid-template-columns:1fr;gap:12px}
  .about-modern-actions .btn,.about-modern-call{width:100%;min-height:54px;border-radius:10px}
  .about-modern-call{justify-content:center;border:1px solid rgba(255,255,255,.1)}
  .features-grid{grid-template-columns:1fr 1fr!important}
  .feature-block{padding:30px 18px}
  .feature-block p{font-size:.82rem;line-height:1.5}
  .premium-cta{min-height:auto;padding:58px 0;background-attachment:scroll}
  .premium-cta-inner{gap:30px}
  .premium-cta h2{font-size:clamp(2.3rem,10vw,3.6rem);line-height:1}
  .premium-cta-actions{display:grid;grid-template-columns:1fr;gap:12px}
  .premium-cta .btn-white,.premium-cta-phone{width:100%;min-height:54px;justify-content:center}
  .premium-cta-stats{grid-template-columns:repeat(3,minmax(0,1fr));border-radius:12px;overflow:hidden}
  .premium-stat{min-height:108px;padding:14px 8px;text-align:center}
  .premium-stat strong{font-size:1.75rem}
  .premium-stat span{font-size:.58rem;letter-spacing:.08em}
  .footer{padding:50px 0 24px}
  .footer .container{padding-inline:var(--mobile-gutter)}
  .footer-grid{grid-template-columns:1fr 1fr!important;gap:34px 22px;margin-bottom:34px}
  .footer-brand{grid-column:1/-1}
  .footer-bottom{align-items:flex-start;gap:15px}
}
@media (max-width:560px){
  .hero-buttons{grid-template-columns:1fr}
  .features-grid{grid-template-columns:1fr!important}
  .premium-cta-stats{grid-template-columns:1fr}
  .premium-stat{min-height:92px}
  .footer-grid{grid-template-columns:1fr!important}
  .footer-brand{grid-column:auto}
}
  /* Mobile-friendly improvements */
        *, *::before, *::after {
            box-sizing: border-box;
        }

        html {
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        body {
            overflow-x: hidden;
        }

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

        .logo img {
            display: block;
            width: 180px;
            max-width: 100%;
            height: auto;
        }

        @media (max-width: 992px) {
            .header .container,
            .hero .container,
            .section .container,
            .cta-section .container,
            .footer .container {
                width: 100%;
                max-width: 100%;
                padding-left: 20px;
                padding-right: 20px;
            }

            .header-inner {
                min-height: 76px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 16px;
            }

            .logo {
                position: relative;
                z-index: 1002;
                flex-shrink: 1;
            }

            .logo img {
                width: 150px !important;
            }

            .mobile-toggle {
                display: inline-flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 5px;
                width: 46px;
                height: 46px;
                padding: 10px;
                border: 0;
                border-radius: 8px;
                background: transparent;
                cursor: pointer;
                position: relative;
                z-index: 1002;
                flex-shrink: 0;
            }

            .mobile-toggle span {
                display: block;
                width: 25px;
                height: 2px;
                transition: transform .25s ease, opacity .25s ease;
                transform-origin: center;
            }

            .mobile-toggle.active span:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }

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

            .mobile-toggle.active span:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: min(88vw, 380px);
                height: 100dvh;
                padding: 96px 22px 30px;
                overflow-y: auto;
                z-index: 1001;
                transition: right .3s ease;
                box-shadow: -12px 0 30px rgba(0,0,0,.25);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-links {
                display: flex;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                width: 100%;
                margin: 0;
                padding: 0;
            }

            .nav-links > li {
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,.1);
            }

            .nav-links > li > a {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                min-height: 52px;
                padding: 14px 4px;
                font-size: 1rem;
            }

            .has-dropdown > a::after {
                content: "+";
                margin-left: 12px;
                font-size: 1.25rem;
                line-height: 1;
            }

            .has-dropdown.open > a::after {
                content: "−";
            }

            .dropdown-menu {
                position: static;
                width: 100%;
                min-width: 0;
                max-height: 0;
                overflow: hidden;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding: 0;
                margin: 0;
                transition: max-height .3s ease;
            }

            .has-dropdown.open > .dropdown-menu {
                max-height: 600px;
                padding-bottom: 8px;
            }

            .dropdown-menu li a {
                display: block;
                padding: 12px 16px;
                font-size: .95rem;
            }

            .nav-cta {
                display: flex;
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                margin-top: 24px;
                width: 100%;
            }

            .nav-phone,
            .nav-cta .btn {
                width: 100%;
                justify-content: center;
                text-align: center;
            }

            .hero {
                min-height: auto;
                padding-top: 76px;
            }

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

            .hero-content {
                max-width: 100%;
                padding: 80px 0 64px;
            }

            .hero-content > br,
            .hero-content > h1:first-of-type {
                display: none;
            }

            .hero-content h1 {
                font-size: clamp(2rem, 8vw, 3.4rem);
                line-height: 1.05;
                overflow-wrap: anywhere;
            }

            .hero-label {
                display: inline-block;
                font-size: .9rem;
                line-height: 1.4;
            }

            .hero-text {
                max-width: 100%;
                font-size: 1rem;
                line-height: 1.65;
            }

             .hero-buttons{
        display:flex;
        flex-direction:column;
        gap:12px;
        margin-top:24px;
    }

    .hero-buttons .btn{
        width:100%;
        min-height:46px;
        padding:14px 18px;
        font-size:0.72rem;
        font-weight:700;
        letter-spacing:1px;
        border-radius:10px;
    }

            .section {
                padding-top: 64px;
                padding-bottom: 64px;
            }

            .featured-grid,
            .about-intro,
            .footer-grid {
                grid-template-columns: 1fr !important;
                gap: 28px;
            }

            .featured-card,
            .about-intro-image,
            .about-intro-content {
                min-width: 0;
            }

            .featured-card-image img,
            .about-intro-image img {
                width: 100%;
                height: auto;
                object-fit: cover;
            }

            .about-intro-content h2,
            .cta-section h2 {
                font-size: clamp(1.9rem, 7vw, 3rem);
                line-height: 1.15;
            }

            .features-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
            }

            .feature-block {
                min-width: 0;
                padding: 36px 22px;
            }

            .cta-section {
                padding: 64px 0;
            }

            .footer {
                padding-top: 56px;
            }

            .footer-bottom {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
            }

            .footer-bottom-links {
                display: flex;
                flex-wrap: wrap;
                gap: 12px 18px;
            }
        }

        @media (max-width: 640px) {
            .header .container,
            .hero .container,
            .section .container,
            .cta-section .container,
            .footer .container {
                padding-left: 16px;
                padding-right: 16px;
            }

            .header-inner {
                min-height: 68px;
            }

            .logo img {
                width: 132px !important;
            }

            .hero {
                padding-top: 68px;
            }

            .hero-content {
                padding: 58px 0 48px;
            }

            .hero-content h1 {
                font-size: clamp(1.85rem, 10vw, 2.7rem);
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn,
            .cta-section .btn {
                width: 100%;
            }

            .section {
                padding-top: 48px;
                padding-bottom: 48px;
            }

            .featured-card-content {
                padding: 24px 20px;
            }

            .features-grid {
                grid-template-columns: 1fr !important;
            }

            .feature-block {
                padding: 32px 20px;
            }

            .footer-grid {
                gap: 36px;
            }

            .footer-social,
            .footer-certifications {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 380px) {
            .logo img {
                width: 118px !important;
            }

            .mobile-toggle {
                width: 42px;
                height: 42px;
            }

            .nav-menu {
                width: 94vw;
                padding-left: 18px;
                padding-right: 18px;
            }

            .hero-content h1 {
                font-size: 1.75rem;
            }
        }

        /* Premium image CTA */
        .premium-cta{
            position:relative;
            isolation:isolate;
            min-height:620px;
            display:flex;
            align-items:center;
            padding:clamp(5rem,10vw,8rem) 0;
            overflow:hidden;
            text-align:left;
            background:
                linear-gradient(115deg,rgba(95,0,0,.96) 0%,rgba(190,0,0,.88) 48%,rgba(25,0,0,.74) 100%),
                url("/img/quote.jpg") center/cover no-repeat;
            background-attachment:fixed;
        }
        .premium-cta::before{
            content:"";
            position:absolute;
            inset:0;
            z-index:-1;
            background:
                radial-gradient(circle at 82% 20%,rgba(255,255,255,.18),transparent 34%),
                linear-gradient(90deg,rgba(0,0,0,.16),transparent 55%);
        }
        .premium-cta::after{
            content:"";
            position:absolute;
            left:0;right:0;bottom:0;
            height:6px;
            background:linear-gradient(90deg,transparent,#fff 50%,transparent);
            opacity:.55;
        }
        .premium-cta-overlay{
            position:absolute;
            inset:0;
            z-index:-1;
            background-image:
                linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
                linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
            background-size:44px 44px;
            pointer-events:none;
        }
        .premium-cta-inner{
            position:relative;
            z-index:2;
            display:grid;
            grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);
            align-items:center;
            gap:clamp(3rem,7vw,7rem);
        }
        .premium-cta-copy{max-width:760px}
        .premium-cta-label{
            display:inline-flex;
            align-items:center;
            gap:.8rem;
            margin-bottom:1.3rem;
            color:#fff;
            font-size:.75rem;
            font-weight:700;
            letter-spacing:.22em;
            text-transform:uppercase;
        }
        .premium-cta-label::before{
            content:"";
            width:44px;
            height:2px;
            background:#fff;
        }
        .premium-cta h2{
            max-width:720px;
            margin-bottom:1.4rem;
            color:#fff;
            font-size:clamp(2.4rem,5vw,5rem);
            line-height:.98;
            text-shadow:0 5px 24px rgba(0,0,0,.28);
        }
        .premium-cta p{
            max-width:660px;
            margin-bottom:2.4rem;
            color:rgba(255,255,255,.9);
            font-size:clamp(1rem,1.5vw,1.2rem);
            line-height:1.7;
        }
        .premium-cta-actions{
            display:flex;
            align-items:center;
            flex-wrap:wrap;
            gap:1.3rem 1.8rem;
        }
        .premium-cta .btn-white{
            min-height:56px;
            padding:1rem 2rem;
            border-radius:999px;
            background:#fff;
            color:#b90000;
            box-shadow:0 18px 40px rgba(0,0,0,.22);
        }
        .premium-cta .btn-white:hover{
            background:#000;
            color:#fff;
            transform:translateY(-3px);
        }
        .premium-cta-phone{
            display:inline-flex;
            align-items:center;
            gap:.9rem;
            color:#fff;
            font-weight:700;
        }
        .premium-cta-phone i{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            width:48px;
            height:48px;
            border:1px solid rgba(255,255,255,.45);
            border-radius:50%;
            background:rgba(0,0,0,.14);
        }
        .premium-cta-phone span{
            display:flex;
            flex-direction:column;
            line-height:1.2;
        }
        .premium-cta-phone small{
            margin-bottom:.25rem;
            color:rgba(255,255,255,.72);
            font-size:.68rem;
            letter-spacing:.12em;
            text-transform:uppercase;
        }
        .premium-cta-stats{
            display:grid;
            gap:1px;
            border:1px solid rgba(255,255,255,.22);
            background:rgba(255,255,255,.18);
            box-shadow:0 25px 70px rgba(0,0,0,.24);
            backdrop-filter:blur(14px);
        }
        .premium-stat{
            min-height:132px;
            display:flex;
            flex-direction:column;
            justify-content:center;
            padding:1.6rem 2rem;
            background:rgba(30,0,0,.48);
        }
        .premium-stat strong{
            color:#fff;
            font-size:clamp(2rem,4vw,3.3rem);
            line-height:1;
        }
        .premium-stat span{
            margin-top:.55rem;
            color:rgba(255,255,255,.78);
            font-size:.76rem;
            font-weight:700;
            letter-spacing:.13em;
            text-transform:uppercase;
        }
        @media(max-width:992px){
            .premium-cta{
                min-height:auto;
                background-attachment:scroll;
                background-position:58% center;
            }
            .premium-cta-inner{
                grid-template-columns:1fr;
                gap:3rem;
            }
            .premium-cta-stats{
                grid-template-columns:repeat(3,minmax(0,1fr));
            }
            .premium-stat{
                min-height:120px;
                padding:1.3rem;
            }
        }
        @media(max-width:640px){
            .premium-cta{
                padding:4.5rem 0;
                background-position:62% center;
            }
            .premium-cta h2{
                font-size:clamp(2.25rem,11vw,3.35rem);
            }
            .premium-cta-actions{
                align-items:stretch;
                flex-direction:column;
            }
            .premium-cta .btn-white,
            .premium-cta-phone{width:100%}
            .premium-cta-phone{justify-content:center}
            .premium-cta-stats{grid-template-columns:1fr}
            .premium-stat{
                min-height:105px;
                text-align:center;
            }
        }


        /* Modern About section */
        .about-modern {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 8% 10%, rgba(220,0,0,.12), transparent 30%),
                linear-gradient(180deg, #111 0%, #090909 100%);
        }

        .about-modern::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
            background-size: 52px 52px;
            mask-image: linear-gradient(to right, #000, transparent 70%);
        }

        .about-modern-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
            align-items: center;
            gap: clamp(3rem, 7vw, 7rem);
        }

        .about-modern-media {
            position: relative;
            min-width: 0;
        }

        .about-modern-frame {
            position: relative;
            overflow: hidden;
            background: #171717;
            box-shadow: 0 30px 80px rgba(0,0,0,.45);
        }

        .about-modern-frame::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            background:
                linear-gradient(180deg, transparent 55%, rgba(0,0,0,.38)),
                linear-gradient(90deg, rgba(220,0,0,.16), transparent 42%);
        }

        .about-modern-frame::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            z-index: 2;
            background: var(--red);
        }

        .about-modern-frame img {
            display: block;
            width: 100%;
            min-height: 520px;
            object-fit: cover;
            transition: transform .7s cubic-bezier(.16,1,.3,1);
        }

        .about-modern-media:hover .about-modern-frame img {
            transform: scale(1.035);
        }

        .about-modern-badge {
            position: absolute;
            right: -24px;
            bottom: 32px;
            z-index: 3;
            width: min(240px, 52%);
            padding: 1.4rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(220,0,0,.94);
            box-shadow: 0 18px 50px rgba(0,0,0,.38);
            backdrop-filter: blur(10px);
        }

        .about-modern-badge-number {
            color: #fff;
            font-size: 2rem;
            font-weight: 800;
            line-height: 1;
        }

        .about-modern-badge-text {
            color: rgba(255,255,255,.9);
            font-size: .72rem;
            font-weight: 700;
            line-height: 1.45;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .about-modern-content {
            min-width: 0;
        }

        .about-modern-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: .8rem;
            margin-bottom: 1.2rem;
            color: var(--red);
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .22em;
            text-transform: uppercase;
        }

        .about-modern-eyebrow::before {
            content: "";
            width: 42px;
            height: 2px;
            background: var(--red);
        }

        .about-modern h2 {
            max-width: 720px;
            margin-bottom: 1.5rem;
            font-size: clamp(2.5rem, 5vw, 4.8rem);
            line-height: .98;
            letter-spacing: -.045em;
        }

        .about-modern h2 span {
            color: var(--red);
        }

        .about-modern-lead {
            max-width: 650px;
            margin-bottom: 1.15rem;
            color: rgba(255,255,255,.9);
            font-size: clamp(1.1rem, 1.6vw, 1.3rem);
            line-height: 1.65;
        }

        .about-modern-content > p:not(.about-modern-lead) {
            max-width: 650px;
            margin-bottom: 2.2rem;
            font-size: 1rem;
            line-height: 1.75;
        }

        .about-modern-points {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1px;
            margin-bottom: 2.3rem;
            border: 1px solid rgba(255,255,255,.08);
            background: rgba(255,255,255,.08);
        }

        .about-modern-point {
            display: grid;
            grid-template-columns: 46px 1fr;
            align-items: center;
            gap: 1rem;
            padding: 1.15rem 1.25rem;
            background: rgba(255,255,255,.025);
            transition: background .25s ease, transform .25s ease;
        }

        .about-modern-point:hover {
            background: rgba(255,255,255,.055);
            transform: translateX(4px);
        }

        .about-modern-point i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            color: var(--red);
            border: 1px solid rgba(220,0,0,.35);
            background: rgba(220,0,0,.08);
        }

        .about-modern-point strong {
            display: block;
            margin-bottom: .2rem;
            color: #fff;
            font-size: .95rem;
        }

        .about-modern-point span {
            display: block;
            color: rgba(255,255,255,.58);
            font-size: .88rem;
            line-height: 1.5;
        }

        .about-modern-actions {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.25rem 1.8rem;
        }

        .about-modern-call {
            display: inline-flex;
            align-items: center;
            gap: .85rem;
            color: #fff;
            font-weight: 700;
        }

        .about-modern-call i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            color: var(--red);
            border: 1px solid rgba(255,255,255,.15);
            background: rgba(255,255,255,.035);
        }

        .about-modern-call span {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .about-modern-call small {
            margin-bottom: .22rem;
            color: rgba(255,255,255,.48);
            font-size: .64rem;
            font-weight: 600;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        @media (max-width: 992px) {
            .about-modern-grid {
                grid-template-columns: 1fr;
                gap: 3.2rem;
            }

            .about-modern-frame img {
                min-height: 420px;
            }

            .about-modern-badge {
                right: 20px;
                bottom: 20px;
            }
        }

        @media (max-width: 640px) {
            .about-modern-frame img {
                min-height: 330px;
            }

            .about-modern-badge {
                position: relative;
                right: auto;
                bottom: auto;
                width: 100%;
                margin-top: 0;
            }

            .about-modern h2 {
                font-size: clamp(2.25rem, 11vw, 3.4rem);
            }

            .about-modern-actions {
                align-items: stretch;
                flex-direction: column;
            }

            .about-modern-actions .btn,
            .about-modern-call {
                width: 100%;
            }

            .about-modern-call {
                justify-content: center;
            }
        }
@media (max-width:380px){
  :root{--mobile-gutter:14px}
  .nav-menu{width:94vw;padding-inline:16px}
  .hero-content h1{font-size:1.95rem}
}

        /* Recent Projects */
        .projects-section{
            position:relative;
            overflow:hidden;
            background:
                radial-gradient(circle at 88% 12%, rgba(220,0,0,.11), transparent 30%),
                linear-gradient(180deg,#090909 0%,#111 100%);
        }

        .projects-section::before{
            content:"";
            position:absolute;
            inset:0;
            pointer-events:none;
            background-image:
                linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px),
                linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px);
            background-size:52px 52px;
            mask-image:linear-gradient(to bottom,#000,transparent 85%);
        }

        .projects-header{
            position:relative;
            z-index:1;
            display:flex;
            align-items:end;
            justify-content:space-between;
            gap:2rem;
            margin-bottom:2.75rem;
        }

        .projects-heading{
            max-width:760px;
        }

        .projects-eyebrow{
            display:inline-flex;
            align-items:center;
            gap:.8rem;
            margin-bottom:1rem;
            color:var(--red);
            font-size:.72rem;
            font-weight:700;
            letter-spacing:.22em;
            text-transform:uppercase;
        }

        .projects-eyebrow::before{
            content:"";
            width:42px;
            height:2px;
            background:var(--red);
        }

        .projects-heading h2{
            margin-bottom:1rem;
            font-size:clamp(2.4rem,5vw,4.8rem);
            line-height:.98;
            letter-spacing:-.045em;
        }

        .projects-heading h2 span{
            color:var(--red);
        }

        .projects-heading p{
            max-width:650px;
            margin:0;
            font-size:1rem;
        }

        .projects-grid{
            position:relative;
            z-index:1;
            display:grid;
            grid-template-columns:repeat(3,minmax(0,1fr));
            gap:1.5rem;
        }

        .project-card{
            position:relative;
            min-height:500px;
            overflow:hidden;
            border:1px solid rgba(255,255,255,.08);
            border-radius:18px;
            background:#151515;
            box-shadow:0 24px 65px rgba(0,0,0,.32);
        }

        .project-card-image{
            position:absolute;
            inset:0;
        }

        .project-card-image img{
            width:100%;
            height:100%;
            object-fit:cover;
            filter:brightness(.62);
            transition:transform .65s cubic-bezier(.16,1,.3,1),filter .35s ease;
        }

        .project-card::after{
            content:"";
            position:absolute;
            inset:0;
            background:linear-gradient(180deg,rgba(0,0,0,.08) 20%,rgba(0,0,0,.93) 88%);
        }

        .project-card:hover .project-card-image img{
            transform:scale(1.055);
            filter:brightness(.48);
        }

        .project-card-content{
            position:absolute;
            z-index:2;
            left:0;
            right:0;
            bottom:0;
            padding:2rem;
        }

        .project-card-meta{
            display:flex;
            flex-wrap:wrap;
            gap:.55rem;
            margin-bottom:1rem;
        }

        .project-card-meta span{
            display:inline-flex;
            align-items:center;
            min-height:29px;
            padding:.35rem .7rem;
            border:1px solid rgba(255,255,255,.14);
            border-radius:999px;
            background:rgba(0,0,0,.34);
            color:rgba(255,255,255,.78);
            font-size:.65rem;
            font-weight:700;
            letter-spacing:.1em;
            text-transform:uppercase;
            backdrop-filter:blur(8px);
        }

        .project-card h3{
            margin-bottom:.75rem;
            font-size:1.65rem;
            line-height:1.1;
        }

        .project-card p{
            margin-bottom:1.2rem;
            color:rgba(255,255,255,.7);
            font-size:.92rem;
            line-height:1.65;
        }

        .project-result{
            display:grid;
            gap:.45rem;
            margin-bottom:1.25rem;
        }

        .project-result span{
            display:flex;
            align-items:center;
            gap:.55rem;
            color:rgba(255,255,255,.82);
            font-size:.84rem;
        }

        .project-result i{
            color:var(--red);
        }

        .project-link{
            display:inline-flex;
            align-items:center;
            gap:.65rem;
            color:#fff;
            font-size:.78rem;
            font-weight:700;
            letter-spacing:.12em;
            text-transform:uppercase;
        }

        .project-link i{
            color:var(--red);
            transition:transform .25s ease;
        }

        .project-card:hover .project-link i{
            transform:translateX(5px);
        }

        .projects-footer{
            position:relative;
            z-index:1;
            display:flex;
            justify-content:center;
            margin-top:2.5rem;
        }

        @media(max-width:1100px){
            .projects-grid{
                grid-template-columns:repeat(2,minmax(0,1fr));
            }

            .project-card:last-child{
                grid-column:1/-1;
            }
        }

        @media(max-width:760px){
            .projects-header{
                align-items:flex-start;
                flex-direction:column;
                margin-bottom:2rem;
            }

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

            .project-card,
            .project-card:last-child{
                grid-column:auto;
                min-height:460px;
            }

            .project-card-content{
                padding:1.5rem;
            }

            .projects-footer .btn{
                width:100%;
            }
        }


        /* SEO content sections */
        .seo-section{
            position:relative;
            background:#0b0b0b;
        }

        .section-heading{
            max-width:780px;
            margin-bottom:2.6rem;
        }

        .section-eyebrow{
            display:inline-flex;
            align-items:center;
            gap:.8rem;
            margin-bottom:1rem;
            color:var(--red);
            font-size:.72rem;
            font-weight:700;
            letter-spacing:.2em;
            text-transform:uppercase;
        }

        .section-eyebrow::before{
            content:"";
            width:40px;
            height:2px;
            background:var(--red);
        }

        .section-heading h2{
            margin-bottom:1rem;
            font-size:clamp(2.25rem,4.5vw,4.4rem);
            line-height:1;
        }

        .section-heading h2 span{
            color:var(--red);
        }

        .section-heading p{
            max-width:720px;
            margin:0;
        }

        .industries-grid{
            display:grid;
            grid-template-columns:repeat(4,minmax(0,1fr));
            gap:1px;
            border:1px solid rgba(255,255,255,.08);
            background:rgba(255,255,255,.08);
        }

        .industry-card{
            min-height:205px;
            padding:2rem 1.5rem;
            background:#101010;
            transition:transform .25s ease,background .25s ease;
        }

        .industry-card:hover{
            z-index:1;
            transform:translateY(-4px);
            background:#181818;
        }

        .industry-card i{
            margin-bottom:1.25rem;
            color:var(--red);
            font-size:1.65rem;
        }

        .industry-card h3{
            margin-bottom:.65rem;
            font-size:1.12rem;
        }

        .industry-card p{
            margin:0;
            font-size:.88rem;
            line-height:1.6;
        }

        .services-copy-grid{
            display:grid;
            grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);
            gap:clamp(2.5rem,6vw,6rem);
            align-items:start;
        }

        .services-copy h2{
            margin-bottom:1.25rem;
            font-size:clamp(2.25rem,4.4vw,4rem);
        }

        .services-copy h2 span{
            color:var(--red);
        }

        .services-copy p{
            font-size:1rem;
        }

        .inline-link{
            color:#fff;
            text-decoration:underline;
            text-decoration-color:var(--red);
            text-underline-offset:4px;
        }

        .inline-link:hover{
            color:var(--red);
        }

        .service-list{
            display:grid;
            gap:1px;
            border:1px solid rgba(255,255,255,.08);
            background:rgba(255,255,255,.08);
        }

        .service-list a{
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:1rem;
            min-height:64px;
            padding:1rem 1.2rem;
            background:#111;
            color:rgba(255,255,255,.8);
            font-weight:600;
        }

        .service-list a:hover{
            background:#181818;
            color:#fff;
            padding-left:1.5rem;
        }

        .service-list i{
            color:var(--red);
        }

        .process-grid{
            display:grid;
            grid-template-columns:repeat(4,minmax(0,1fr));
            gap:1.25rem;
            counter-reset:evick-step;
        }

        .process-card{
            position:relative;
            min-height:245px;
            padding:2rem;
            border:1px solid rgba(255,255,255,.08);
            border-radius:14px;
            background:linear-gradient(145deg,#151515,#0d0d0d);
            counter-increment:evick-step;
        }

        .process-card::before{
            content:"0" counter(evick-step);
            display:block;
            margin-bottom:1.2rem;
            color:var(--red);
            font-size:2rem;
            font-weight:800;
        }

        .process-card h3{
            margin-bottom:.75rem;
            font-size:1.18rem;
        }

        .process-card p{
            margin:0;
            font-size:.9rem;
        }

        .manufacturer-note{
            margin-top:2rem;
            padding:1.4rem 1.6rem;
            border-left:3px solid var(--red);
            background:rgba(255,255,255,.035);
        }

        .manufacturer-note p{
            margin:0;
            font-size:.93rem;
        }

        .reviews-ready{
            display:grid;
            grid-template-columns:1fr auto;
            align-items:center;
            gap:2rem;
            padding:2.2rem;
            border:1px solid rgba(255,255,255,.09);
            border-radius:16px;
            background:
                linear-gradient(120deg,rgba(220,0,0,.13),transparent 55%),
                #111;
        }

        .reviews-ready h2{
            margin-bottom:.65rem;
            font-size:clamp(1.8rem,3vw,2.8rem);
        }

        .reviews-ready p{
            max-width:780px;
            margin:0;
            font-size:.95rem;
        }

        .faq-list{
            max-width:1000px;
            display:grid;
            gap:.8rem;
        }

        .faq-item{
            border:1px solid rgba(255,255,255,.09);
            border-radius:12px;
            background:#111;
        }

        .faq-item summary{
            position:relative;
            cursor:pointer;
            padding:1.25rem 3.5rem 1.25rem 1.3rem;
            color:#fff;
            font-weight:700;
            list-style:none;
        }

        .faq-item summary::-webkit-details-marker{
            display:none;
        }

        .faq-item summary::after{
            content:"+";
            position:absolute;
            right:1.3rem;
            top:50%;
            transform:translateY(-50%);
            color:var(--red);
            font-size:1.5rem;
        }

        .faq-item[open] summary::after{
            content:"−";
        }

        .faq-answer{
            padding:0 1.3rem 1.3rem;
        }

        .faq-answer p{
            margin:0;
            font-size:.94rem;
        }

        @media(max-width:1050px){
            .industries-grid,
            .process-grid{
                grid-template-columns:repeat(2,minmax(0,1fr));
            }

            .services-copy-grid{
                grid-template-columns:1fr;
            }
        }

        @media(max-width:700px){
            .industries-grid,
            .process-grid{
                grid-template-columns:1fr;
            }

            .reviews-ready{
                grid-template-columns:1fr;
                align-items:start;
            }

            .reviews-ready .btn{
                width:100%;
            }
        }