/*!
Theme Name: webergon_theme
Theme URI: http://underscores.me/
Author: Webergon
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: webergon_theme


*/


/*General*/
:root{
    --primary-color: #f86414;
    --secondary-color: #010103;
    --grey-color:#f7f7f8;
    --text-font: "Montserrat", sans-serif;
    --title-font: "Cormorant", serif;
    --inner-width: 1200px;
}
#menu-main-menu{
    list-style:none;
}
.we-social i {
	font-size: 1.2rem;
	color: var(--bs-body-color);
	transition: color .2s;
}
.we-social a:hover i { color: var(--bs-primary); }
p{
    font-size: 16px;
    font-family: var(--text-font);
}

.hero-page{
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background: rgba(0,0,0,0.35);
}

.hero-content{
    position: relative;
    color: white;
    z-index:2;
    padding-top: 50px;
}

.page-title{
    font-size: 48px;
    margin-bottom:10px;
    font-family: var(--title-font);
    text-transform: uppercase;
}

.breadcrumb{
    display: flex;
	align-items: center;
	gap: 6px;
    font-size:14px;
}

.breadcrumb a{
    color:white;
    text-decoration:none;
}


/*======================== header ========================*/
header{
    position: relative;
    z-index: 10;
    position: sticky;
	top: 0;
	z-index: 9999;
}
header .logo-widget img{
    width: 170px;
    height: auto;
}
header .widget.widget_nav_menu ul{
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
header .widget.widget_nav_menu ul li{
    display: inline-block;
}
header .widget.widget_nav_menu ul li a{
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #444;
    font-family: var(--text-font);
    padding-bottom: 4px;
    transition: color 0.25s ease;
}
header .widget.widget_nav_menu ul li a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s ease;
}
header .widget.widget_nav_menu ul li a:hover{
    color: #000;
}
header .widget.widget_nav_menu ul li a:hover::after{
    transform: scaleX(1);
}
header .widget.widget_nav_menu ul li.current-menu-item > a {
    color: var(--primary-color);
}
header .widget.widget_nav_menu ul li.current-menu-item > a::after {
    transform: scaleX(1);
    background: var(--primary-color);
    opacity: 0.5;
}
/* ── Mobile slide-in panel ── */
#we-burger-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(1, 1, 3, 0.5);
    backdrop-filter: blur(3px);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.35s ease;
}
#we-burger-overlay.active {
    display: block;
    opacity: 1;
}
#we-burger-collapse {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 300px;
    background: #fff;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 6px 0 32px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    padding: 0;
}
#we-burger-collapse.open {
    transform: translateX(0);
}
.we-burger-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    font-size: 1.3rem;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
}
.we-burger-close:hover {
    color: var(--primary-color);
}
.we-burger-panel-logo {
    padding: 28px 28px 20px;
    border-bottom: 1px solid #f0f0f0;
}
#we-burger-collapse #primary-menu {
    list-style: none;
    padding: 16px 0;
    margin: 0;
    flex: 1;
}
#we-burger-collapse #primary-menu li a {
    display: flex;
    align-items: center;
    padding: 13px 28px;
    font-family: var(--title-font);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-left: 3px solid transparent;
    transition: all 0.22s ease;
}
#we-burger-collapse #primary-menu li a:hover,
#we-burger-collapse #primary-menu li.current-menu-item > a {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 36px;
    background: rgba(248, 100, 20, 0.04);
}
.main-header{
    background: #fff;
    opacity: 0.8;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all 0.3s;
}
.scrolling .main-header{
    opacity: 0.97;
}
.header-btn{
    display: flex;
    justify-content: end;
    align-items: center;
}
.header-btn a.contact-us-btn{
    height: 50px;
    padding: 0 30px;
    background: var(--primary-color);
    font-family: var(--text-font);
    display: block;
    width: fit-content;
    align-content: center;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    transition: all 0.3s;
}
.header-btn a.contact-us-btn:hover{
    background: var(--secondary-color);
}
.phone-call {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	text-decoration: none;
}

