/* === BASE === */
html {
	scroll-behavior: smooth;
}

* {
	box-sizing: border-box;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	font-size: 16px;
	color: #555;
}

mark, .has-inline-color {
	background: none !important;
}

/* Kill WP default 24px gap between all blocks */
:root :where(.is-layout-flow) > *,
:root :where(.is-layout-constrained) > *,
.wp-site-blocks > *,
.entry-content > *,
.wp-block-post-content > *,
.wp-block-group > * {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

/* === HIDE CONTACT SECTION (kept in DB but no longer shown) === */
#kontakt,
#contact,
#контакт {
	display: none !important;
}

/* === HIDE "RREATH NESH" (About Us) SECTION === */
#rreth-nesh,
#about,
#за-нас,
#ueber-uns {
	display: none !important;
}

/* === HIDE "MERRNI NJË PREVENTIV FALAS" (CTA) SECTION === */
.cta-banner {
	display: none !important;
}

/* === HIDE "KLIENTËT TANË" (Testimonials) SECTION === */
/* No ID/class on the outer wrapper, so we target the wp-block-group whose
   DIRECT child is a wp-block-columns containing testimonial-card columns.
   This is strict enough to NOT match <main class="wp-block-group"> which
   wraps the whole page (otherwise the entire site would disappear). */
.wp-block-group:has(> .wp-block-columns > .wp-block-column.testimonial-card) {
	display: none !important;
}

/* === HIDE THE "GET A QUOTE" BUTTON (CSS fallback if PHP regex misses it) === */
.wp-block-buttons:has(.wp-block-button__link[href="#kontakt"]),
.wp-block-buttons:has(.wp-block-button__link[href="#contact"]),
.wp-block-buttons:has(.wp-block-button__link[href="#контакт"]) {
	display: none !important;
}

/* === HIDE EMPTY SECTION-HEADING SUBTITLE === */
/* When sq_overrides removes the subtitle text, the <p> stays in the DOM
   but is empty. This rule collapses any empty paragraph in a section heading. */
.section-heading p:empty {
	display: none !important;
}

/* === GALLERY MODAL === */
.service-card-clickable {
	cursor: pointer;
}

.gallery-modal {
	position: fixed;
	inset: 0;
	z-index: 10001;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.gallery-modal[hidden] {
	display: none;
}

.gallery-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(4px);
	animation: galleryFade 0.25s ease;
}

.gallery-modal-box {
	position: relative;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
	max-width: 1100px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 50px 40px 40px;
	animation: galleryPop 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}

.gallery-modal-close {
	position: absolute;
	top: 12px;
	right: 18px;
	background: none;
	border: none;
	font-size: 36px;
	line-height: 1;
	color: #999;
	cursor: pointer;
	padding: 4px 12px;
	transition: color 0.2s ease;
}

.gallery-modal-close:hover {
	color: #B6702A;
}

.gallery-modal-title {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	font-weight: 700;
	color: #0a0a0a;
	margin: 0 0 30px;
	text-align: center;
}

.gallery-modal-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px 20px;
    row-gap: 40px;
}

.gallery-item {
	margin: 0;
	overflow: hidden;
	border-radius: 4px;
	aspect-ratio: 1 / 1;
	background: #f7f4f0;
	cursor: pointer;
}

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

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

.gallery-empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 40px 20px;
	color: #888;
	font-style: italic;
	font-size: 15px;
}

body.gallery-modal-open {
	overflow: hidden;
}

