/*
Theme Name: D&A Doors
Theme URI: https://dandadoors.co.uk
Description: Custom theme for D&A Doors, built from scratch without Elementor or ACF.
Version: 1.0.0
Author: Antigravity
Text Domain: dandadoors
*/

/* 
 * Design Tokens & Core System
 */

:root {
    --primary: #1a1a1a;
    --accent: #ff8c00; /* Replicated Deep Orange */
    --accent-dark: #e67e00;

    --text: #333333;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #fbfbfb;
}


* {
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    margin: 0;
    line-height: 1.2;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Nav */
.top-bar {
    background: #2a2a2a;
    padding: 12px 0;
    border-bottom: none;
}

.top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info a, .top-emergency a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    margin-right: 30px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

.top-info a i { color: var(--accent); margin-right: 8px; }
.top-emergency a i { color: #fff; margin-right: 8px; font-size: 1.1rem; }
.top-emergency a span { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 85px;
    width: auto;
}

.menu-toggle {
    display: none;
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links ul li {
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-links ul li a,
.nav-links > a:not(.btn) {
    color: #333;
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
    display: block;
}

.nav-links ul li a.active, 
.nav-links ul li a:hover,
.nav-links ul li.current-menu-item > a,
.nav-links ul li.current_page_item > a,
.nav-links > a:not(.btn).active, 
.nav-links > a:not(.btn):hover {
    color: #b81d24;
}

.nav-links ul li a.active::after, 
.nav-links ul li a:hover::after,
.nav-links ul li.current-menu-item > a::after,
.nav-links ul li.current_page_item > a::after,
.nav-links > a:not(.btn).active::after, 
.nav-links > a:not(.btn):hover::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #b81d24;
}

.desktop-nav-buttons {
    display: flex;
    align-items: center;
}

.mobile-nav-buttons {
    display: none;
}

.nav-links .btn {
    margin-left: 15px !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-links .btn.btn-call, .mobile-nav-buttons .btn.btn-call {
    background: #ff8c00;
    color: #fff !important;
}

.nav-links .btn.btn-call:hover, .mobile-nav-buttons .btn.btn-call:hover {
    background: #e67e00;
    transform: translateY(-2px);
}

.nav-links .btn.btn-quote, .mobile-nav-buttons .btn.btn-quote {
    background: #333333;
    color: #fff !important;
}

.nav-links .btn.btn-quote:hover, .mobile-nav-buttons .btn.btn-quote:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .top-flex {
        justify-content: center;
    }
    .desktop-only {
        display: none !important;
    }
    .top-emergency a {
        margin-right: 0;
    }
    .top-emergency i {
        color: #fff !important;
    }
    
    .nav-flex {
        flex-direction: column;
        padding: 20px 0;
    }
    .logo img {
        height: 120px;
        margin-bottom: 15px;
    }
    .menu-toggle {
        display: block;
        margin-bottom: 20px;
    }

    .mobile-nav-buttons {
        display: flex !important;
        flex-direction: column;
        width: 88%;
        gap: 14px;
        padding: 0px 10px 20px 0px;
        overflow: hidden;
    }
    .mobile-nav-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 18px;
        font-size: 1.1rem;
        font-weight: 800;
        border-radius: 0px;
    }
.products-slider-wrap {
    margin-bottom: 40px;
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}
    .desktop-nav-buttons {
        display: none !important;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: #fff;
    }
    .nav-links.open {
        display: flex;
        padding-bottom: 20px;
    }
    .nav-links ul {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }
    .nav-links ul li {
        width: 100%;
    }
    .nav-links ul li a,
    .nav-links > a:not(.btn) {
        margin: 15px 0;
        font-size: 1rem;
        margin-left: 0;
    }
    .nav-links ul li a::after,
    .nav-links > a:not(.btn)::after {
        display: none;
    }
}

/* --- NEW HERO 1:1 --- */
.hero-slider {
    width: 100%;
    overflow: hidden;
}

.hero-slide-wrap {
    display: flex;
    width: 100%;
    min-height: 700px;
}

.hero-left {
    flex: 0 0 50%;
    background-color: #1a1a1a;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.03) 0,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 35px
    );
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 80px 8% 80px 5%;
    position: relative;
    z-index: 2;
}

.hero-right {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 600px;
}

.hero-badge-1to1 {
    background: #b81d24 !important;
    color: #fff !important;
    padding: 5px 12px !important;
    font-weight: 800 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    margin-bottom: 20px !important;
    letter-spacing: 1px !important;
}

.hero-h1-1to1 {
    font-size: 5rem !important;
    color: #fff !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
    margin-bottom: 25px !important;
    text-transform: uppercase !important;
}

.hero-h1-1to1 span {
    display: block !important;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}


.hero-red-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 90%;
    background: #b81d24;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    z-index: 10;
}