.phone-icon {
	font-size: 22px;
	display: inline-block;
	animation: phoneRing 1.2s infinite;
	transform-origin: 50% 50%;
    filter: grayscale(1);
}

@keyframes phoneRing {
	0% { transform: rotate(0deg); }
	20% { transform: rotate(15deg); }
	40% { transform: rotate(-10deg); }
	60% { transform: rotate(15deg); }
	80% { transform: rotate(-5deg); }
	100% { transform: rotate(0deg); }
}

/*========================= HOMEPAGE ==============================*/
.home #primary{
    margin-top: -125px;
}
/*Hero Slider*/
.hero-slider-section{
    position: relative;
}
.hero-slider{
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.hero-slider .carousel-cell{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.hero-slider .carousel-cell .slide-bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform-origin: center;
    will-change: transform;
    animation: kenburns-hero 14s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes kenburns-hero{
    0%{
        transform: scale(1) translate3d(0, 0, 0);
    }
    100%{
        transform: scale(1.2) translate3d(-2%, -2%, 0);
    }
}

.overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(14,29,51,.8), rgba(14,29,51,.2));
    z-index: 1;
}
.hero-slider .carousel-cell .inner{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    text-align: center;
    z-index: 2;
}
.hero-slider .carousel-cell .inner .subtitle{
    font-family: "Roboto Slab", serif;
    font-size: 2.2rem;
    line-height: 1.2em;
    font-weight: 200;
    font-style: italic;
    letter-spacing: 3px;
    color: rgba(255,255,255,.5);
    margin-bottom: 5px;
}
.hero-slider .carousel-cell .inner .title{
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    color: #fff;
    font-size: 55px;
    width: 70%;
    margin: 0 auto;
    font-family: var(--title-font);
}
.hero-slider .carousel-cell .inner .btn{
    border: 1px solid #fff;
    padding: 14px 18px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-size: .8rem;
    letter-spacing: 3px;
    color: #fff;
    text-decoration: none;
    transition: all .2s ease;
}
.hero-slider .carousel-cell .inner .btn:hover{
    background: #fff;
    color: #000;
}
.hero-slider .flickity-prev-next-button{
    width: 80px;
    height: 80px;
    background: transparent;
    top: 56%;
}
.hero-slider .flickity-prev-next-button:hover{
    background: transparent;
}
.hero-slider .flickity-prev-next-button .arrow{
    fill: #fff;
}
.hero-slider .flickity-page-dots{
    bottom: 30px;
}
.hero-slider .flickity-page-dots .dot{
    width: 20px;
    height: 2px;
    opacity: 1;
    background: #ffffff8c;
    border: 0;
    border-radius: 0;
    transition: all .3s;
}
.hero-slider .flickity-page-dots .dot.is-selected{
    background: #fff;
    width: 40px;
}