@keyframes galleryFade {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@keyframes galleryPop {
	from { opacity: 0; transform: translateY(15px) scale(0.97); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* === HEADER === */
/* Rendered via wp_body_open — no WP wrappers to fight */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: transparent;
	transition: background 0.3s ease;
}

.site-header.scrolled {
	background: rgba(59, 42, 30, 0.92);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0 40px;
	min-height: 120px;
}

.header-logo {
	display: inline-flex;
	align-items: center;
	color: #fff !important;
	text-decoration: none !important;
	flex-shrink: 0;
	line-height: 0;
}

.header-logo img {
	height: 96px;
	width: auto;
	display: block;
	transition: opacity 0.3s ease;
}

.header-logo:hover img {
	opacity: 0.85;
}

.header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0;
	flex-shrink: 0;
	margin-left: auto;
}

.header-phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.25);
	color: rgba(255,255,255,0.85);
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	padding: 8px 16px;
	margin-right: 20px;
	border-radius: 3px;
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.3s ease;
}

.header-phone:hover {
	background: #B6702A;
	border-color: #B6702A;
	color: #fff;
}

.header-phone svg {
	flex-shrink: 0;
}

/* === PHONE MODAL === */
.phone-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.phone-modal[hidden] {
	display: none;
}

.phone-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.72);
	backdrop-filter: blur(4px);
	animation: phoneFade 0.25s ease;
}

.phone-modal-box {
	position: relative;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 30px 80px rgba(0,0,0,0.4);
	max-width: 440px;
	width: 100%;
	padding: 40px 36px 32px;
	animation: phonePop 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}

.phone-modal-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 32px;
	line-height: 1;
	color: #999;
	cursor: pointer;
	padding: 4px 10px;
	transition: color 0.2s ease;
}

.phone-modal-close:hover {
	color: #B6702A;
}

.phone-modal-title {
	font-family: 'Playfair Display', serif;
	font-size: 26px;
	font-weight: 700;
	color: #0a0a0a;
	margin: 0 0 6px;
	text-align: center;
}

.phone-modal-sub {
	text-align: center;
	color: #888;
	font-size: 14px;
	margin: 0 0 24px;
}

.phone-modal-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.phone-modal-list li + li {
	margin-top: 10px;
}

.phone-modal-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 20px;
	background: #f7f4f0;
	border: 1px solid transparent;
	border-radius: 4px;
	text-decoration: none;
	color: #0a0a0a;
	transition: all 0.25s ease;
}

.phone-modal-list a:hover {
	background: #B6702A;
	border-color: #B6702A;
	color: #fff;
	transform: translateY(-1px);
}

.phone-role {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
	color: #B6702A;
	transition: color 0.25s ease;
}

.phone-modal-list a:hover .phone-role {
	color: #fff;
}

.phone-number {
	font-size: 17px;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
}