/* Swiper Pagination */
.swiper-pagination {
    left: 40px !important;
    bottom: 40px !important;
    text-align: left !important;
    width: auto !important;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: transparent;
    border: 2px solid #555;
    opacity: 1;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    background: #fff;
    border-color: #b81d24;
}


@media (max-width: 991px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    .hero-industrial-bg {
        width: 100%;
    }
    .hero-image-side {
        width: 100%;
        margin-top: 50px;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .swiper-pagination {
        left: 50% !important;
        transform: translateX(-50%);
    }
}



.btn {
    display: inline-block;
    padding: 15px 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}


.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title .underline {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}


/* --- NEW SERVICES 1:1 --- */
.services-section {
    padding: 100px 0;
    background: #fff;
}

.services-grid-1to1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-card-1to1 {
    position: relative;
    height: 480px;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    z-index: 1;
}

.service-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-1to1:hover .service-bg-img {
    transform: scale(1.1);
}

.service-overlay-centered {
    position: relative;
    z-index: 5;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 85%;
    max-width: 420px;
    padding: 50px 30px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-overlay-centered h3 {
    color: #fff !important;
    font-size: 2.2rem !important;
    margin-bottom: 15px !important;
    font-weight: 800 !important;
}

.service-overlay-centered p {
    color: #ccc !important;
    font-size: 0.95rem !important;
    margin-bottom: 25px !important;
}

.view-now-link {
    color: #ff8c00 !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-size: 0.95rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 15px !important;
}





/* Features */
.features {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
}

.feature-item h3 {
    color: var(--accent);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 1rem;
    opacity: 0.8;
}

/* CTA */
.cta {
    padding: 80px 0;
    background: var(--accent);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* --- FOOTER 1:1 --- */
#footer-1to1 {
    background: #333333;
    color: #ffffff;
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-grid-1to1 {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-heading-1to1 {
    color: #ff8c00;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

.footer-about {
    color: #ccc;
    line-height: 1.7;
    margin: 25px 0 30px;
    font-size: 1rem;
}

.footer-social-1to1 {
    display: flex;
    gap: 15px;
}

.footer-social-1to1 a {
    width: 45px;
    height: 45px;
    border: 1px solid #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-1to1 a:hover {
    background: #ff8c00;
    border-color: #ff8c00;
    transform: translateY(-3px);
}

.footer-links-1to1 {
    list-style: none;
    padding: 0;
}

.footer-links-1to1 li {
    margin-bottom: 12px;
}

.footer-links-1to1 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links-1to1 a.active, 
.footer-links-1to1 a:hover {
    color: #ff8c00;
}

.footer-hours-1to1 p {
    margin-bottom: 15px;
    color: #ccc;
}

.emergency-text {
    color: #fff !important;
    font-weight: 700;
    margin-top: 25px;
}

.footer-contact-items-1to1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item-1to1 {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon-1to1 {
    width: 35px;
    height: 35px;
    background: #b81d24;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.contact-item-1to1 a, 
.contact-item-1to1 span {
    color: #fff;
    text-decoration: none;
    line-height: 1.5;
}

.footer-bottom-1to1 {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
}

.brand-orange {
    color: #ff8c00;
    font-weight: 800;
}

.back-to-top {
    width: 40px;
    height: 40px;
    background: #007bff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .footer-grid-1to1 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-grid-1to1 { grid-template-columns: 1fr; }
}



/* 
 * Micro-animations
 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content {
    animation: fadeIn 1s ease-out;
}

.service-card {
    animation: fadeIn 0.8s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

/* Glassmorphism for Contact Section or similar */
.glass-box {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
}

/* Dynamic Links */
.view-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 20px;
    position: relative;
    transition: var(--transition);
}

.view-link::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.view-link:hover {
    color: var(--primary);
}

.view-link:hover::after {
    margin-left: 10px;
}

.hero-small h1 {
    font-size: 3rem;
    color: var(--white);
}

/* 
 * Ninja Forms 1:1 Styling
 */
.nf-form-content {
    padding: 0 !important;
}

.nf-field-container {
    margin-bottom: 20px !important;
}

.nf-field-label label {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    color: var(--primary) !important;
    margin-bottom: 8px !important;
    display: block !important;
}

/* Override label color inside dark contact box */
.contact-right-1to1 .nf-field-label label {
    color: #fff !important;
}

.nf-element {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
    font-family: 'Inter', sans-serif !important;
    transition: var(--transition) !important;
    background: #fff !important;
    box-sizing: border-box !important;
    color: #333 !important;
}

.nf-element:focus {
    border-color: var(--accent) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.2) !important;
}

.ninja-forms-field.nf-element[type="button"],
.nf-field-container .ninja-forms-field {
    cursor: pointer;
}

.nf-field-container [type="button"] {
    background: var(--accent) !important;
    color: #fff !important;
    border: none !important;
    padding: 18px 35px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    border-radius: 6px !important;
    transition: var(--transition) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
}

.nf-field-container [type="button"]:hover {
    background: var(--accent-dark) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.nf-error-msg {
    color: #e74c3c !important;
    font-size: 0.85rem !important;
    margin-top: 5px !important;
}

.nf-response-msg {
    padding: 20px !important;
    border-radius: 5px !important;
    background: #d4edda !important;
    color: #155724 !important;
    border: 1px solid #c3e6cb !important;
    margin-bottom: 20px !important;
}

.feature-item i {
    transition: var(--transition);
}

.feature-item:hover i {
    transform: scale(1.1);
}

/* Contact Red Cards */
.contact-card {
    background: #a30000;
    color: white;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.contact-card:hover {
    background: #820000;
    transform: translateX(10px);
}

.contact-card .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.contact-card h4 {
    color: white !important;
    margin: 0;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-card p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 1024px) {

    .container {
        padding: 0 40px;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .content-flex {
        gap: 40px !important;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    header {
        padding: 10px 0;
    }
    .nav-links {
        display: none; /* In a real site, we'd add a hamburger menu */
    }

    .mobile-call-btn {
        display: block !important;
    }
    .hero {
        padding: 100px 0;
        text-align: center;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .hero-btns .btn {
        margin-left: 0 !important;
        width: 100%;
        box-sizing: border-box;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .content-flex {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 0 20px;
    }
    .section-title h2 {
        font-size: 1.75rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* --- INNER PAGE HERO 1:1 --- */
.inner-hero-1to1 {
    height: 400px;
    background: #000;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.inner-hero-left-1to1 {
    flex: 0 0 60%;
    padding-left: 10%;
    position: relative;
    z-index: 2;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.04) 0,
        rgba(255, 255, 255, 0.04) 1px,
        transparent 1px,
        transparent 35px
    );
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inner-hero-right-1to1 {
    flex: 0 0 40%;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100%;
}

.inner-hero-right-1to1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100%;
    background: #b81d24;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    z-index: 5;
}

.inner-hero-1to1 h1 {
    font-size: 4rem;
    font-weight: 950;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

.inner-hero-1to1 .breadcrumb-1to1 {
    color: #ff8c00;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .inner-hero-1to1 { height: 300px; }
    .inner-hero-right-1to1 { display: none; }
    .inner-hero-left-1to1 { flex: 0 0 100%; padding: 0 40px; }
    .inner-hero-1to1 h1 { font-size: 2.5rem; }
}
/* 
 * Product Slider (For Shortcode)
 */
.products-slider-wrap {
    padding: 100px 0;
    margin-bottom: 40px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.product-card-1to1 {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: transform 0.4s ease;
}

.product-card-1to1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    z-index: 1;
}

.product-card-1to1 h3 {
    position: relative;
    z-index: 5;
    color: #fff !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    transition: transform 0.3s ease;
}

.product-card-1to1:hover {
    transform: translateY(-5px);
}

.product-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    z-index: 10;
    pointer-events: none;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.prod-prev, .prod-next {
    width: 60px;
    height: 60px;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.prod-prev:hover, .prod-next:hover {
    background: #ff8c00;
    color: #fff;
    border-color: #ff8c00;
}

/* 
 * Page Headers
 */
.page-header-1to1 {
    background-color: #1a1a1a;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.04) 0,
        rgba(255, 255, 255, 0.04) 1px,
        transparent 1px,
        transparent 35px
    );
    padding: 120px 0;
    text-align: center;
    border-bottom: 5px solid #b81d24;
}

.page-header-1to1 h1 {
    font-size: 5rem;
    font-weight: 950;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .page-header-1to1 { padding: 80px 0; }
    .page-header-1to1 h1 { font-size: 3rem; }
}

/* 1:1 INDUSTRIAL GLOBAL STYLES */
#hero-industrial-1to1 {
    width: 100%;
    position: relative;
    background: #1a1a1a;
    overflow: hidden;
    height: 700px;
}

.hero-slide-1to1 {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    height: 700px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-left-1to1 {
    flex: 0 0 50% !important;
    background-color: #1a1a1a !important;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.04) 0,
        rgba(255, 255, 255, 0.04) 1px,
        transparent 1px,
        transparent 35px
    ) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 60px 40px !important;
    color: #fff !important;
    box-sizing: border-box !important;
}

@media (min-width: 1680px) {
    .hero-left-1to1 {
        padding-left: calc((100vw - 1600px) / 2 + 40px) !important;
    }
}

.hero-right-1to1 {
    flex: 0 0 50% !important;
    position: relative !important;
    overflow: hidden !important;
}

.hero-right-1to1 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.hero-content-1to1 {
    max-width: 650px !important;
    text-align: left !important;
    width: 100% !important;
}

.hero-half-logo-fixed {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    height: 90%;
    opacity: 0.8;
    pointer-events: none;
}

.hero-half-logo-fixed img {
    height: 100%;
    width: auto;
}

.badge-red-1to1 {
    background: #b81d24 !important;
    color: #fff !important;
    padding: 6px 15px !important;
    font-weight: 900 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    margin-bottom: 25px !important;
    letter-spacing: 1px !important;
}

.hero-h1-1to1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
    color: #fff !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    margin-bottom: 25px !important;
    text-transform: uppercase !important;
}

.hero-h1-1to1 span {
    display: block !important;
    color: #fff !important;
}

/* PAGINATION OVERRIDE */
.swiper-pagination {
    left: 40px !important;
    bottom: 40px !important;
    text-align: left !important;
    width: auto !important;
}

@media (min-width: 1680px) {
    .swiper-pagination {
        left: calc((100vw - 1600px) / 2 + 40px) !important;
    }
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: transparent !important;
    border: 2px solid #fff !important;
    opacity: 1 !important;
    margin: 0 8px !important;
}

.swiper-pagination-bullet-active {
    background: #b81d24 !important;
    border-color: #b81d24 !important;
}


/* SERVICES 1:1 GRID */
#services-1to1 {
    padding: 100px 0 !important;
    background: #fff !important;
}

.grid-2x2-1to1 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
    margin-top: 50px !important;
}

.card-1to1 {
    position: relative !important;
    height: 500px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.card-img-1to1 {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
}

.card-img-1to1 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease;
}

.card-1to1:hover .card-img-1to1 img {
    transform: scale(1.1);
}

.overlay-center-1to1 {
    position: relative !important;
    z-index: 5 !important;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    width: 85% !important;
    max-width: 440px !important;
    padding: 50px 30px !important;
    text-align: center !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
}

.overlay-center-1to1 h3 {
    color: #fff !important;
    font-size: 2.3rem !important;
    margin-bottom: 15px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    line-height:1.2 !important;
}

.overlay-center-1to1 p {
    color: #fff !important;
    font-size: 1rem !important;
    margin-bottom: 30px !important;
    line-height: 1.5 !important;
    opacity: 0.9;
}

.btn-view-1to1 {
    color: #ff8c00 !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-size: 1.1rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    transition: all 0.3s ease;
}

.btn-view-1to1:hover {
    gap: 20px !important;
}

@media (max-width: 991px) {
    #hero-industrial-1to1 {
        height: auto !important;
        min-height: 600px !important;
        display: block !important;
    }
    .hero-slide-1to1 { 
        flex-direction: column !important; 
        height: auto !important;
        min-height: 600px !important;
        display: flex !important;
    }
    .hero-left-1to1, .hero-right-1to1 { 
        flex: 0 0 auto !important; 
        width: 100% !important; 
    }
    .hero-left-1to1 {
        padding: 80px 40px !important;
        order: 1 !important;
        justify-content: center !important;
        text-align: center !important;
    }
    .hero-content-1to1 {
        text-align: center !important;
    }
    .hero-right-1to1 {
        height: 350px !important;
        order: 2 !important;
    }
    .grid-2x2-1to1 { grid-template-columns: 1fr !important; }
    .hero-half-logo-fixed {
        display: none;
    }
    .hero-h1-1to1 {
        font-size: 3rem !important;
    }
}

/* SECURITY DOORS PAGE 1:1 */
.security-hero {
    background-color: #1a1a1a !important;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.04) 0,
        rgba(255, 255, 255, 0.04) 1px,
        transparent 1px,
        transparent 35px
    ) !important;
    border-bottom: 5px solid #b81d24 !important;
    padding: 120px 0 !important;
    text-align: center;
    color: white;
}

.security-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    line-height: 1.1 !important;
    color: #fff !important;
    margin-bottom: 30px !important;
}

.security-hero p {
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    color: #ccc !important;
    margin-bottom: 25px !important;
}

.security-content h2, 
.security-twocol h2,
.security-content-reverse h2,
.security-prices h2 {
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: #1a1a1a !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    margin-bottom: 30px !important;
}

.security-content p,
.security-twocol p,
.security-content-reverse p,
.security-prices p {
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    color: #444 !important;
    margin-bottom: 25px !important;
}

.security-cta {
    background: #ff8c00 !important;
    padding: 100px 0 !important;
    text-align: center;
    color: white;
}

.security-cta h2 {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    color: #fff !important;
    margin-bottom: 30px !important;
}

.security-cta .btn {
    font-size: 1.2rem !important;
    padding: 20px 50px !important;
    border-radius: 6px !important;
    background: #fff !important;
    color: #ff8c00 !important;
    font-weight: 900 !important;
}

@media (max-width: 991px) {
    .security-hero { padding: 80px 20px !important; }
    .security-hero h1 { font-size: 2.5rem !important; }
    .security-content h2, 
    .security-twocol h2,
    .security-content-reverse h2,
    .security-prices h2 { font-size: 2.2rem !important; }
    .security-cta h2 { font-size: 2.5rem !important; }
}

/* CONTACT PAGE 1:1 */
.contact-section-1to1 {
    padding: 100px 0 !important;
    background: #fff !important;
}

.contact-section-1to1 .container {
    max-width: 1250px !important;
}

.contact-flex-1to1 {
    display: flex !important;
    gap: 80px !important;
    align-items: flex-start !important;
}

.contact-info-box-1to1 {
    flex: 0 0 42% !important;
}

.contact-form-box-1to1 {
    flex: 0 0 58% !important;
    background: #333 !important;
    padding: 60px !important;
    border-radius: 12px !important;
    color: #fff !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2) !important;
}

.contact-info-card-1to1 {
    background: #b81d24 !important;
    color: #fff !important;
    padding: 30px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    margin-bottom: 20px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.contact-info-card-1to1:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(184, 29, 36, 0.3) !important;
}

.contact-info-icon-1to1 {
    width: 60px !important;
    height: 60px !important;
    background: rgba(0,0,0,0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    font-size: 1.8rem !important;
}

.contact-info-text-1to1 h4 {
    margin: 0 !important;
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    text-transform: uppercase !important;
}

.contact-info-text-1to1 p {
    margin: 5px 0 0 !important;
    font-size: 1.1rem !important;
    opacity: 0.9 !important;
    color: #fff !important;
}

.contact-info-text-1to1 p a {
    color: #fff !important;
    text-decoration: underline !important;
}

/* Ninja Forms Overrides for Contact Page */
.contact-form-box-1to1 .nf-form-content,
.contact-form-box-1to1 .nf-form-wrap,
.contact-form-box-1to1 .nf-form-layout {
    background: transparent !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.contact-form-box-1to1 .nf-field-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 20px !important;
}

.contact-form-box-1to1 .nf-field-label label {
    color: #fff !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    font-weight: 800 !important;
    margin-bottom: 10px !important;
}

.contact-form-box-1to1 .nf-element {
    background: #fff !important;
    border: none !important;
    padding: 15px !important;
    border-radius: 4px !important;
    font-size: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.contact-form-box-1to1 .nf-field-container [type="button"],
.contact-form-box-1to1 .nf-field-container [type="submit"],
.contact-form-box-1to1 .nf-field-container button {
    background: #ff8c00 !important;
    color: #fff !important;
    font-weight: 900 !important;
    font-size: 1.2rem !important;
    padding: 20px !important;
    border-radius: 6px !important;
    text-transform: uppercase !important;
    margin-top: 20px !important;
    border: none !important;
    cursor: pointer !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

@media (max-width: 991px) {
    .contact-flex-1to1 { flex-direction: column !important; }
    .contact-info-box-1to1, .contact-form-box-1to1 { flex: 0 0 100% !important; width: 100% !important; }
}

/* --- CONTACT INFO CARDS 1:1 --- */
.info-card-1to1, 
.contact-info-card-1to1 {
    background: #b81d24 !important;
    color: white !important;
    padding: 25px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    margin-bottom: 20px !important;
    text-align: left !important;
}

.info-card-1to1 .info-icon-1to1, 
.contact-info-card-1to1 .contact-info-icon-1to1 {
    width: 55px !important;
    height: 55px !important;
    background: rgba(0,0,0,0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    font-size: 1.6rem !important;
    flex-shrink: 0 !important;
    color: white !important;
}

.info-card-1to1 .info-text-1to1 h4, 
.contact-info-card-1to1 .contact-info-text-1to1 h4 {
    margin: 0 0 5px 0 !important;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: white !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.info-card-1to1 .info-text-1to1 p, 
.contact-info-card-1to1 .contact-info-text-1to1 p {
    margin: 0 !important;
    font-size: 1.05rem !important;
    line-height: 1.4 !important;
    color: rgba(255,255,255,0.9) !important;
}

.info-card-1to1 a, 
.contact-info-card-1to1 a {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.3) !important;
    transition: all 0.3s ease !important;
}

.info-card-1to1 a:hover, 
.contact-info-card-1to1 a:hover {
    border-bottom-color: #ffffff !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .info-card-1to1, .contact-info-card-1to1 {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px !important;
    }
}