/* ========================= Space Types Section (below hero) ========================= */
.space-types-section{
    background: #fff;
}
.space-types-container{
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.space-card{
    background: #F1F2F2;
    padding: 15%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.space-card:nth-child(2),
.space-card:nth-child(4){
    background: #e6ecff;
}
.space-card img{
    border: 5px solid #fff;
}
.space-card-icon-wrap{
    position: relative;
    margin-bottom: 16px;
    align-self: center;
    width: fit-content;
}
.space-card-icon{
    height: 100px;
    border-radius: 8px;
    margin: 0 auto;
}
.space-card-badge{
    position: absolute;
    top: -23px;
    right: -8px;
    min-width: 50px;
    height: 50px;
    padding: 0 6px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.space-card-title{
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding: 20px 0;
    font-family: var(--title-font);
    text-transform: uppercase;
}
.space-card-desc{
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0 0 16px;
    flex-grow: 1;
}
.space-card-price{
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Last card with actions */
.space-card--with-actions{
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
}
.space-card--with-actions .space-card-icon-wrap{
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 16px;
}
.space-card--with-actions .space-card-content{
    flex: 1 1 180px;
    min-width: 0;
}
.space-card--with-actions .space-card-title,
.space-card--with-actions .space-card-desc,
.space-card--with-actions .space-card-price{
    margin-bottom: 8px;
}
.space-card-actions{
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-left: auto;
}
.space-card-btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    background: #e91e63;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
    transition: transform .2s, box-shadow .2s;
}
.space-card-btn:hover{
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(233,30,99,.4);
}
.space-card-btn--circle{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
}
.space-card-btn--rect{
    padding: 10px 14px;
    border-radius: 8px;
}
.space-card-btn-icon{
    font-size: 1rem;
}

/* ========================= Location CTA Section ========================= */
.location-cta-section{
    padding: 80px 0;
}
.location-cta-inner{
    text-align: center;
    color: #111827;
}
.location-cta-eyebrow{
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.location-cta-title{
    font-size: 2.4rem;
    line-height: 1.25;
    margin: 0 0 16px;
    font-family: var(--title-font);
    text-transform: uppercase;
}
.location-cta-desc{
    max-width: 560px;
    margin: 0 auto 26px;
    color: #374151;
}
.location-cta-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    background: #111827;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 10px 20px rgba(15,23,42,.25);
}
.location-cta-btn:hover{
    background: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(15,23,42,.35);
}

/* ========================= Promo Split Section ========================= */
.promo-split-section{
    background: #f7f7f8;
    padding: 80px 0;
}
.promo-split-inner{
    display: flex;
    align-items: center;
    gap: 60px;
}
.promo-split-text{
    flex: 1 1 0;
}
.promo-split-image{
    flex: 1 1 0;
}
.promo-split-image img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.promo-eyebrow{
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #e65b3c;
    margin-bottom: 14px;
}
.promo-title{
    font-size: 2.3rem;
    line-height: 1.3;
    margin: 0 0 18px;
    color: #111827;
    font-family: var(--title-font);
    text-transform: uppercase;
}
.promo-desc{
    max-width: 460px;
    color: #4b5563;
    margin: 0 0 28px;
}
.promo-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 10px 20px rgba(38,83,255,.25);
}
.promo-btn:hover{
    background: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(38,83,255,.35);
}

/* ========================= Services Grid Section ========================= */
.services-grid-section{
    padding: 80px 0 60px;
    background: #ffffff;
}
.services-grid-header{
    margin-bottom: 28px;
    text-align: center;
}
.services-grid-title{
    margin: 0 0 10px;
    font-size: 2.2rem;
    line-height: 1.25;
    color: #111827;
    font-family: var(--title-font);
    text-transform: uppercase;
}
.services-grid-subtitle{
    margin: 0 auto;
    max-width: 720px;
    color: #4b5563;
}
.services-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
}
.service-tile{
    padding: 40px 32px;
    text-align: center;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 325px;
    overflow: hidden;
}
.service-tile--yellow{
    background: var(--primary-color);
    color: #fff;
}
.service-tile--blue{
    background: var(--secondary-color);
    color: #fff;
}
.service-tile--blue .service-title,
.service-tile--blue .service-text,
.service-tile--yellow .service-text,
.service-tile--yellow .service-title{
    color: #fff;
}
.service-icon{
    width: 65px;
    height: 65px;
    /* border-radius: 50%;
    border: 2px solid currentColor; */
}
.service-tile--yellow .service-icon img,
.service-tile--blue .service-icon img{
    width: 100%;
    filter: invert(1);
}
.service-tile .service-icon img{
    width: 100%;
}
.service-title{
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #111827;
    font-family: var(--title-font);
    font-size: 15px;
    text-transform: uppercase;
}
.service-text{
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4b5563;
    width: 100%;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity .25s ease, height .25s ease;
}
.service-tile:hover .service-text{
    opacity: 1;
    height: 80px;
}

/*==================== WORKSPACE PAGE ==================*/
.page-template-workspace #primary{
    margin-top: -92px;
}