@keyframes phoneFade {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes phonePop {
	from { opacity: 0; transform: translateY(10px) scale(0.96); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

body.phone-modal-open {
	overflow: hidden;
}

/* === NAV MENU === */
.site-nav {
	display: flex;
	align-items: center;
}

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

.nav-menu li a {
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.3px;
	color: rgba(255, 255, 255, 0.85);
	padding: 10px 18px;
	transition: color 0.3s ease;
	display: block;
}

.nav-menu li a:hover {
	color: #B6702A;
}

/* === LANGUAGE SWITCHER === */
.lang-switcher {
	list-style: none;
	display: flex;
	gap: 6px;
	margin: 0 0 0 20px;
	padding: 0 0 0 20px;
	align-items: center;
	border-left: 1px solid rgba(255,255,255,0.15);
}

.lang-switcher li {
	display: inline-flex;
}

.lang-switcher li a {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 3px;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	color: rgba(255,255,255,0.5);
	transition: all 0.3s ease;
}

.lang-switcher li a:hover {
	color: #fff;
}

.lang-switcher li.current-lang a {
	background: #B6702A;
	color: #fff;
}

/* === HERO === */
.hero-section {
	min-height: 740px;
	height: 100vh;
	max-height: 900px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.hero-section .wp-block-cover__background {
	background: rgba(0,0,0,0.4) !important;
}

/* === SECTION HEADINGS === */
.section-heading {
	text-align: center;
	margin-bottom: 50px;
}

.section-heading h2 {
	font-family: 'Playfair Display', serif;
	font-size: 36px;
	font-weight: 700;
	color: #0a0a0a;
	margin-bottom: 15px;
}

.section-heading p {
	color: #999;
	font-size: 15px;
	font-weight: 300;
}

/* Decorative line under section titles */
.heading-line {
	width: 73px;
	height: 3px;
	background: #B6702A;
	margin: 15px auto 0;
	border: none;
	opacity: 1;
}

.wp-block-separator.heading-line {
	width: 73px !important;
	border-top: 3px solid #B6702A !important;
	opacity: 1 !important;
}

/* === SERVICE CARDS (image + title) === */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.service-card {
	text-align: center;
	background: #fff;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-3px);
}

.service-card .wp-block-image {
	margin-bottom: 0;
	overflow: hidden;
}

.service-card .wp-block-image img {
	width: 100%;
	height: 254px;
	object-fit: cover;
	transition: transform 0.4s ease;
	display: block;
}

.service-card:hover .wp-block-image img {
	transform: scale(1.05);
}

.service-card h3 {
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #0a0a0a;
	padding: 20px 10px;
	margin: 0;
}

/* Service card hover overlay with icon */
.service-overlay {
	position: absolute;
	inset: 0;
	background: rgba(182, 112, 42, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.service-card:hover .service-overlay {
	opacity: 1;
}

/* === PROCESS / WORKFLOW SECTION === */
.process-section {
	counter-reset: step;
}

.process-step {
	text-align: center;
	padding: 30px 20px;
	position: relative;
}

.process-step::before {
	counter-increment: step;
	content: counter(step, decimal-leading-zero);
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: 48px;
	font-weight: 700;
	color: #B6702A;
	margin-bottom: 15px;
	line-height: 1;
}

.process-step h3 {
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	font-weight: 700;
	color: #0a0a0a;
	margin: 0 0 10px;
}

.process-step p {
	font-size: 14px;
	color: #777;
	line-height: 1.7;
}

/* Connector line between steps */
.process-step::after {
	content: '';
	position: absolute;
	top: 55px;
	right: -15%;
	width: 30%;
	height: 1px;
	background: #ddd;
}

.process-step:last-child::after {
	display: none;
}

/* === TESTIMONIAL STARS === */
.testimonial-stars {
	color: #D4A853;
	font-size: 16px;
	letter-spacing: 3px;
	margin-bottom: 12px;
}

/* === TYPEWRITER HERO === */
.hero-section h1 {
	visibility: hidden;
	min-height: 1.2em;
}

/* === MATERIALS SECTION (Llojet e materialeve) === */
/* Visually identical to "Prodhimet tona": the cards inherit .service-card
   styling (hover zoom, orange overlay with search icon, click → gallery
   modal). This file only adds the section wrapper and the grid layout. */
.materials-section {
	padding: 80px 20px;
	background: #fff;
}

.materials-section .section-heading {
	max-width: 1100px;
	margin: 0 auto 50px;
	text-align: center;
}

.materials-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: 36px;
	font-weight: 700;
	color: #0a0a0a;
	margin: 0 0 15px;
}

.materials-grid {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

/* Placeholder shown when a material category has no photos uploaded yet. */
.materials-placeholder {
	width: 100%;
	height: 254px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f7f4f0;
}

@media (max-width: 768px) {
	.materials-section {
		padding: 60px 18px;
	}
	.materials-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	.materials-section h2 {
		font-size: 28px;
	}
	.gallery-item {
    aspect-ratio: unset !important;
    display: flex;
    flex-direction: column;
    overflow: visible !important;
    }
    
    .gallery-item img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        flex-shrink: 0;
    }
    .gallery-modal-grid {
        row-gap: 40px;
    }
}

/* === PORTFOLIO / PROJECTS === */
/* Show only the LAST 3 portfolio items (everything except the last 3 is hidden).
   Covers both column-based and image-based gallery layouts. */
.portfolio-grid > .wp-block-column:nth-last-child(n+4),
.portfolio-grid .wp-block-columns > .wp-block-column:nth-last-child(n+4),
.portfolio-grid > .wp-block-image:nth-last-child(n+4),
.portfolio-grid .wp-block-gallery > .wp-block-image:nth-last-child(n+4) {
	display: none !important;
}

/* Portfolio images: clickable, opens custom lightbox */
.portfolio-grid a,
.portfolio-grid figure {
	cursor: pointer;
}

/* Hide leftover empty button/link after sq_overrides removed "Më shumë projekte →" */
.wp-block-button:has(.wp-block-button__link:empty),
.wp-block-button__link:empty {
	display: none !important;
}

/* Kill the "More projects" link and its surrounding paragraph by URL.
   Targeting by href is encoding-agnostic and bullet-proof. The page itself
   has been deleted from the database, so the link would 404 anyway. */
a[href*="page_id=59"],
a[href$="/punimet-tona"],
a[href$="/punimet-tona/"] {
	display: none !important;
}
p:has(> a[href*="page_id=59"]),
p:has(> a[href$="/punimet-tona"]),
p:has(> a[href$="/punimet-tona/"]) {
	display: none !important;
}

.portfolio-grid .wp-block-image {
	position: relative;
	overflow: hidden;
	margin-bottom: 0;
}

.portfolio-grid .wp-block-image img {
	width: 100%;
	height: 254px;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
}

.portfolio-grid .wp-block-image:hover img {
	transform: scale(1.08);
}

.portfolio-overlay {
	position: relative;
	overflow: hidden;
}
/* Orange hover overlay removed — only the zoom effect on the image remains. */

/* === LIGHTBOX (portfolio image preview) === */
.lightbox-modal {
	position: fixed;
	inset: 0;
	z-index: 10002;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.lightbox-modal[hidden] {
	display: none;
}

.lightbox-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.96);
	cursor: pointer;
	animation: lightboxFade 0.2s ease;
}

.lightbox-modal-box {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
	padding: 14px;
	animation: lightboxPop 0.25s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}

.lightbox-modal-box img {
	display: block;
	max-width: 100%;
	max-height: calc(90vh - 28px);
	width: auto;
	height: auto;
	object-fit: contain;
}

.lightbox-modal-close {
	position: absolute;
	top: -16px;
	right: -16px;
	width: 40px;
	height: 40px;
	background: #fff;
	border: none;
	border-radius: 50%;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
	font-size: 26px;
	line-height: 1;
	color: #333;
	cursor: pointer;
	transition: color 0.2s ease, transform 0.2s ease;
}

.lightbox-modal-close:hover {
	color: #B6702A;
	transform: scale(1.08);
}

body.lightbox-modal-open {
	overflow: hidden;
}

@keyframes lightboxFade {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@keyframes lightboxPop {
	from { opacity: 0; transform: scale(0.96); }
	to   { opacity: 1; transform: scale(1); }
}

/* === STATS BAR === */
.stats-bar {
	background: #222 !important;
}

.stat-item {
	text-align: center;
	padding: 40px 15px;
}

.stat-number {
	font-family: 'Playfair Display', serif;
	font-size: 48px !important;
	font-weight: 700;
	color: #B6702A !important;
	line-height: 1;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 13px !important;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: rgba(255,255,255,0.6) !important;
	font-weight: 400;
}

/* === TESTIMONIALS === */
.testimonial-card {
	text-align: center;
	padding: 30px 20px;
}

.testimonial-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 20px;
}

.testimonial-quote {
	font-style: italic;
	font-size: 14px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 15px;
}

.testimonial-name {
	font-size: 14px;
	font-weight: 700;
	color: #0a0a0a;
}

/* === CTA BANNER === */
.cta-banner {
	background: #B6702A !important;
	padding: 35px 60px;
}

.cta-banner h2 {
	color: #fff !important;
	font-family: 'Playfair Display', serif;
	font-size: 30px;
	font-weight: 700;
}

.cta-banner p {
	color: rgba(255,255,255,0.85) !important;
	font-size: 15px;
}

.cta-banner .wp-block-button__link {
	background: #fff !important;
	color: #B6702A !important;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 14px 35px;
	transition: all 0.3s ease;
}

.cta-banner .wp-block-button__link:hover {
	background: #0a0a0a !important;
	color: #fff !important;
}

/* === BLOG CARDS === */
.blog-card {
	background: #fff;
	overflow: hidden;
}

.blog-card .wp-block-image img {
	width: 100%;
	height: 193px;
	object-fit: cover;
	display: block;
}

.blog-date {
	display: inline-block;
	background: #B6702A;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 6px 12px;
	margin-bottom: 10px;
}

.blog-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: #0a0a0a;
}

.blog-card h3 a {
	text-decoration: none;
	color: #0a0a0a;
	transition: color 0.3s ease;
}

.blog-card h3 a:hover {
	color: #B6702A;
}

/* === BUTTONS === */
.wp-block-button__link {
	transition: all 0.3s ease !important;
}

.btn-primary {
	background: #B6702A !important;
	color: #fff !important;
	border-radius: 50px !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	letter-spacing: 1.5px !important;
	text-transform: uppercase !important;
	padding: 14px 35px !important;
}

.btn-primary:hover {
	background: #8B5520 !important;
}

/* === SEPARATOR / HR === */
.wp-block-separator {
	border-color: #e5e5e5 !important;
	opacity: 1;
}

/* === FOOTER === */
.site-footer {
	background: #383838;
}

.site-footer h3 {
	color: #fff !important;
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
}

.site-footer p {
	font-size: 14px;
	line-height: 1.9;
	color: rgba(255,255,255,0.6) !important;
}

.site-footer a {
	color: rgba(255,255,255,0.6) !important;
	text-decoration: none;
	transition: color 0.3s ease;
}

.site-footer a:hover {
	color: #B6702A !important;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 20px;
	margin-top: 30px;
}

.footer-bottom p {
	font-size: 13px;
	color: rgba(255,255,255,0.4) !important;
}

/* Social icons in footer */
.social-icons {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}

.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	color: rgba(255,255,255,0.6) !important;
	font-size: 14px;
	transition: all 0.3s ease;
}

.social-icons a:hover {
	background: #B6702A;
	color: #fff !important;
}

/* === GENERAL IMAGES === */
.wp-block-image img {
	transition: transform 0.4s ease;
}

.wp-block-gallery .wp-block-image img {
	border-radius: 0;
}

/* === SCROLL ANIMATIONS === */
.fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger children */
.wp-block-columns > .fade-up:nth-child(2) { transition-delay: 0.15s; }
.wp-block-columns > .fade-up:nth-child(3) { transition-delay: 0.3s; }
.wp-block-columns > .fade-up:nth-child(4) { transition-delay: 0.45s; }

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
	position: fixed;
	bottom: 25px;
	right: 25px;
	z-index: 9998;
	width: 60px;
	height: 60px;
	border: none;
	padding: 0;
	border-radius: 50%;
	background: #25D366;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-decoration: none !important;
	cursor: pointer;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
	width: 30px;
	height: 30px;
}

/* === HAMBURGER BUTTON === */
.hamburger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 10001;
	flex-direction: column;
	gap: 5px;
}

.hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	transition: all 0.3s ease;
	border-radius: 2px;
}

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

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

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

/* === MOBILE MENU OVERLAY === */
.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 280px;
	height: 100vh;
	background: rgba(30, 20, 15, 0.97);
	z-index: 10000;
	padding: 80px 30px 30px;
	transition: right 0.4s ease;
	overflow-y: auto;
}

.mobile-menu.open {
	right: 0;
}

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

.mobile-nav ul li {
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav ul li a {
	display: block;
	color: rgba(255,255,255,0.85);
	text-decoration: none;
	font-size: 15px;
	font-weight: 400;
	padding: 15px 0;
	transition: color 0.3s ease;
}

.mobile-nav ul li a:hover {
	color: #B6702A;
}

.mobile-menu .lang-switcher {
	border-left: none;
	margin: 25px 0 0;
	padding: 20px 0 0;
	border-top: 1px solid rgba(255,255,255,0.08);
	justify-content: flex-start;
}

body.menu-open {
	overflow: hidden;
}

/* === GOOGLE MAP === */
.map-container {
	width: 100%;
	margin-top: 25px;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-container iframe {
	display: block;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
	.process-step::after {
		display: none;
	}
}

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

	.hero-section {
		min-height: 600px;
	}
}

@media (max-width: 768px) {
	.site-footer > div:first-child {
		grid-template-columns: 1fr !important;
		gap: 30px !important;
	}

	.site-header {
		position: fixed;
		background: rgba(30, 20, 15, 0.95);
	}

	.header-inner {
		padding: 0 15px;
		min-height: 60px;
	}

	.header-right {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.header-logo img {
		height: 40px;
	}

	.mobile-phone-trigger {
		margin: 20px 0 0;
		font-size: 16px;
		padding: 12px 22px;
	}

	.phone-modal-box {
		padding: 36px 22px 26px;
	}

	.phone-modal-title {
		font-size: 22px;
	}

	.phone-modal-list a {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		padding: 14px 18px;
	}

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

	.gallery-modal-box {
		padding: 50px 18px 28px;
	}

	.gallery-modal-title {
		font-size: 24px;
		margin-bottom: 22px;
	}

	.gallery-modal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        row-gap: 40px;
    }
    
    .gallery-item {
        aspect-ratio: unset !important;
        display: flex;
        flex-direction: column;
        overflow: visible !important;
    }
    
    .gallery-item img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        flex-shrink: 0;
    }

	/* === LIGHTBOX FULLSCREEN ON MOBILE === */
	/* Maximum image visibility for customers viewing on phones. */
	.lightbox-modal {
		padding: 0;
	}

	.lightbox-modal-backdrop {
		background: #fff;
	}

	.lightbox-modal-box {
		max-width: 100vw;
		max-height: 100vh;
		width: 100vw;
		height: 100vh;
		border-radius: 0;
		padding: 0;
		box-shadow: none;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #fff;
	}

	.lightbox-modal-box img {
		max-width: 100vw;
		max-height: 100vh;
		width: auto;
		height: auto;
	}

	.lightbox-modal-close {
		position: fixed;
		top: 12px;
		right: 12px;
		width: 46px;
		height: 46px;
		font-size: 30px;
		box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
		z-index: 2;
	}

	.hero-section {
		min-height: 550px;
		height: 80vh;
	}

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

	.stat-number {
		font-size: 36px !important;
	}

	.cta-banner {
		padding: 30px 20px;
	}

	.whatsapp-float {
		bottom: 15px;
		right: 15px;
		width: 52px;
		height: 52px;
	}

	.whatsapp-float svg {
		width: 26px;
		height: 26px;
	}
}

/* === KILL WHITE GAP FROM EMPTY HEADER TEMPLATE PART === */
.wp-site-blocks {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

header.wp-block-template-part,
footer.wp-block-template-part {
	display: none !important;
}

.wp-site-blocks > * {
	margin-block-start: 0 !important;
}

.wp-site-blocks > *:first-child {
	margin-top: 0 !important;
}


.gallery-item {
    aspect-ratio: unset !important;
    display: flex;
    flex-direction: column;
    overflow: visible !important;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    flex-shrink: 0;
}

.gallery-caption {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #555;
    padding: 6px 4px;
    background: #fff;
}