/* ========================= Workspace Services Cards ========================= */
.ws-cards-section {
    padding: 80px 0;
    background: var(--grey-color);
}
.ws-cards-header {
    text-align: center;
    margin-bottom: 48px;
}
.ws-cards-title {
    font-size: 2.4rem;
    font-family: var(--title-font);
    color: #111827;
    text-transform: uppercase;
    margin: 0 0 16px;
}
.ws-cards-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.7;
}
.ws-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ws-card {
    background: #fff;
    padding: 40px 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: box-shadow .25s ease, transform .25s ease;
}
.ws-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.ws-card-icon {
    font-size: 2.6rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1;
}
.ws-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    font-family: var(--text-font);
    margin: 0 0 12px;
}
.ws-card-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* ========================= Quote Request Section (Workspace) ========================= */
.quote-request-section {
    padding: 80px 0;
    background: #fff;
}
.quote-request-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}
.quote-request-text {
    flex: 1 1 0;
}
.quote-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
    font-family: var(--text-font);
}
.quote-title {
    font-size: 2.8rem;
    line-height: 1.15;
    margin: 0 0 20px;
    color: var(--primary-color);
    font-family: var(--title-font);
    text-transform: uppercase;
    font-weight: 700;
}
.quote-desc {
    max-width: 460px;
    color: #4b5563;
    margin: 0 0 24px;
    line-height: 1.7;
}
.quote-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--secondary-color);
    font-family: var(--text-font);
    font-size: 1.05rem;
    font-weight: 700;
    transition: color .2s ease;
}
.quote-phone-link:hover {
    color: var(--primary-color);
}
.quote-phone-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    z-index: 1;
}
.quote-phone-icon::before,
.quote-phone-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.4;
    animation: phone-ripple 2s ease-out infinite;
    z-index: -1;
}
.quote-phone-icon::after {
    opacity: 0.2;
    animation-delay: 0.7s;
}
@keyframes phone-ripple {
    0%   { transform: scale(1);   opacity: 0.45; }
    100% { transform: scale(1.8); opacity: 0; }
}
.quote-request-form-wrap {
    flex: 1 1 0;
}
.quote-form-card {
    background: var(--secondary-color);
    padding: 36px 40px;
}
.quote-form-title {
    font-size: 1.5rem;
    font-family: var(--title-font);
    color: #fff;
    text-align: center;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Ninja Forms — compact field spacing */
.quote-form-card .nf-field-container {
    margin-bottom: 14px !important;
}
.quote-form-card #nf-field-7-wrap .nf-field-element{
    display: flex !important;
}
.quote-form-card .label-above .nf-field-label{
    margin-bottom: 0;
}
.quote-form-card .nf-form-content label,
.quote-form-card .nf-form-content .nf-label-span {
    color: rgba(255,255,255,0.9) !important;
    font-family: var(--text-font);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

/* Base input/select/textarea */
.quote-form-card .nf-form-content input[type="text"],
.quote-form-card .nf-form-content input[type="email"],
.quote-form-card .nf-form-content input[type="tel"],
.quote-form-card .nf-form-content input[type="date"],
.quote-form-card .nf-form-content input[type="number"],
.quote-form-card .nf-form-content select,
.quote-form-card .nf-form-content textarea {
    background: rgba(255,255,255,0.07) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    border-radius: 3px !important;
    color: #fff !important;
    padding: 10px 13px !important;
    font-family: var(--text-font) !important;
    font-size: 0.88rem !important;
    width: 100% !important;
    transition: border-color .2s ease, background .2s ease !important;
}
.quote-form-card .nf-form-content input::placeholder,
.quote-form-card .nf-form-content textarea::placeholder {
    color: rgba(255,255,255,0.3) !important;
    font-size: 0.85rem !important;
}
.quote-form-card .nf-form-content input:focus,
.quote-form-card .nf-form-content select:focus,
.quote-form-card .nf-form-content textarea:focus {
    background: rgba(255,255,255,0.11) !important;
    border-color: var(--primary-color) !important;
    outline: none !important;
}

/* Select options dropdown */
.quote-form-card .nf-form-content select option {
    background: #1c1c1c !important;
    color: #fff !important;
}
.quote-form-card .nf-form-content select option:hover,
.quote-form-card .nf-form-content select option:checked {
    background: var(--primary-color) !important;
    color: #fff !important;
}

/* Select arrow */
.quote-form-card .nf-form-content select {
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255,255,255,0.5)'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    background-size: 18px !important;
    cursor: pointer !important;
    padding-right: 34px !important;
}

/* Textarea compact */
.quote-form-card .nf-form-content textarea {
    min-height: 80px !important;
    resize: none !important;
    height: 100px;
}

/* Date + Time on the same row */
.quote-form-card .nf-form-content .nf-field-element:has(.datepicker-wrap) {
    display: flex !important;
    align-items: stretch !important;
    gap: 10px !important;
}
.quote-form-card .nf-form-content .datepicker-wrap {
    flex: 1 1 auto !important;
    position: relative !important;
}
.quote-form-card .nf-form-content .datepicker-wrap::after {
    content: '\F1F3';
    font-family: 'Bootstrap-icons';
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.35);
    pointer-events: none;
    font-size: 0.9rem;
}
.quote-form-card .nf-form-content .datepicker-wrap input {
    padding-right: 34px !important;
}

/* Time wrap */
.quote-form-card .nf-form-content .time-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    flex-shrink: 0 !important;
    background: rgba(255,255,255,0.07) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    border-radius: 3px !important;
    padding: 0 !important;
}
.quote-form-card .nf-form-content .time-wrap select.hour,
.quote-form-card .nf-form-content .time-wrap select.minute {
    width: 58px !important;
    text-align: center !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    color: #fff !important;
    padding: 10px 4px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    font-family: var(--text-font) !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    cursor: pointer !important;
}
.quote-form-card .nf-form-content .time-wrap .time-sep {
    color: rgba(255,255,255,0.4);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
}
.quote-form-card .nf-form-content .time-wrap select.meridian {
    width: auto !important;
    background: transparent !important;
    border: none !important;
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.78rem !important;
    padding: 10px 4px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    cursor: pointer !important;
}

/* Submit button */
.quote-form-card .nf-form-content input[type="submit"],
.quote-form-card .submit-container input {
    background: var(--primary-color) !important;
    color: #fff !important;
    font-family: var(--text-font) !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    padding: 13px 30px !important;
    border: none !important;
    border-radius: 3px !important;
    cursor: pointer !important;
    transition: background .2s ease !important;
    width: 100% !important;
    margin-top: 6px !important;
}
.quote-form-card .nf-form-content input[type="submit"]:hover,
.quote-form-card .submit-container input:hover {
    background: #fff !important;
    color: var(--secondary-color) !important;
}

/* Error messages */
.quote-form-card .nf-error-msg,
.quote-form-card .nf-form-content .nf-error .ninja-forms-field-error {
    color: #ff8c69;
    font-size: 0.75rem;
    margin-top: 4px;
}


/*=================== STORAGE PAGE =======================*/
.page-template-storage #primary{
    margin-top: -92px;
}


/*=================== CONTACT PAGE =======================*/
.page-template-contact #primary{
    margin-top: -92px;
}

section.contact-details {
    padding:80px 40px;
}

.contact-details-inner {
    max-width:var(--inner-width);
    margin: 0 auto;
    display:flex;
    gap:60px;


}

.contact-details-inner > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.contact-details-inner  div h3 {
    padding-bottom:20px;
    font-family: var(--title-font);
    font-weight:700;
    text-align: center;
    margin-top:70px;
}

.contact-details-inner div p {
    text-align: center;
}


.hours-box p span {
    display: inline-block;
    margin-bottom:1rem
}


.map-box iframe{
    width:100%;
    aspect-ratio: 1 / 1;
    border-radius:50%;
    transition:0.4s ease;
}

.map-box:hover iframe {
    border-radius: unset;
}

section.form-section {
    padding:80px 0 55px;
    background: var(--grey-color);
}

.form-section-inner {
    margin: 0 auto;
    max-width:800px;
}

.form-section-inner h2 {
    font-size: 2.4rem;
    line-height: 1.25;
    margin: 0 0 16px;
    font-family: var(--title-font);
    text-transform: uppercase;
    text-align: center;
}

/*FORM*/

.nf-form-fields-required {
    display:none;
}

.nf-form-content input[type="text"], .nf-form-content input[type="email"], .nf-form-content textarea {
    border:2px solid var(--grey-color);
    padding:10px;
    background-color: #fff;
    outline:none;
    transition: 0.4s ease;
    border-radius:5px;

}

.nf-form-content input[type="text"]:focus, .nf-form-content input[type="email"]:focus, .nf-form-content textarea:focus {
    border: 2px solid #e5ecf1;

}

.nf-form-content input[type="submit"] {
    border:none !important;
    display:block;
    margin:auto;
}

.nf-form-content input::placeholder, .nf-form-content textarea::placeholder {
    font-size:13px;
    opacity:0.7;
}


/*=================== ABOUT US PAGE ===================*/
/* ── About Page ── */
.page-template-about #primary {
    margin-top: -92px;
}

.about-split-section {
    padding: 80px 0;
    background: #fff;
}

.about-split-inner {
    display: flex;
    align-items: center;
    gap: 70px;
}

.about-split-image {
    flex: 1 1 0;
}

.about-split-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-split-text {
    flex: 1 1 0;
}

.about-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 14px;
    font-family: var(--text-font);
}

.about-title {
    font-size: 2.6rem;
    line-height: 1.15;
    margin: 0 0 20px;
    color: var(--primary-color);
    font-family: var(--title-font);
    text-transform: uppercase;
    font-weight: 700;
}

.about-desc {
    max-width: 480px;
    color: #4b5563;
    line-height: 1.8;
    font-family: var(--text-font);
    font-size: 0.95rem;
    margin: 0;
}

/* ── About Services Section ── */
.about-services-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.about-services-header {
    text-align: center;
    margin-bottom: 48px;
}

.about-services-header .about-eyebrow {
    color: rgba(255, 255, 255, 0.45);
}

.about-services-title {
    font-size: 2.4rem;
    font-family: var(--title-font);
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.about-service-card {
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    border-top: 3px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease;
}

.about-service-card--workspace {
    background: rgba(255, 255, 255, 0.05);
    border-top-color: var(--primary-color);
}

.about-service-card--storage {
    background: rgba(255, 255, 255, 0.05);
    border-top-color: var(--primary-color);
}

.about-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.about-service-card-icon {
    font-size: 2.8rem;
    margin-bottom: 24px;
    line-height: 1;
}

.about-service-card--workspace .about-service-card-icon {
    color: var(--primary-color);
}

.about-service-card--storage .about-service-card-icon {
    color: var(--primary-color);
}

.about-service-card-title {
    font-size: 1.7rem;
    font-family: var(--title-font);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0 0 16px;
    font-weight: 700;
}

.about-service-card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    font-family: var(--text-font);
    margin: 0 0 32px;
    flex: 1;
}

.about-service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: var(--text-font);
    transition: gap .2s ease, color .2s ease;
}

.about-service-card--workspace .about-service-card-link {
    color: var(--primary-color);
}

.about-service-card--storage .about-service-card-link {
    color: var(--primary-color);
}

.about-service-card-link:hover {
    gap: 14px;
}

.about-service-card--workspace .about-service-card-link:hover {
    color: #fff;
}

.about-service-card--storage .about-service-card-link:hover {
    color: #fff;
}

/* ── About FAQ Section ── */
.about-faq-section {
    padding: 80px 0;
    background: var(--grey-color);
}

.about-faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.about-faq-title {
    font-size: 2.4rem;
    font-family: var(--title-font);
    color: var(--secondary-color);
    text-transform: uppercase;
    margin: 0;
}

.about-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-left: 3px solid transparent;
    transition: border-color .25s ease;
}

.faq-item.open {
    border-left-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--text-font);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: color .2s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-item.open .faq-question {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform .3s ease;
    color: var(--primary-color);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.75;
}



/*=================== BACK TO TOP BUTTON ============*/
.blok:nth-of-type(odd) {
    background-color:white;
}

.blok:nth-of-type(even) {
background-color:black;
}

@-webkit-keyframes border-transform{
    0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
    14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; }
    28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; }
    42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; }
    56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; }
    70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; }
    84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; }
}
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset  0 0 0 2px rgba(0,0,0,0.1);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    background: #fff;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: rgba(0, 0, 0, 0.3); /* --- Pijl kleur --- */
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
    opacity: 0;
}
.progress-wrap::before {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    background: black; /* --- Pijl hover kleur --- */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
    opacity: 1;
}
.progress-wrap svg path {
    fill: none;
}
.progress-wrap svg.progress-circle path {
    stroke: var(--primary-color);
    stroke-width: 4;
    box-sizing:border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}


/* Contact Info Widget */
.we-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.we-contact li i {
    color: var(--primary-color);
    font-size: 0.95rem;
    flex-shrink: 0;
}

/*================== FOOTER ========================*/
footer{
    background: var(--secondary-color);
    padding-top: 100px;
}
footer .main-footer{
    padding-bottom: 70px;
}
footer .logo-widget img {
    width: 200px;
    height: auto;
}
footer p{
    color: #dadada;
}
footer .widget-title{
    color: #dadada;
    font-size: 21px;
    font-weight: 700;
    font-family: var(--title-font);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.75rem;
}
footer .widget-title::after{
    content: '';
    display: block;
    width: 30%;
    height: 2px;
    margin-top: 0.5rem;
    background: var(--primary-color);
}
footer .menu{
    list-style: none;
    padding-left: 0;
}
footer .menu-item a{
    position: relative;
    display: inline-block;
    color: #dadada;
    text-decoration: none;
    list-style: none;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}
footer .menu-item a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.75;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
footer .menu-item a:hover{
    color: #f5f5f5;
}
footer .menu-item a:hover::after{
    transform: scaleX(1);
}
.footer-copyright{
    background: #dadada;
    color: #1a1a1a;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.footer-copyright p,
.footer-site-info{
    color: #1a1a1a;
}
.footer-copyright a{
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.footer-copyright a:hover{
    color: #000;
    text-decoration: underline;
}
.footer-copyright .widget,
.footer-copyright .widget a{
    color: inherit;
}
.footer-copyright .widget a{
    text-decoration: underline;
    text-underline-offset: 3px;
}
#we_about_short-2{
    padding-top: 30px;
    padding-right: 30px;
}
#we_contact_info-2 a,
#we_contact_info-2 li{
    color: #dadada;
    text-decoration: none;
}

/* Instagram brand gradient (Bootstrap Icons font icon) */
footer .we-social a[aria-label="Instagram"] .bi-instagram{
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
}
footer .we-social a[aria-label="Instagram"]:hover .bi-instagram{
    color: transparent !important;
    -webkit-text-fill-color: transparent;
    filter: brightness(1.12);
}

/* ── Simple Page (Privacy Policy, Cookies etc.) ── */
.simple-page-section {
    padding: 80px 0;
}
.simple-page-inner {
    max-width: 800px;
    margin: 0 auto;
}
.simple-page-title {
    font-family: var(--title-font);
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}
.simple-page-content {
    font-family: var(--text-font);
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}
.simple-page-content h2 {
    font-family: var(--title-font);
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 12px;
}
.simple-page-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
}
.simple-page-content p {
    margin-bottom: 16px;
}
.simple-page-content ul,
.simple-page-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}
.simple-page-content li {
    margin-bottom: 6px;
}
.simple-page-content a {
    color: var(--primary-color);
    text-decoration: underline;
}
.simple-page-content strong {
    color: var(--secondary-color);
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

/* #site-navigation visibility controlled dynamically via inline style in header.php */

@media (prefers-reduced-motion: reduce){
    .hero-slider .carousel-cell .slide-bg{
        animation: none;
        transform: none;
    }
}

@media (max-width: 1200px){
    .hero-slider .carousel-cell .inner{
        top: 55%;
    }
    .hero-slider .carousel-cell .inner .title{
        font-size: 40px;
    }
    .location-cta-title,
    .promo-title,
    .services-grid-title{
        font-size: 35px;
    }
}

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

@media (max-width: 992px){
    .header-left{
        flex: 0 0 50%;
        max-width: 50%;
        display: flex;
        align-items: center;
    }
    .header-right{
        flex: 0 0 50%;
        max-width: 50%;
    }
    header .logo-widget img {
        width: 120px;
        padding: 6px;
        height: auto;
    }
    .header-btn a.contact-us-btn{
        height: 40px;
        padding: 0 15px;
        font-size: 12px;
        display: none;
    }
    .main-header{
        height: 60px;
        align-content: center;
    }
    #webergon_logo_widget-2{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .space-types-container{
        grid-template-columns: repeat(2, 1fr);
    }
    .space-card--with-actions{
        flex-direction: column;
    }
    .space-card-actions{
        flex-direction: row;
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
    }
    .promo-split-section{
        padding: 60px 24px;
    }
    .promo-split-inner{
        flex-direction: column;
        gap: 40px;
    }
    .promo-title{
        font-size: 2rem;
    }
    .ws-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .quote-request-inner {
        flex-direction: column;
        gap: 40px;
    }
    .quote-request-form-wrap {
        width: 100%;
    }
    .quote-title {
        font-size: 2.2rem;
    }
    .contact-details-inner{
        flex-direction: column;
    }
}

@media (max-width: 768px){
    .hero-slider .flickity-prev-next-button{
        top: 85%;
    }
    .hero-slider .carousel-cell .inner .title{
        font-size: 35px;
        width: 98%;
    }
    .location-cta-title, .promo-title, .services-grid-title{
        font-size: 26px;
    }
    .service-text{
        height: auto;
        opacity: 1;
    }
    .service-title{
        font-size: 17px;
    }
    .page-title{
        font-size: 35px;
    }
    #nf-field-5-container,
    #nf-field-6-container,
    #nf-field-7-container,
    #nf-field-8-container,
    #nf-field-10-container,
    #nf-field-11-container,
    #nf-field-14-container,
    #nf-field-15-container,
    #nf-field-17-container,
    #nf-field-18-container{
        width: 100% !important;
        margin-left: 0;
    }
    .ws-cards-title{
        font-size: 26px;
    }
    .quote-title{
        font-size: 26px;
    }
    .about-title{
        font-size: 26px !important;
    }
    .about-services-title{
        font-size: 26px;
    }
    .about-services-grid{
        display: flex;
        flex-direction: column;
    }
    .about-service-card-title{
        font-size: 24px;
    }
    .about-faq-title{
        font-size: 26px;
    }
    section.contact-details{
        padding: 40px;
    }
    .form-section-inner h2{
        font-size: 26px;
    }
    section.form-section{
        padding: 40px 15px;
    }
}

@media (max-width: 640px){
    .services-grid{
        grid-template-columns: 1fr;
    }
    .service-tile{
        padding: 32px 24px;
    }
}

@media (max-width: 576px){
    .space-types-container{
        grid-template-columns: 1fr;
    }
    .custom-logo-link img{
        width: 100%;
        height: auto;
    }
    #we_burger_button-2{
        width: auto;
    }
    .location-cta-section{
        padding: 60px 16px;
    }
    .promo-split-section{
        padding: 50px 18px;
    }
    .ws-cards-section {
        padding: 50px 0;
    }
    .ws-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .quote-request-section {
        padding: 50px 0;
    }
    .quote-form-card {
        padding: 28px 20px;
    }
    .about-split-inner {
        flex-direction: column;
        gap: 36px;
    }
    .about-title {
        font-size: 1.9rem;
    }
}

