/*
Theme Name: NuxEstate - Minimal
Author: Sadeg02
Author URI: https://github.com/Sadeg02
Description: Custom WordPress theme with minimal horizontal slider, ACF customization, and CF7 integration. Features custom cursor, hover effects, and animated menu.
Version: 2.6.9
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nuxestate
*/

/* ==========================================================================
   Base Styles
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&family=Open+Sans:wght@400;600;700&display=swap');

:root {
    --color-primary: #000;
    --color-secondary: #ffffff;
    --color-background: #19191b;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-accent: #dddddd;
    --color-brand: #8b6f4e;
    --color-dark: #222222;
    --color-background-alt: #f8f8f8;
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: auto; /* Allow natural browser scrolling for smoothness */
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom cursor - only hide native cursor when JS adds this class */
body.custom-cursor-active,
body.custom-cursor-active * {
    cursor: none !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 300; /* Montserrat Light */
    color: var(--color-dark);
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

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

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

/* ==========================================================================
   Page Loader
   ========================================================================== */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transform: translateX(0);
    transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

.page-loader.loaded {
    transform: translateX(100%);
}

.loader-content {
    text-align: center;
    max-width: 400px;
    padding: 40px;
}

.loader-logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto 40px;
    animation: logoFadeIn 0.8s ease-in-out;
}

.loader-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-dark);
    margin-bottom: 40px;
    animation: logoFadeIn 0.8s ease-in-out;
}

.loader-progress {
    width: 100%;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
}

.loader-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-dark) 100%);
    border-radius: 10px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark Page Loader - for front page and minimal template */
.page-loader.dark {
    background: #000000;
}

.page-loader.dark .loader-title {
    color: #ffffff;
}

.page-loader.dark .loader-progress {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-loader.dark .loader-progress-bar {
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
}

/* Light Page Loader - for Bespoq (animated template) - invert logo to black */
.page-loader:not(.dark) .loader-logo {
    filter: invert(1) brightness(0.1);
}

/* ==========================================================================
   Custom Cursor - Dual Cursor System
   ========================================================================== */

/* Small dot at pointer position */
.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(180, 180, 180, 0.8);
    pointer-events: none;
    z-index: 100001;
    transform: translate(-50%, -50%);
    transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    box-shadow: 0 0 10px rgba(180, 180, 180, 0.5);
}

/* Large circle following with delay */
.cursor-circle {
    position: fixed;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(180, 180, 180, 0.4);
    background-color: transparent;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

/* Lighting effect emanating from cursor */
.cursor-light {
    position: fixed;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle,
                rgba(255, 255, 255, 0.12) 0%,
                rgba(255, 255, 255, 0.08) 25%,
                rgba(255, 255, 255, 0.04) 40%,
                rgba(255, 255, 255, 0.02) 55%,
                transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0.8;
    mix-blend-mode: screen;
}

/* Hover state - enlarge both cursor elements */
.cursor-dot.hover {
    width: 8px;
    height: 8px;
    background-color: rgba(180, 180, 180, 0.9);
    box-shadow: 0 0 12px rgba(180, 180, 180, 0.6);
}

.cursor-circle.hover {
    width: 32px;
    height: 32px;
    border-color: rgba(180, 180, 180, 0.6);
    background-color: transparent;
    border-width: 1px;
    opacity: 1;
}

.cursor-light.hover {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle,
                rgba(255, 255, 255, 0.15) 0%,
                rgba(255, 255, 255, 0.10) 25%,
                rgba(255, 255, 255, 0.06) 40%,
                rgba(255, 255, 255, 0.03) 55%,
                transparent 70%);
    opacity: 0.9;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    z-index: 10000;
    pointer-events: none;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 280px;
    background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.7) 0%,
                rgba(0, 0, 0, 0.5) 30%,
                rgba(0, 0, 0, 0.3) 50%,
                rgba(0, 0, 0, 0.1) 70%,
                transparent 100%);
    pointer-events: none;
    z-index: -1;
}

.site-header.header-hidden {
    transform: translateY(-150px);
}

.site-header > * {
    pointer-events: all;
}


.logo-container {
    position: fixed;
    top: 15px;
    left: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1000;
    pointer-events: none;
    max-width: 200px;
}

.site-logo {
    width: 200px;
    height: auto;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.logo-link {
    position: relative;
    display: inline-block;
    pointer-events: all;
}

.logo-link:hover .site-logo {
    opacity: 1;
}

/* Centered Tagline */
.center-tagline {
    position: fixed;
    top:25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    pointer-events: none;
    max-width: 90%;
}

.logo-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    pointer-events: none;
    text-align: center;
    margin: 0;
}

.page-template-default .logo-container {
    left: 50px;
    top: 15px;
}
.page-template-template-home-minimal .logo-container{
    left: 50px;
    top: 20px;
}

.logo-main {
    height: 80px;
    width: auto;
}

.awards-container {
    position: absolute;
    top: 90px;
    left: 50px;
    display: flex;
    gap: 10px;
}

.award-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.language-switcher {
    position: absolute;
    top: 30px;
    right: 100px;
    display: flex;
    gap: 10px;
}

.lang-link {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.6;
    transition: opacity var(--transition-speed);
}

.lang-link:hover,
.lang-link.active {
    opacity: 1;
}

.menu-toggle {
    position: absolute;
    top: 20px;
    right: 50px;
    background: none;
    border: none;
    cursor: none;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 1;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    transform-origin: center;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(0) rotate(0deg);
}

.menu-toggle span:nth-child(2) {
    opacity: 1;
}

.menu-toggle span:nth-child(3) {
    transform: translateY(0) rotate(0deg);
}

/* Active state - X */
.menu-toggle.active span {
    background-color: var(--color-secondary);
}

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

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

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

/* ==========================================================================
   Full Screen Menu
   ========================================================================== */

.fullscreen-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 25%;
    min-width: 380px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 50px 0 0;
    transform: translateX(100%);
    opacity: 1;
    visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.6s;
}

.fullscreen-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.fullscreen-menu nav ul {
    list-style: none;
    text-align: right;
}

.fullscreen-menu nav ul li {
    margin: 15px 0;
    overflow: hidden;
}

.fullscreen-menu nav ul li a {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    display: inline-block;
    transform: translateX(40px);
    opacity: 0;
    transition: transform 0.9s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.9s ease;
}

.fullscreen-menu.active nav ul li a {
    transform: translateX(0);
    opacity: 1;
}

.fullscreen-menu nav ul li a:hover {
    color: var(--color-brand);
}

.fullscreen-menu nav ul li a.current {
    color: var(--color-brand);
}

.fullscreen-menu nav ul li:nth-child(1) a { transition-delay: 0.2s; }
.fullscreen-menu nav ul li:nth-child(2) a { transition-delay: 0.35s; }
.fullscreen-menu nav ul li:nth-child(3) a { transition-delay: 0.5s; }
.fullscreen-menu nav ul li:nth-child(4) a { transition-delay: 0.65s; }
.fullscreen-menu nav ul li:nth-child(5) a { transition-delay: 0.8s; }

/* Menu Container Layout */
.menu-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    width: 100%;
}

/* Menu Footer - Contact & Social */
.menu-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: right;
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.8s ease;
    transition-delay: 1.0s;
}

.fullscreen-menu.active .menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.menu-contact-info {
    margin-bottom: 25px;
}

.menu-contact-item {
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.menu-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-contact-item a:hover {
    color: var(--color-brand);
}

.menu-social-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.menu-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(139, 111, 78, 0.8);
    transition: color 0.3s ease, transform 0.3s ease;
}

.menu-social-link:hover {
    color: #ffffff;
    transform: scale(1.1);
    text-shadow: 0 0 12px rgba(139, 111, 78, 0.5);
}

.menu-social-link svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Social Icons & Widgets
   ========================================================================== */

.social-icons {
    position: fixed;
    bottom: 100px;
    right: 50px;
    display: flex;
    gap: 20px;
    z-index: 100;
}

.social-icon {
    width: 30px;
    height: 30px;
    opacity: 0.7;
    transition: opacity var(--transition-speed);
}

.social-icon:hover {
    opacity: 1;
}

.phone-widget {
    position: fixed;
    bottom: 50px;
    left: 50px;
    z-index: 100;
}

.phone-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform var(--transition-speed);
}

.phone-button:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   Scroll Indicator
   ========================================================================== */

.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    opacity: 1;
    transition: opacity var(--transition-speed);
}

.scroll-indicator.hidden {
    opacity: 0;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid #ffffff;
    border-radius: 25px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll-animation 2s infinite;
}

@keyframes scroll-animation {
    0%, 20% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

/* ==========================================================================
   Parallax Slider - Full Screen Vertical Slider
   ========================================================================== */

.parallax-slider {
    width: 100%;
    position: relative;
}

.parallax-slide {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.parallax-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.parallax-slide-content {
    position: absolute;
    top: 55%;
    left: 20%;
    transform: translateY(-50%);
    max-width: 700px;
    color: #ffffff;
    z-index: 10;
    text-align: left;
}

.parallax-slide-title {
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow:
        0 0 30px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(0, 0, 0, 0.7),
        0 0 90px rgba(0, 0, 0, 0.5),
        3px 3px 12px rgba(0, 0, 0, 1);
    line-height: 1.1;
}

.parallax-slide-subtitle {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: #ffffff;
    text-shadow:
        0 0 25px rgba(0, 0, 0, 0.9),
        0 0 50px rgba(0, 0, 0, 0.7),
        0 0 75px rgba(0, 0, 0, 0.5),
        3px 3px 10px rgba(0, 0, 0, 1);
    margin-bottom: 30px;
}

.slide-link,
.slide-link-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background-color: var(--color-dark);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.slide-link:hover,
.slide-link-button:hover {
    background-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slide-link svg,
.slide-link-button svg {
    transition: transform 0.3s ease;
}

.slide-link:hover svg,
.slide-link-button:hover svg {
    transform: translateX(5px);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 15%, transparent 30%),
        radial-gradient(ellipse at bottom left, rgba(0, 0, 0, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

/* Slider navigation dots */
.slider-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
    max-height: calc(100vh - 200px);
    bottom: 100px;
}

.slider-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-nav-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slider-nav-dot.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.4);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    left: 40px;
    bottom: 40px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--color-secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: var(--color-secondary);
    transition: color 0.3s ease;
}

.back-to-top:hover svg {
    color: var(--color-primary);
}

/* Contact Action Buttons */
.contact-action-buttons {
    position: fixed;
    bottom: 220px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.contact-action-buttons.hidden-for-footer {
    opacity: 0;
    pointer-events: none;
}

.action-button {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-button svg {
    width: 24px;
    height: 24px;
    color: var(--color-secondary);
}

.action-phone {
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4),
                0 2px 8px rgba(0, 0, 0, 0.3);
}

.action-phone svg {
    color: #222222;
}

.action-phone:hover {
    background-color: #f0f0f0;
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5),
                0 3px 10px rgba(0, 0, 0, 0.4);
}

.action-contact {
    background-color: #222222;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3),
                0 2px 8px rgba(255, 255, 255, 0.2);
}

.action-contact:hover {
    background-color: #000000;
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4),
                0 3px 10px rgba(255, 255, 255, 0.3);
}

/* Language Switcher Button */
.action-language {
    position: relative;
    background-color: #222222;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3),
                0 2px 8px rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.action-language .current-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease;
}

.action-language .current-lang img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.action-language:hover {
    background-color: #000000;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4),
                0 3px 10px rgba(255, 255, 255, 0.3);
}

.action-language:hover .current-lang {
    transform: scale(1.1);
}

/* Language Dropdown - Expand Right (buttons on left) */
.language-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #222222;
    min-width: 90px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 101;
}

.action-language:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.language-dropdown .language-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.language-dropdown .language-menu li {
    margin: 0;
}

.language-dropdown .language-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

/* TranslatePress flag fixes */
.trp-menu-ls-label .trp-flag-image {
    margin: -2px 0px !important;
}

.language-dropdown .language-menu a:hover {
    background-color: #333333;
}

.language-dropdown .language-menu img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

/* Current language indicator */
.language-dropdown .language-menu .current-menu-item a,
.language-dropdown .language-menu .current-language-menu-item a {
    background-color: #333333;
}

/* ==========================================================================
   Homepage Specific Styles
   ========================================================================== */

/* Remove footer padding on homepage only */
.home .site-footer {
    padding: 0;
    margin: 0;
}

/* Show scroll indicator on pages with hero sections */
.scroll-indicator {
    display: none;
}

.home .scroll-indicator,
.page-template-template-portfolio .scroll-indicator,
.page-template-template-about .scroll-indicator,
.page-template-template-process .scroll-indicator {
    display: block;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media screen and (max-width: 1024px) {
    /* Restore default cursor on tablets and mobile */
    body,
    *,
    .menu-toggle {
        cursor: auto !important;
    }

    /* Hide custom cursor elements */
    .cursor-dot,
    .cursor-circle,
    .cursor-light {
        display: none !important;
    }

    /* Disable page loader on mobile for better performance (FCP) */
    .page-loader {
        display: none !important;
    }

    #page {
        opacity: 1 !important;
    }

    .fullscreen-menu nav ul li a {
        font-size: 20px;
    }

    .parallax-slide-title {
        font-size: 54px;
    }

    .parallax-slide-subtitle {
        font-size: 18px;
    }

    .parallax-slide-content {
        top: 45%;
        right: 80px;
        max-width: 600px;
    }

    .slider-nav {
        right: 20px;
    }

    .back-to-top {
        left: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }


    .action-button {
        width: 50px;
        height: 50px;
    }

    .action-button svg {
        width: 24px;
        height: 24px;
    }
}

/* Tagline repositioning at 900px */
@media screen and (max-width: 900px) {
    .center-tagline {
        position: fixed;
        bottom: auto;
        top: 25px;
        left: 260px;
        right: auto;
        transform: none;
        max-width: 150px;
        padding: 0;
    }

    .logo-tagline {
        font-size: 12px;
        letter-spacing: 1.5px;
        text-align: left;
        line-height: 1.8;
        word-spacing: 100vw;
    }
}

@media screen and (max-width: 768px) {
    /* Restore default cursor on mobile */
    body,
    *,
    .menu-toggle {
        cursor: auto !important;
    }

    /* Hide custom cursor elements */
    .cursor-dot,
    .cursor-circle,
    .cursor-light {
        display: none !important;
    }

    /* Disable page loader on mobile for better performance (FCP) */
    .page-loader {
        display: none !important;
    }

    #page {
        opacity: 1 !important;
    }

    /* Hide scroll indicator on mobile homepage */
    .home .scroll-indicator {
        display: none;
    }

    .site-header {
        padding: 20px 30px;
    }

    .logo-container {
        left: 30px;
        top: 25px;
    }

    .awards-container {
        left: 30px;
        right: auto;
    }

    .menu-toggle {
        right: 30px;
        left: auto;
    }

    .language-switcher {
        right: 80px;
        left: auto;
    }

    .fullscreen-menu {
        width: 100%;
    }

    .fullscreen-menu nav ul li a {
        font-size: 17px;
        letter-spacing: 2px;
    }

    .parallax-slide-title {
        font-size: 32px;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .parallax-slide-subtitle {
        font-size: 16px;
        line-height: 1.4;
    }

    .parallax-slide-content {
        top: 50%;
        right: 30px;
        left: 30px;
        text-align: center;
        max-width: calc(100% - 60px);
    }

    .slider-nav {
        right: 15px;
        gap: 10px;
    }

    .slider-nav-dot {
        width: 10px;
        height: 10px;
    }

    .back-to-top {
        display: none;
    }

    .contact-action-buttons {
        bottom: 160px;
    }

    .action-button {
        width: 45px;
        height: 45px;
    }

    .action-button svg {
        width: 22px;
        height: 22px;
    }

    .social-icons,
    .phone-widget {
        bottom: 100px;
    }
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */

.site-footer {
    background-color: #0a0a0a;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0;
}

.footer-content {
    padding: 80px 0 240px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 80px;
}

.footer-column {
    min-width: 0;
}

/* Left Column - About */
.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 85px;
    width: auto;
}

.footer-heading {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.footer-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    border: 2px solid var(--color-brand);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-button svg {
    transition: transform 0.3s ease;
}

.footer-button:hover {
    background-color: var(--color-brand);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 111, 78, 0.4),
                0 5px 15px rgba(139, 111, 78, 0.2);
}

.footer-button:hover svg {
    transform: translateX(5px);
}

/* Middle Column - Links */
.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-heading);
}

.footer-navigation {
    margin: 0;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 14px;
}

.footer-menu a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-speed);
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--color-brand);
}

/* Right Column - Contact */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.footer-contact-item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-label {
    font-weight: 600;
    color: #ffffff;
    margin-right: 8px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-speed);
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--color-brand);
}

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

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(139, 111, 78, 0.15);
    color: rgba(139, 111, 78, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(139, 111, 78, 0.25);
}

.footer-social-link:hover {
    background-color: rgba(139, 111, 78, 0.85);
    color: #ffffff;
    transform: translateY(-3px);
    border-color: rgba(139, 111, 78, 0.9);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-privacy-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-privacy-link:hover {
    color: #ffffff;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-credit {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-credit:hover {
    color: #ffffff;
}

/* Responsive Footer */
@media screen and (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 50px;
    }

    .container {
        padding: 0 40px;
    }
}

@media screen and (max-width: 768px) {
    .footer-content {
        padding: 60px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .container {
        padding: 0 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-heading,
    .footer-title {
        text-align: center;
    }

    .footer-description {
        text-align: center;
    }

    .footer-button {
        display: block;
        text-align: center;
        max-width: 250px;
        margin: 0 auto;
    }

    .footer-menu {
        text-align: center;
    }

    .footer-contact-info {
        text-align: center;
    }

    .footer-social-links {
        justify-content: center;
    }
}

/* ===================================
   Contact Form Section
   =================================== */
.contact-form-section {
    padding: 80px 20px;
    background-color: var(--color-secondary);
}

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

.contact-form-section .section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--color-dark);
    font-weight: 700;
}

.contact-form-section .section-description {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .contact-form-section {
        padding: 60px 20px;
    }

    .contact-form-section .section-title {
        font-size: 32px;
    }

    .contact-form-section .section-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

/* ==========================================================================
   Portfolio Template
   ========================================================================== */
.portfolio-page {
    min-height: 100vh;
    padding-top: 0;
    background-color: var(--color-background);
}

.portfolio-hero {
    height: 70vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 15%, transparent 30%),
        rgba(0, 0, 0, 0.15);
}

.portfolio-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-secondary);
    padding: 20px;
}

.portfolio-hero-title {
    color: #fff;
    font-size: 72px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
}

.portfolio-hero-subtitle {
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 0 80px;
}


.portfolio-grid-wrapper .container {
    max-width: none;
    padding: 0 15px;
    margin: 0px;
}

.portfolio-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.portfolio-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item-inner {
    background: var(--color-dark);
    border-radius: 0;
    overflow: hidden;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.portfolio-item-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-item-image {
    position: relative;
    overflow: hidden;
    padding-bottom: 75%; /* taller images */
}

.portfolio-item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item-inner:hover .portfolio-item-image img {
    transform: scale(1.05);
}

.portfolio-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.portfolio-item-inner:hover .portfolio-item-overlay {
    opacity: 1;
}

.portfolio-item-overlay-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.portfolio-item-overlay .portfolio-item-title {
    color: #fff;
    font-size: 28px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.portfolio-item-overlay .portfolio-item-category {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    opacity: 0.8;
}

.portfolio-item-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
}

.portfolio-item-title-text {
    font-size: 24px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    color: #ffffff;
}

.portfolio-item-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 300;
    color: #aaaaaa;
}

.portfolio-item-description {
    color: #aaaaaa;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
}

.portfolio-item-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    border: 2px solid #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
}

.portfolio-item-link svg {
    transition: transform 0.3s ease;
}

.portfolio-item-link:hover {
    background-color: #ffffff;
    color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-item-link:hover svg {
    transform: translateX(5px);
}

.no-portfolio {
    text-align: center;
    padding: 100px 20px;
    color: #aaaaaa;
}

@media screen and (max-width: 768px) {
    .portfolio-hero-title {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .portfolio-hero-subtitle {
        font-size: 18px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Portfolio Pagination - NuxEstate Professional Style */
.portfolio-pagination {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin-top: 80px;
    padding: 0;
    background: var(--color-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 25px 35px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
}

.pagination-btn:hover {
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.03);
}

.pagination-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.pagination-btn.pagination-prev:hover svg {
    transform: translateX(-4px);
}

.pagination-btn.pagination-next:hover svg {
    transform: translateX(4px);
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination-numbers .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 55px;
    height: 75px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.pagination-numbers .page-numbers:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.pagination-numbers .page-numbers.current {
    color: #fff;
    font-weight: 500;
}

.pagination-numbers .page-numbers.current::after {
    content: '';
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--color-primary);
}

@media (max-width: 768px) {
    .portfolio-pagination {
        flex-wrap: wrap;
    }

    .pagination-btn {
        padding: 18px 25px;
        font-size: 11px;
    }

    .pagination-numbers {
        order: -1;
        width: 100%;
        justify-content: center;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pagination-numbers .page-numbers {
        min-width: 45px;
        height: 60px;
        font-size: 12px;
    }
}

/* CTA Section */
.portfolio-cta {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.portfolio-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.portfolio-cta .container {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    color: #ffffff;
}

.cta-text {
    font-size: 18px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    border: 2px solid var(--color-brand);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background-color: var(--color-brand);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 111, 78, 0.4),
                0 5px 15px rgba(139, 111, 78, 0.2);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

@media screen and (max-width: 768px) {
    .portfolio-cta {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .cta-text {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 12px;
    }
}
.about-page {
    min-height: 100vh;
    padding-top: 0;
    background-color: var(--color-background);
}

.about-hero {
    height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 15%, transparent 30%),
        rgba(0, 0, 0, 0.15);
}

.about-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-secondary);
}

.about-hero-title {
    color: #fff;
    font-size: 72px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
}

.about-values {
    padding: 80px 20px;
    margin-top: 90px;
    background-color: var(--color-background);
}

.about-team {
    padding: 80px 20px;
    background-color: var(--color-background);
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-brand);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--color-dark);
    border: 2px solid transparent;
    transition: all var(--transition-speed);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--color-brand);
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.value-title {
    font-size: 24px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    color: var(--color-brand);
}

.value-description {
    color: #aaaaaa;
    font-weight: 300;
    line-height: 1.6;
}

/* Text + Image Section */
.about-textimage {
    padding: 100px 20px;
    background-color: var(--color-background);
}

.textimage-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.textimage-content {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.textimage-content.animated {
    opacity: 1;
    transform: translateX(0);
}

.textimage-title {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--color-brand);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

.textimage-subtitle {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

.textimage-divider {
    width: 160px;
    height: 3px;
    background: var(--color-brand);
    margin-bottom: 25px;
}

.textimage-text {
    font-size: 18px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    color: #aaaaaa;
}

.textimage-image {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    overflow: hidden;
}

.textimage-image.animated {
    opacity: 1;
    transform: translateX(0);
}

.textimage-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.textimage-image:hover img {
    transform: scale(1.05);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    transition: transform var(--transition-speed);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member-photo {
    width: 100%;
    height: 400px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-name {
    font-size: 24px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 5px;
    color: #ffffff;
}

.team-member-position {
    color: var(--color-brand);
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
}

.team-member-bio {
    color: #aaaaaa;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

.about-content {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Timeline Section */
.about-timeline {
    padding: 100px 20px;
    background-color: var(--color-background);
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
        transparent 0%,
        #ffffff 5%,
        #ffffff 95%,
        transparent 100%);
    opacity: 0.5;
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    align-items: start;
}

.timeline-item.animated {
    opacity: 1;
}

.timeline-item.left {
    transform: translateX(-30px);
}

.timeline-item.right {
    transform: translateX(30px);
}

.timeline-item.left.animated {
    transform: translateX(0);
}

.timeline-item.right.animated {
    transform: translateX(0);
}

.timeline-item.left .timeline-content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
    padding-right: 40px;
}

.timeline-item.left .timeline-icon {
    grid-column: 2;
    grid-row: 1;
}

.timeline-item.left .timeline-empty {
    grid-column: 3;
    grid-row: 1;
}

.timeline-item.right .timeline-empty {
    grid-column: 1;
    grid-row: 1;
}

.timeline-item.right .timeline-icon {
    grid-column: 2;
    grid-row: 1;
}

.timeline-item.right .timeline-content {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
    padding-left: 40px;
}

.timeline-icon {
    width: 80px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark);
    border: 2px solid transparent;
    position: relative;
    z-index: 2;
    transition: transform var(--transition-speed), background-color var(--transition-speed);
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.4);
}

.timeline-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--color-brand);
    border-radius: 50%;
}

.timeline-content {
    background: var(--color-dark);
    padding: 30px;
    border: 2px solid transparent;
    transition: all var(--transition-speed);
    align-self: start;
}

.timeline-item:hover .timeline-content,.timeline-item:hover .timeline-icon {
    border-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.timeline-date {
    font-size: 24px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    color: var(--color-secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timeline-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--color-brand);
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

.timeline-description {
    color: #aaaaaa;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    font-size: 16px;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.about-cta .container {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    color: #ffffff;
}

.cta-text {
    font-size: 18px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    border: 2px solid #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

@media screen and (max-width: 768px) {
    .about-hero-title {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .section-title {
        font-size: 32px;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .textimage-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .textimage-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .textimage-subtitle {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .textimage-divider {
        width: 60px;
        height: 2px;
        margin-bottom: 20px;
    }

    .textimage-text {
        font-size: 16px;
    }

    .textimage-content,
    .textimage-image {
        transform: translateY(20px);
    }

    .textimage-content.animated,
    .textimage-image.animated {
        transform: translateY(0);
    }

    .about-cta {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .cta-text {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 12px;
    }

    .timeline-wrapper::before {
        left: 40px;
    }

    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .timeline-item.left,
    .timeline-item.right {
        transform: translateY(20px);
    }

    .timeline-item.left.animated,
    .timeline-item.right.animated {
        transform: translateY(0);
    }

    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        grid-column: 2;
        text-align: left;
        padding-left: 0;
        padding-right: 0;
        padding: 20px;
    }

    .timeline-item.left .timeline-icon,
    .timeline-item.right .timeline-icon {
        grid-column: 1;
    }

    .timeline-item.left .timeline-empty,
    .timeline-item.right .timeline-empty {
        display: none;
    }

    .timeline-icon {
        width: 60px;
        min-height: 60px;
    }

    .timeline-icon img {
        width: 35px;
        height: 35px;
    }

    .timeline-dot {
        width: 15px;
        height: 15px;
    }

    .timeline-date {
        font-size: 18px;
    }

    .timeline-title {
        font-size: 20px;
    }

    .timeline-description {
        font-size: 14px;
    }
}
.contact-page {
    min-height: 100vh;
    padding-top: 120px;
    background-color: #000000;
}

.contact-header {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 64px;
    font-weight: 300;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 5px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-brand);
}

.contact-subtitle {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.contact-wrapper {
    padding: 0 20px 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #ffffff;
    border-bottom: 2px solid rgba(139, 111, 78, 0.2);
    padding-bottom: 20px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
    transition: all var(--transition-speed) ease;
}

.contact-info-item:hover svg {
    color: var(--color-brand);
    filter: drop-shadow(0 0 4px rgba(139, 111, 78, 0.4));
}

.contact-info-item h3 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 5px;
    color: #ffffff;
    transition: color var(--transition-speed) ease;
}

.contact-info-item:hover h3 {
    color: var(--color-brand);
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-weight: 300;
}

.contact-info-item a {
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-speed);
}

.contact-info-item a:hover {
    color: var(--color-brand);
}

.contact-social {
    margin-top: 40px;
}

.contact-social h3 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-social-icons {
    display: flex;
    gap: 15px;
}

.contact-social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-speed);
}

.contact-social-icons a:hover {
    background-color: rgba(139, 111, 78, 0.15);
    color: var(--color-brand);
    border-color: rgba(139, 111, 78, 0.5);
}

.contact-form-wrapper {
    background-color: transparent;
    padding: 40px;
    padding-top: 0;
}

.contact-form-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-form-description {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.no-form-message {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 20px;
}

/* Contact Form 7 Styles */
.contact-page .wpcf7-form input[type="text"],
.contact-page .wpcf7-form input[type="email"],
.contact-page .wpcf7-form input[type="tel"],
.contact-page .wpcf7-form input[type="url"],
.contact-page .wpcf7-form textarea,
.contact-page .wpcf7-form select {
    width: 100%;
    padding: 12px 18px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-page .wpcf7-form input[type="text"]:focus,
.contact-page .wpcf7-form input[type="email"]:focus,
.contact-page .wpcf7-form input[type="tel"]:focus,
.contact-page .wpcf7-form input[type="url"]:focus,
.contact-page .wpcf7-form textarea:focus,
.contact-page .wpcf7-form select:focus {
    background-color: rgba(255, 255, 255, 0.20);
    border-color: rgba(139, 111, 78, 0.6);
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 111, 78, 0.15);
}

.contact-page .wpcf7-form input::placeholder,
.contact-page .wpcf7-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-page .wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-page .wpcf7-form input[type="submit"] {
    padding: 12px 40px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-page .wpcf7-form input[type="submit"]:hover {
    background-color: rgba(139, 111, 78, 0.15);
    border-color: var(--color-brand);
    color: var(--color-brand);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(139, 111, 78, 0.2);
}

.contact-page .wpcf7-form label {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    margin-bottom: 8px;
    display: block;
}

.contact-page .wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 12px;
}

.contact-page .wpcf7-validation-errors,
.contact-page .wpcf7-mail-sent-ok {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-weight: 300;
    padding: 15px;
    margin: 20px 0;
}

.wpcf7-form .wpcf7-not-valid {
    border-color: #dc3545 !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #ffb900;
    color: #fff;
}

.contact-content {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media screen and (max-width: 768px) {
    .contact-title {
        font-size: 36px;
    }

    .contact-wrapper {
        padding: 0 20px 60px;
    }

    .contact-form-wrapper {
        padding: 15px 0;
    }

    .contact-wrapper .container {
        padding: 0;
    }
}
/* ==========================================================================
   Process Template
   ========================================================================== */
.process-page {
    min-height: 100vh;
    padding-top: 0;
    background-color: var(--color-background);
}

.process-hero {
    height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 15%, transparent 30%),
        rgba(0, 0, 0, 0.15);
}

.process-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-secondary);
    padding: 20px;
}

.process-hero-title {
    color: #fff;
    font-size: 72px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
}

.process-hero-subtitle {
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.process-steps {
    padding: 0 20px 100px;
    margin-top: 90px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 100px;
    width: 2px;
    background: linear-gradient(to bottom,
        transparent 0%,
        #ffffff 10%,
        #ffffff 90%,
        transparent 100%);
    opacity: 0.3;
    transform: translateX(-50%);
}

.process-step {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
}

.process-step.animated {
    opacity: 1;
    transform: translateY(0);
}

.process-step-inner {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: flex-start;
    padding: 30px;
    background: var(--color-dark);
    transition: all var(--transition-speed);
    border: 2px solid transparent;
}

.process-step-inner:hover {
    border-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateX(5px);
}

.process-step.even .process-step-inner {
    grid-template-columns: 1fr 150px;
}

.process-step.even .process-step-inner:hover {
    transform: translateX(-5px);
}

.process-step.even .process-step-number {
    order: 2;
}

.process-step.even .process-step-content {
    order: 1;
    text-align: right;
}

.process-step-number {
    position: relative;
}

.process-step-number span {
    font-size: 120px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    opacity: 0.15;
    line-height: 1;
    transition: opacity var(--transition-speed), transform var(--transition-speed);
    display: block;
}

.process-step-inner:hover .process-step-number span {
    opacity: 0.3;
    transform: scale(1.05);
}

.process-step-content {
    padding-top: 20px;
}

.process-step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    transition: transform var(--transition-speed);
    color: var(--color-brand);
}

.process-step-inner:hover .process-step-icon {
    transform: scale(1.1);
}

.process-step.even .process-step-icon {
    margin-left: auto;
}

.process-step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter var(--transition-speed);
}

.process-step-title {
    font-size: 36px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color var(--transition-speed);
}

.process-step-inner:hover .process-step-title {
    color: var(--color-brand);
}

.process-step-description {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: #aaaaaa;
}

.process-cta {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.process-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.process-cta .container {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    color: #ffffff;
}

.cta-text {
    font-size: 18px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    border: 2px solid #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.process-content {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 968px) {
    .process-step-inner:hover {
        transform: translateY(-3px);
    }

    .process-step.even .process-step-inner:hover {
        transform: translateY(-3px);
    }
}

@media screen and (max-width: 768px) {
    .process-hero-title {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .process-hero-subtitle {
        font-size: 18px;
    }

    .process-step-inner {
        display: block;
        padding: 20px;
    }

    .process-step.even .process-step-inner {
        display: block;
    }

    .process-step-number {
        display: inline-block;
        vertical-align: top;
        margin-right: 15px;
    }

    .process-step.even .process-step-number {
        display: inline-block;
        margin-right: 0;
        margin-left: 15px;
        order: 0;
        float: right;
    }

    .process-step-icon {
        display: block;
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
        margin-top: 5px;
    }

    .process-step.even .process-step-icon {
        margin-left: auto;
        margin-right: 0;
    }

    .process-step-number span {
        font-size: 60px;
    }

    .process-step-content {
        padding-top: 20px;
        text-align: left;
        clear: both;
    }

    .process-step.even .process-step-content {
        text-align: right;
        clear: both;
    }

    .process-step-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .process-step-description {
        font-size: 16px;
    }

    .process-cta {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .cta-text {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 12px;
    }
}
/* ==========================================================================
   Privacy Policy Template
   ========================================================================== */
.privacy-page {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: var(--color-secondary);
}

.privacy-page .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-content {
    background-color: var(--color-secondary);
}

.privacy-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    color: var(--color-brand);
    text-align: center;
}

.privacy-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

.privacy-text p {
    margin-bottom: 20px;
}

.privacy-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.privacy-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.privacy-text ul,
.privacy-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-text li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.privacy-text strong {
    color: var(--color-dark);
    font-weight: 700;
}

.privacy-text a {
    color: var(--color-primary);
    transition: color var(--transition-speed);
}

.privacy-text a:hover {
    color: var(--color-dark);
}

@media screen and (max-width: 768px) {
    .privacy-page {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .privacy-title {
        font-size: 32px;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    .privacy-text {
        font-size: 15px;
    }

    .privacy-text h2 {
        font-size: 24px;
        margin-top: 30px;
    }

    .privacy-text h3 {
        font-size: 20px;
        margin-top: 25px;
    }
}

/* ==========================================================================
   Extra Small Devices (Mobile)
   ========================================================================== */

@media screen and (max-width: 480px) {
    .parallax-slide-content {
        top: 50%;
        right: 20px;
        left: 20px;
        text-align: center;
        max-width: calc(100% - 40px);
    }

    .logo-container {
        left: 15px !important;
        right: auto !important;
        top: 20px !important;
        max-width: 140px;
    }

    .center-tagline {
        top: 27px;
        left: 160px;
        right: auto;
        max-width: 100px;
    }

    .logo-tagline {
        font-size: 10px;
        letter-spacing: 1px;
        text-align: left;
        line-height: 1.6;
        word-spacing: 100vw;
    }

    .menu-toggle {
        right: 15px !important;
    }

    .language-switcher {
        right: 60px;
    }
}

/* ==========================================================================
   Minimal Homepage Template (Arcdeco Style)
   All styles scoped to .minimal-template-wrapper to avoid conflicts
   ========================================================================== */

/* Container variations */
.minimal-template-wrapper .container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Minimal Hero Section */
.minimal-template-wrapper .minimal-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #ffffff;
    padding: 120px 60px;
}

.minimal-template-wrapper .minimal-hero-content {
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.minimal-template-wrapper .hero-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-light);
    display: block;
    margin-bottom: 20px;
}

.minimal-template-wrapper .hero-title {
    font-size: 80px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--color-dark);
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.minimal-template-wrapper .hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto 40px;
}

.minimal-template-wrapper .hero-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background-color: var(--color-dark);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.minimal-template-wrapper .hero-button:hover {
    background-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.minimal-template-wrapper .hero-button svg {
    transition: transform 0.3s ease;
}

.minimal-template-wrapper .hero-button:hover svg {
    transform: translateX(5px);
}

/* Services Section */
.minimal-template-wrapper .minimal-services {
    padding: 120px 0;
    background-color: #fafafa;
}

.minimal-template-wrapper .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.minimal-template-wrapper .section-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-light);
    display: block;
    margin-bottom: 15px;
}

.minimal-template-wrapper .section-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -1px;
    color: var(--color-dark);
    font-family: var(--font-heading);
}

.minimal-template-wrapper .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
}

.minimal-template-wrapper .service-item {
    text-align: center;
    padding: 40px 20px;
    transition: transform 0.3s ease;
}

.minimal-template-wrapper .service-item:hover {
    transform: translateY(-5px);
}

.minimal-template-wrapper .service-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    display: block;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.minimal-template-wrapper .service-title {
    font-size: 28px;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.minimal-template-wrapper .service-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

/* Portfolio Grid Section */
.minimal-template-wrapper .minimal-portfolio {
    padding: 120px 0;
    background-color: #ffffff;
}

.minimal-template-wrapper .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.minimal-template-wrapper .portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    cursor: pointer;
}

.minimal-template-wrapper .portfolio-item-large {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.minimal-template-wrapper .portfolio-item-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.minimal-template-wrapper .portfolio-item-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.minimal-template-wrapper .portfolio-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.minimal-template-wrapper .portfolio-item:hover .portfolio-item-image img {
    transform: scale(1.05);
}

.minimal-template-wrapper .portfolio-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.minimal-template-wrapper .portfolio-item:hover .portfolio-item-overlay {
    opacity: 1;
}

.minimal-template-wrapper .portfolio-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: #ffffff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.minimal-template-wrapper .portfolio-item:hover .portfolio-item-content {
    transform: translateY(0);
    opacity: 1;
}

.minimal-template-wrapper .portfolio-category {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 10px;
}

.minimal-template-wrapper .portfolio-title {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    font-family: var(--font-heading);
}

/* CTA Section */
.minimal-template-wrapper .minimal-cta {
    padding: 150px 0;
    background-color: var(--color-dark);
    color: #ffffff;
    text-align: center;
}

.minimal-template-wrapper .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.minimal-template-wrapper .cta-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.minimal-template-wrapper .cta-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.minimal-template-wrapper .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background-color: #ffffff;
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.minimal-template-wrapper .cta-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.minimal-template-wrapper .cta-button svg {
    transition: transform 0.3s ease;
}

.minimal-template-wrapper .cta-button:hover svg {
    transform: translateX(5px);
}

/* Responsive Design for Minimal Template */
@media screen and (max-width: 1024px) {
    .minimal-template-wrapper .container-wide {
        padding: 0 40px;
    }

    .minimal-template-wrapper .minimal-hero {
        padding: 100px 40px;
    }

    .minimal-template-wrapper .hero-title {
        font-size: 60px;
    }

    .minimal-template-wrapper .section-title {
        font-size: 40px;
    }

    .minimal-template-wrapper .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
    }

    .minimal-template-wrapper .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .minimal-template-wrapper .portfolio-item-large {
        grid-column: span 1;
        aspect-ratio: 4 / 5;
    }

    .minimal-template-wrapper .cta-title {
        font-size: 42px;
    }
}

@media screen and (max-width: 768px) {
    .minimal-template-wrapper .container-wide {
        padding: 0 30px;
    }

    .minimal-template-wrapper .minimal-hero {
        padding: 80px 30px;
        min-height: 80vh;
    }

    .minimal-template-wrapper .hero-title {
        font-size: 42px;
    }

    .minimal-template-wrapper .hero-description {
        font-size: 16px;
    }

    .minimal-template-wrapper .minimal-services,
    .minimal-template-wrapper .minimal-portfolio {
        padding: 80px 0;
    }

    .minimal-template-wrapper .section-title {
        font-size: 32px;
    }

    .minimal-template-wrapper .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .minimal-template-wrapper .service-item {
        padding: 20px 10px;
    }

    .minimal-template-wrapper .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .minimal-template-wrapper .portfolio-item-content {
        padding: 30px;
    }

    .minimal-template-wrapper .portfolio-title {
        font-size: 20px;
    }

    .minimal-template-wrapper .minimal-cta {
        padding: 100px 30px;
    }

    .minimal-template-wrapper .cta-title {
        font-size: 32px;
    }

    .minimal-template-wrapper .cta-description {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .minimal-template-wrapper .hero-title {
        font-size: 36px;
    }

    .minimal-template-wrapper .section-title {
        font-size: 28px;
    }

    .minimal-template-wrapper .cta-title {
        font-size: 28px;
    }
}

/* ==========================================================================
   Arcdeco-Style Homepage Sections
   ========================================================================== */

/* Common Section Styles */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

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

.section-title-center {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -1px;
    color: var(--color-dark);
    font-family: var(--font-heading);
    margin-top: 0;
}

/* Introduction Section */
.arcdeco-introduction {
    padding: 100px 20px;
    background-color: #fafafa;
}

.arcdeco-introduction .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.arcdeco-introduction .section-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-text-light);
    display: block;
    margin-bottom: 25px;
}

.intro-title {
    font-size: 52px;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -1px;
    color: var(--color-dark);
    font-family: var(--font-heading);
    margin-bottom: 40px;
    max-width: 900px;
}

.intro-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text);
    max-width: 800px;
    column-count: 2;
    column-gap: 60px;
}

.intro-content p {
    margin-bottom: 20px;
}

/* Services Section */
.arcdeco-services {
    padding: 120px 20px;
    background-color: #ffffff;
}

.arcdeco-services .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.service-item {
    text-align: center;
    padding: 40px 30px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover {
    transform: translateY(-8px);
}

.service-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.service-title {
    font-size: 28px;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

/* Featured Projects Section */
.arcdeco-featured-projects {
    padding: 120px 20px;
    background-color: #fafafa;
}

.arcdeco-featured-projects .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.featured-project-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background-color: #e0e0e0;
}

.featured-project-item.featured-large {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.featured-project-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.featured-project-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.featured-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-project-item:hover .featured-project-image img {
    transform: scale(1.08);
}

.featured-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
}

.featured-project-item:hover .featured-project-overlay {
    opacity: 1;
}

.featured-project-content {
    padding: 40px;
    width: 100%;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.featured-project-item:hover .featured-project-content {
    transform: translateY(0);
    opacity: 1;
}

.featured-project-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    display: block;
    margin-bottom: 12px;
}

.featured-project-title {
    font-size: 26px;
    font-weight: 500;
    color: #ffffff;
    font-family: var(--font-heading);
    margin: 0;
    line-height: 1.3;
}

/* Contact CTA Section */
.arcdeco-cta {
    padding: 150px 20px;
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a1a1a 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.arcdeco-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.arcdeco-cta .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.cta-content-center {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title-large {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.cta-description-large {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 45px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background-color: #ffffff;
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
}

.cta-button-large:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.25);
}

.cta-button-large svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.cta-button-large:hover svg {
    transform: translateX(5px);
}

/* Responsive Design for Arcdeco Sections */
@media screen and (max-width: 1024px) {
    .intro-content {
        column-count: 1;
    }

    .section-title-center {
        font-size: 40px;
    }

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

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
    }

    .featured-projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .featured-project-item.featured-large {
        grid-column: span 1;
        aspect-ratio: 4 / 5;
    }

    .cta-title-large {
        font-size: 44px;
    }
}

@media screen and (max-width: 768px) {
    .arcdeco-introduction,
    .arcdeco-services,
    .arcdeco-featured-projects {
        padding: 80px 20px;
    }

    .arcdeco-cta {
        padding: 100px 20px;
    }

    .arcdeco-introduction .container,
    .arcdeco-services .container,
    .arcdeco-featured-projects .container,
    .arcdeco-cta .container {
        padding: 0 30px;
    }

    .section-header-center {
        margin-bottom: 40px;
    }

    .section-title-center {
        font-size: 32px;
    }

    .intro-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .intro-content {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    .service-item {
        padding: 30px 20px;
    }

    .service-title {
        font-size: 24px;
    }

    .featured-projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .featured-project-content {
        padding: 30px;
    }

    .featured-project-title {
        font-size: 22px;
    }

    .cta-title-large {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .cta-description-large {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .cta-button-large {
        padding: 16px 35px;
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .arcdeco-introduction,
    .arcdeco-services,
    .arcdeco-featured-projects {
        padding: 60px 20px;
    }

    .arcdeco-cta {
        padding: 80px 20px;
    }

    .intro-title {
        font-size: 28px;
    }

    .section-title-center {
        font-size: 28px;
    }

    .service-title {
        font-size: 22px;
    }

    .cta-title-large {
        font-size: 28px;
    }
}

/* ==========================================================================
   Arcdeco Hero Slider (Full-Screen Slider for Minimal Template)
   ========================================================================== */

/* Hero Section - Full Screen */
.arcdeco-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000000;
}

/* Full-Screen Slider Background */
.arcdeco-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.arcdeco-hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.08) 30%,
        rgba(0, 0, 0, 0.04) 60%,
        transparent 100%
    );
    z-index: 10;
    pointer-events: none;
}

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

.arcdeco-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

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

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

.arcdeco-hero-slide picture {
    width: 100%;
    height: 100%;
    display: block;
}

/* Mobile: full-slide clickable link */
.slide-mobile-link {
    display: none;
}

@media (max-width: 768px) {
    .slide-mobile-link {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 50;
    }

    .arcdeco-hero-content-box {
        pointer-events: none;
    }
}

/* CTA Slide - Final black slide with button */
.arcdeco-hero-slide.cta-slide {
    background-color: #19191b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.cta-slide-button {
    display: inline-block;
    padding: 25px 60px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    background: transparent;
}

.cta-slide-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: scale(1.02);
}

/* Navigation Arrows */
.arcdeco-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    opacity: 0.7;
}

.arcdeco-slider-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.arcdeco-slider-arrow-prev {
    left: 60px;
}

.arcdeco-slider-arrow-next {
    right: 60px;
}

.arcdeco-slider-arrow svg {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.6)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* Content Box in Left Bottom Corner - Elegant Blur Fade */
.arcdeco-hero-content-box {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: flex;
    align-items: flex-end;
    width: 55%;
}

.arcdeco-hero-content-box-inner {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.70) 35%,
        rgba(0, 0, 0, 0.55) 55%,
        rgba(0, 0, 0, 0.35) 70%,
        rgba(0, 0, 0, 0.15) 85%,
        transparent 100%
    );
    padding: 30px 40px;
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Remove trapezoid effect - using blur/fade instead */
.arcdeco-hero-content-box-inner::after {
    display: none;
}

/* Hide content box on last slide (offers) */
.arcdeco-hero-content-box-inner.hidden-on-last-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.arcdeco-slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.arcdeco-slide-content.active {
    opacity: 1;
    visibility: visible;
}

.arcdeco-slide-title {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.1;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.arcdeco-slide-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 14px;
}

.arcdeco-slide-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.arcdeco-slide-button:hover {
    background-color: #ffffff;
    color: #222222;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.arcdeco-slide-button svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.arcdeco-slide-button:hover svg {
    transform: translateX(3px);
}

/* Dots Indicator - Bottom, After Content Box */
.arcdeco-hero-slider-nav {
    position: absolute;
    bottom: 60px;
    left: 70%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.arcdeco-hero-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.arcdeco-hero-nav-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.arcdeco-hero-nav-dot.active {
    background-color: #ffffff;
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Social Icons in Right Bottom Corner */
.arcdeco-hero-social {
    position: absolute;
    bottom: 100px;
    right: 60px;
    z-index: 15;
    display: flex;
    gap: 25px;
}

.arcdeco-social-link {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 0.7;
}

.arcdeco-social-link:hover {
    opacity: 1;
    transform: translateY(-3px) scale(1.1);
    color: var(--color-brand)
}

.arcdeco-social-link svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.6)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* Scroll Indicator for Hero */
.arcdeco-hero .scroll-indicator {
    display: none;
}

/* Contact Action Buttons - Left Side for Minimal Template */
.page-template-template-home-minimal .contact-action-buttons {
    right: auto;
    left: 0;
    bottom:210px
}

.page-template-template-home-minimal .action-phone:hover {
    transform: translateX(5px);
}

.page-template-template-home-minimal .action-contact:hover {
    transform: translateX(5px);
}

/* Introduction Section (Dark Background) */
.arcdeco-introduction-dark {
    padding: 150px 100px;
    background-color: #1c1c1e;
    color: #ffffff;
}

.arcdeco-introduction-dark .container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.introduction-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.introduction-text-side {
    max-width: 600px;
}

.arcdeco-intro-subtitle {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 50px;
    display: block;
}

.arcdeco-intro-text {
    font-size: 24px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

.arcdeco-intro-text p {
    margin-bottom: 0;
}

.introduction-images-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.intro-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-image:hover img {
    transform: scale(1.05);
}

/* Responsive Design for Arcdeco Hero */
@media screen and (max-width: 1400px) {
    .arcdeco-slider-arrow-prev {
        left: 40px;
    }

    .arcdeco-slider-arrow-next {
        right: 40px;
    }

    .arcdeco-hero-content-box {
        width: 50%;
    }

    .arcdeco-hero-content-box-inner {
        padding: 25px 35px;
        height: 180px;
    }

    .arcdeco-hero-content-box-inner::after {
        display: none;
    }

    .arcdeco-slide-content {
        padding: 25px 35px;
    }

    .arcdeco-slide-title {
        font-size: 22px;
    }

    .arcdeco-hero-slider-nav {
        bottom: 40px;
    }

    .arcdeco-hero-social {
        right: 100px;
        bottom: 100px;
    }


    .arcdeco-introduction-dark {
        padding: 120px 60px;
    }

    .introduction-content-wrapper {
        gap: 60px;
    }
}

@media screen and (max-width: 1150px) {
    .arcdeco-hero-content-box {
        width: 100%;
        left: 0;
        right: 0;
    }

    .arcdeco-hero-content-box-inner {
        padding: 25px 20px;
        height: auto;
        min-height: 150px;
    }
    .page-template-template-home-minimal .contact-action-buttons {
    right: auto;
    left: 0;
    bottom:160px
}

    .arcdeco-hero-content-box-inner::after {
        display: none;
    }

    .arcdeco-slide-content {
        padding: 25px 20px;
    }

    .arcdeco-slide-title {
        font-size: 22px;
    }

    .arcdeco-slide-text {
        font-size: 14px;
    }

    .arcdeco-slide-button {
        padding: 10px 24px;
        font-size: 10px;
    }

    .arcdeco-hero-social {
        right: 15px;
        left: auto;
        top: auto;
        bottom: 160px;
        flex-direction: column;
        gap: 18px;
    }

    .arcdeco-social-link svg {
        width: 28px;
        height: 28px;
    }

    .arcdeco-hero-slider-nav {
        bottom: 160px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        flex-direction: row;
        gap: 12px;
    }

    .arcdeco-hero-nav-dot {
        width: 10px;
        height: 10px;
    }

    .arcdeco-hero-nav-dot.active {
        width: 32px;
        height: 10px;
    }
    .contact-action-buttons {
        bottom: 160px;
    }
}

@media screen and (max-width: 1024px) {
    .arcdeco-slider-arrow svg {
        width: 40px;
        height: 40px;
    }

    .arcdeco-slider-arrow-prev {
        left: 30px;
    }

    .arcdeco-slider-arrow-next {
        right: 30px;
    }

    .arcdeco-slide-title {
        font-size: 20px;
    }

    .arcdeco-slide-text {
        font-size: 13px;
    }


    .arcdeco-hero-slider-nav {
        bottom: 160px;
        left: 50%;
        transform: translateX(-50%);
    }


    .arcdeco-introduction-dark {
        padding: 100px 50px;
    }

    .introduction-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .introduction-text-side {
        max-width: 100%;
    }

    .arcdeco-intro-text {
        font-size: 22px;
    }
}

@media screen and (max-width: 768px) {
    .arcdeco-slider-arrow svg {
        width: 35px;
        height: 35px;
    }

    .arcdeco-slider-arrow-prev {
        left: 20px;
    }

    .arcdeco-slider-arrow-next {
        right: 20px;
    }

    .arcdeco-hero-content-box {
        width: 100%;
        left: 0;
        right: 0;
    }

    .arcdeco-hero-content-box-inner {
        padding: 25px 20px;
        height: auto;
        min-height: 140px;
    }

    .arcdeco-hero-content-box-inner::after {
        display: none;
    }

    .arcdeco-slide-content {
        padding: 25px 20px;
    }

    .arcdeco-slide-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .arcdeco-slide-text {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .arcdeco-slide-button {
        padding: 10px 24px;
        font-size: 10px;
    }


    .arcdeco-social-link svg {
        width: 28px;
        height: 28px;
    }

    .arcdeco-hero-slider-nav {
        bottom: 160px;
        left: 50%;
        transform: translateX(-50%);
        gap: 12px;
    }

    .arcdeco-hero-nav-dot {
        width: 10px;
        height: 10px;
    }

    .arcdeco-hero-nav-dot.active {
        width: 32px;
    }

    .arcdeco-hero .scroll-indicator {
        display: none;
    }

    .arcdeco-intro-text {
        font-size: 20px;
    }

    .introduction-images-side {
        gap: 20px;
    }

    .arcdeco-introduction-dark {
        padding: 80px 40px;
    }
}

@media screen and (max-width: 480px) {
    .arcdeco-slider-arrow svg {
        width: 44px;
        height: 44px;
    }

    .arcdeco-slider-arrow-prev {
        left: 15px;
    }

    .arcdeco-slider-arrow-next {
        right: 15px;
    }

    .arcdeco-hero-content-box {
        width: 100%;
        left: 0;
        right: 0;
    }

    .arcdeco-hero-content-box-inner {
        padding: 20px 15px;
        height: auto;
        min-height: 120px;
    }

    .arcdeco-hero-content-box-inner::after {
        display: none;
    }

    .arcdeco-slide-content {
        padding: 20px 15px;
    }

    .arcdeco-slide-title {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .arcdeco-slide-text {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .arcdeco-slide-button {
        padding: 8px 20px;
        font-size: 9px;
    }

    .arcdeco-social-link svg {
        width: 26px;
        height: 26px;
    }

    .arcdeco-hero-slider-nav {
        bottom: 135px;
        left: 50%;
        transform: translateX(-50%);
        gap: 10px;
    }

    .arcdeco-hero-nav-dot {
        width: 8px;
        height: 8px;
    }

    .arcdeco-hero-nav-dot.active {
        width: 28px;
    }

    .arcdeco-intro-text {
        font-size: 18px;
    }

    .introduction-images-side {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .intro-image {
        aspect-ratio: 4 / 3;
    }

    .arcdeco-introduction-dark {
        padding: 60px 30px;
    }
}

/* ==========================================================================
   Animated Hero Template - Centered Text with Slide Animations
   ========================================================================== */

.animated-template-wrapper .animated-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000000;
}

.animated-template-wrapper .animated-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-template-wrapper .animated-hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.10);
    z-index: 2;
}

.animated-template-wrapper .animated-hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.animated-template-wrapper .animated-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.animated-template-wrapper .animated-hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.animated-template-wrapper .animated-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Arrows */
.animated-template-wrapper .animated-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 20;
    padding: 20px;
    transition: all 0.3s ease;
}

.animated-template-wrapper .animated-slider-arrow svg {
    width: 50px;
    height: 50px;
    color: #ffffff;
    opacity: 0.7;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.animated-template-wrapper .animated-slider-arrow:hover svg {
    transform: scale(1.1);
    opacity: 1;
    filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.4));
}

.animated-template-wrapper .animated-slider-arrow-prev {
    left: 60px;
}

.animated-template-wrapper .animated-slider-arrow-next {
    right: 60px;
}

/* Centered Content (No Box) */
.animated-template-wrapper .animated-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    width: 90%;
    max-width: 800px;
    text-align: center;
}

.animated-template-wrapper .animated-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 80px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 0, 0, 0.05) 30%,
        rgba(0, 0, 0, 0.15) 40%,
         rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.15) 60%,
        rgba(0, 0, 0, 0.05) 70%,
        transparent 100%
    );
}

/* Active state */
.animated-template-wrapper .animated-slide-content.active {
    opacity: 1;
    visibility: visible;
}

/* Exit animations */
.animated-template-wrapper .animated-slide-content.exit-left {
    animation: slideOutLeft 0.6s ease-in-out forwards;
}

.animated-template-wrapper .animated-slide-content.exit-right {
    animation: slideOutRight 0.6s ease-in-out forwards;
}

/* Enter animations */
.animated-template-wrapper .animated-slide-content.enter-left {
    animation: slideInLeft 0.6s ease-in-out forwards;
}

.animated-template-wrapper .animated-slide-content.enter-right {
    animation: slideInRight 0.6s ease-in-out forwards;
}

/* Keyframe animations */
@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    to {
        opacity: 1;
        transform: translate(-150%, -50%);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    to {
        opacity: 1;
        transform: translate(50%, -50%);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 1;
        transform: translate(-150%, -50%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes slideInRight {
    from {
        opacity: 1;
        transform: translate(50%, -50%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.animated-template-wrapper .animated-slide-title {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.1;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    letter-spacing: -1px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.animated-template-wrapper .animated-slide-text {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    max-width: 600px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.animated-template-wrapper .animated-slide-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.animated-template-wrapper .animated-slide-button:hover {
    background-color: #ffffff;
    color: #222222;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.animated-template-wrapper .animated-slide-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.animated-template-wrapper .animated-slide-button:hover svg {
    transform: translateX(5px);
}

/* Dots Indicator */
.animated-template-wrapper .animated-hero-slider-nav {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.animated-template-wrapper .animated-hero-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.animated-template-wrapper .animated-hero-nav-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.animated-template-wrapper .animated-hero-nav-dot.active {
    width: 40px;
    border-radius: 6px;
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Social Icons */
.animated-template-wrapper .animated-hero-social {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 15;
    display: flex;
    flex-direction: row;
    gap: 25px;
}

.animated-template-wrapper .animated-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.animated-template-wrapper .animated-social-link svg {
    width: 32px;
    height: 32px;
    opacity: 0.7;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.animated-template-wrapper .animated-social-link:hover svg {
    transform: scale(1.15) translateY(-3px);
    opacity: 1;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.4));
}

/* Contact Action Buttons - Left Side for Animated Template */
.animated-template-wrapper .contact-action-buttons {
    right: auto;
    left: 0;
}

.animated-template-wrapper .action-phone:hover {
    transform: translateX(5px);
}

.animated-template-wrapper .action-email:hover {
    transform: translateX(5px);
}

/* Scroll Indicator */
.animated-template-wrapper .animated-hero .scroll-indicator {
    display: none;
}

/* Responsive */
@media screen and (max-width: 1400px) {
    .animated-template-wrapper .animated-slider-arrow-prev {
        left: 40px;
    }

    .animated-template-wrapper .animated-slider-arrow-next {
        right: 40px;
    }

    .animated-template-wrapper .animated-slide-title {
        font-size: 56px;
    }

    .animated-template-wrapper .animated-slide-text {
        font-size: 18px;
    }

    .animated-template-wrapper .animated-hero-social {
        left: 40px;
        bottom: 40px;
    }

    .animated-template-wrapper .animated-hero-slider-nav {
        bottom: 40px;
    }
}

@media screen and (max-width: 1024px) {
    .animated-template-wrapper .animated-slider-arrow svg {
        width: 60px;
        height: 60px;
    }

    .animated-template-wrapper .animated-slider-arrow-prev {
        left: 30px;
    }

    .animated-template-wrapper .animated-slider-arrow-next {
        right: 30px;
    }

    .animated-template-wrapper .animated-slide-title {
        font-size: 48px;
    }

    .animated-template-wrapper .animated-slide-text {
        font-size: 16px;
    }

    .animated-template-wrapper .animated-hero-social {
        left: 30px;
        bottom: 30px;
        gap: 20px;
    }

    .animated-template-wrapper .animated-social-link svg {
        width: 28px;
        height: 28px;
    }

    .animated-template-wrapper .animated-hero-slider-nav {
        bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .animated-template-wrapper .animated-slider-arrow svg {
        width: 35px;
        height: 35px;
    }

    .animated-template-wrapper .animated-slider-arrow-prev {
        left: 20px;
    }

    .animated-template-wrapper .animated-slider-arrow-next {
        right: 20px;
    }

    .animated-template-wrapper .animated-hero-content {
        top: 55%;
    }

    .animated-template-wrapper .animated-slide-content {
        padding: 40px 30px;
    }

    .animated-template-wrapper .animated-slide-title {
        font-size: 36px;
    }

    .animated-template-wrapper .animated-slide-text {
        font-size: 14px;
        max-width: 500px;
    }

    .animated-template-wrapper .animated-slide-button {
        padding: 12px 32px;
        font-size: 11px;
    }

    .animated-template-wrapper .animated-hero-social {
        left: 20px;
        bottom: 30px;
        gap: 18px;
    }

    .animated-template-wrapper .animated-social-link svg {
        width: 26px;
        height: 26px;
    }

    .animated-template-wrapper .animated-hero-slider-nav {
        bottom: 30px;
        gap: 12px;
    }

    .animated-template-wrapper .animated-hero-nav-dot {
        width: 10px;
        height: 10px;
    }

    .animated-template-wrapper .animated-hero-nav-dot.active {
        width: 32px;
    }
}

@media screen and (max-width: 480px) {
    .animated-template-wrapper .animated-slider-arrow svg {
        width: 44px;
        height: 44px;
    }

    .animated-template-wrapper .animated-slider-arrow-prev {
        left: 15px;
    }

    .animated-template-wrapper .animated-slider-arrow-next {
        right: 15px;
    }

    .animated-template-wrapper .animated-slide-title {
        font-size: 28px;
    }

    .animated-template-wrapper .animated-slide-text {
        font-size: 13px;
        max-width: 400px;
    }

    .animated-template-wrapper .animated-slide-button {
        padding: 10px 28px;
        font-size: 10px;
        gap: 10px;
    }

    .animated-template-wrapper .animated-hero-social {
        left: 15px;
        bottom: 20px;
        gap: 15px;
    }

    .animated-template-wrapper .animated-social-link svg {
        width: 24px;
        height: 24px;
    }

    .animated-template-wrapper .animated-hero-slider-nav {
        bottom: 20px;
        gap: 10px;
    }

    .animated-template-wrapper .animated-hero-nav-dot {
        width: 8px;
        height: 8px;
    }

    .animated-template-wrapper .animated-hero-nav-dot.active {
        width: 28px;
    }
}

/* ==========================================================================
   Oferty (Real Estate Listings) Styles
   ========================================================================== */

/* Filters */
.oferty-filters {
    padding: 30px 0;
    background-color: #1a1a1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filters-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-size: 11px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.filter-select {
    padding: 12px 40px 12px 15px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(139, 111, 78, 0.35);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    min-width: 200px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.filter-select:focus {
    outline: none;
    border-color: var(--color-brand);
    box-shadow: 0 0 0 2px rgba(139, 111, 78, 0.25);
}

.filter-select option {
    background-color: #1a1a1c;
    color: #ffffff;
}

.filter-reset {
    padding: 12px 25px;
    background: transparent;
    border: 1px solid rgba(139, 111, 78, 0.55);
    color: rgba(139, 111, 78, 0.9);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-reset:hover {
    background: rgba(139, 111, 78, 0.15);
    border-color: rgba(139, 111, 78, 0.8);
    color: #ffffff;
}

/* Oferty CTA accent */
.oferty-page .cta-button {
    background-color: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(139, 111, 78, 0.25);
}

.oferty-page .cta-button:hover {
    background-color: #a3805c;
    border-color: #a3805c;
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(139, 111, 78, 0.3);
}

.oferty-page .cta-button svg {
    color: currentColor;
}

.about-page .cta-button {
    background-color: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(139, 111, 78, 0.25);
}

.about-page .cta-button:hover {
    background-color: #a3805c;
    border-color: #a3805c;
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(139, 111, 78, 0.3);
}

.about-page .cta-button svg {
    color: currentColor;
}

.process-page .cta-button {
    background-color: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(139, 111, 78, 0.25);
}

.process-page .cta-button:hover {
    background-color: #a3805c;
    border-color: #a3805c;
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(139, 111, 78, 0.3);
}

.process-page .cta-button svg {
    color: currentColor;
}

/* Oferty Grid */


.oferty-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:6px;
    padding: 6px 0;
}

.oferty-grid-wrapper .container {
    max-width: none;
    padding: 0 15px;
    margin: 0px;
}

.oferta-card {
    background-color: #222224;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oferta-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.oferta-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.oferta-card-image {
    position: relative;
    padding-bottom: 75%;
    overflow: hidden;
}

.oferta-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.oferta-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    background-color: rgba(139, 111, 78, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.oferta-card-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 10px 15px;
    background-color: rgba(139, 111, 78, 0.95);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.oferta-card-content {
    padding: 25px;
}

.oferta-card-title {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.oferta-card-info-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.oferta-card-location,
.oferta-card-rynek {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    transition: all var(--transition-speed) ease;
}

.oferta-card-location svg,
.oferta-card-rynek svg {
    flex-shrink: 0;
    color: rgba(139, 111, 78, 0.85);
    transition: all var(--transition-speed) ease;
}

.oferta-card-location:hover,
.oferta-card-rynek:hover {
    color: var(--color-brand);
}

.oferta-card-location:hover svg,
.oferta-card-rynek:hover svg {
    color: var(--color-brand);
    filter: drop-shadow(0 0 3px rgba(139, 111, 78, 0.3));
}

.oferta-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
}

.spec-item svg {
    color: rgba(139, 111, 78, 0.85);
}

.no-oferty {
    padding: 100px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Montserrat', sans-serif;
}

/* Single Oferta Page */
.oferta-single {
    background-color: #19191b;
}

.oferta-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
}

.oferta-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.oferta-hero-content {
    position: relative;
    z-index: 10;
    padding:  0 80px 40px 100px;
    max-width: 900px;
}

.oferta-hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(139, 111, 78, 0.9);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.oferta-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.oferta-info-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.oferta-location,
.oferta-rynek {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all var(--transition-speed) ease;
}

.oferta-location svg,
.oferta-rynek svg {
    width: 16px;
    height: 16px;
    opacity: 0.8;
    transition: all var(--transition-speed) ease;
}

.oferta-location:hover,
.oferta-rynek:hover {
    color: var(--color-brand);
}

.oferta-location:hover svg,
.oferta-rynek:hover svg {
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(139, 111, 78, 0.4));
}

.oferta-price-hero {
    font-size: 32px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

/* Quick Info Bar */
.oferta-quick-info {
    background-color: #222224;
    padding: 40px 0;
}

.quick-info-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.quick-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    transition: all var(--transition-speed) ease;
    padding: 15px;
}

.quick-info-item svg {
    color: rgba(139, 111, 78, 0.85);
    transition: all var(--transition-speed) ease;
}

.quick-info-item:hover {
    transform: scale(1.1);
    background-color: rgba(139, 111, 78, 0.08);
}

.quick-info-item:hover svg {
    color: var(--color-brand);
    filter: drop-shadow(0 0 6px rgba(139, 111, 78, 0.3));
}

.quick-info-value {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

.quick-info-label {
    font-size: 11px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* Details Section */
.oferta-details {
    padding: 80px 0;
}

.oferta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.oferta-details-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 80px;
}

.section-title {
    font-size: 24px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.oferta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.oferta-description p {
    margin-bottom: 12px;
}


.oferta-description ul,
.oferta-description ol {
    padding-left: 20px;
    margin-bottom: 48px;
}

.oferta-description li {
    margin-bottom: 8px;
    list-style-type: disc;
}

.oferta-description ol li {
    list-style-type: decimal;
}

.oferta-description h1,
.oferta-description h2,
.oferta-description h3,
.oferta-description h4,
.oferta-description h5,
.oferta-description h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 16px;
    margin-top: 40px;
}

.oferta-description h1:first-child,
.oferta-description h2:first-child,
.oferta-description h3:first-child,
.oferta-description h4:first-child,
.oferta-description h5:first-child,
.oferta-description h6:first-child {
    margin-top: 0;
}

.oferta-description h2 {
    font-size: 28px;
}

.oferta-description h3 {
    font-size: 22px;
}

.oferta-description h4 {
    font-size: 18px;
}

/* Price Card */
.price-card {
    background-color: #222224;
    padding: 40px;
    position: sticky;
    top: 80px;
}

.price-main {
    font-size: 36px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    margin-bottom: 5px;
}

.price-per-m2 {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

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

.detail-label {
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    color: rgba(139, 111, 78, 0.8);
}

.detail-value {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-weight: 500;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 30px;
    background-color: var(--color-brand);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid var(--color-brand);
}

.contact-btn:hover {
    background-color: #a3805c;
    border-color: #a3805c;
    transform: translateY(-2px);
}

/* Oferta Gallery */
.oferta-gallery {
    padding: 80px 0;
    background-color: #1a1a1c;
}

.oferta-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.oferta-gallery .gallery-item {
    overflow: hidden;
    position: relative;
}

.oferta-gallery .gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.oferta-gallery .gallery-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.oferta-gallery .gallery-link img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.oferta-gallery .gallery-item-large .gallery-link img {
    height: 415px;
}

/* Hover overlay */
.oferta-gallery .gallery-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.oferta-gallery .gallery-link::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    z-index: 11;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-size: 36px;
    font-weight: 300;
    color: #222;
    line-height: 56px;
    text-align: center;
    pointer-events: none;
}

.oferta-gallery .gallery-link:hover::before {
    background: rgba(0, 0, 0, 0.5);
}

.oferta-gallery .gallery-link:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

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

/* Gutenberg Gallery Hover Effect */
.wp-block-gallery.has-nested-images figure.wp-block-image {
    margin: 0 !important;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.wp-block-gallery.has-nested-images figure.wp-block-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.wp-block-gallery.has-nested-images figure.wp-block-image:hover::after {
    background: rgba(0, 0, 0, 0.4);
}

.wp-block-gallery.has-nested-images figure.wp-block-image::before {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    font-size: 36px;
    font-weight: 300;
    color: #222;
    line-height: 56px;
    text-align: center;
    z-index: 2;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.wp-block-gallery.has-nested-images figure.wp-block-image:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.wp-block-gallery.has-nested-images figure.wp-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wp-block-gallery.has-nested-images figure.wp-block-image:hover img {
    transform: scale(1.05);
}

/* Gutenberg Gallery Grid Layout */
.oferta-main-content .wp-block-gallery,
.entry-content .wp-block-gallery {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin: 40px 0;
}

.oferta-main-content .wp-block-gallery.has-nested-images figure.wp-block-image,
.entry-content .wp-block-gallery.has-nested-images figure.wp-block-image {
    flex: 0 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
    height: 400px;
    overflow: hidden;
}

.oferta-main-content .wp-block-gallery.has-nested-images figure.wp-block-image a,
.entry-content .wp-block-gallery.has-nested-images figure.wp-block-image a,
.oferta-main-content .wp-block-gallery.has-nested-images figure.wp-block-image picture,
.entry-content .wp-block-gallery.has-nested-images figure.wp-block-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.oferta-main-content .wp-block-gallery.has-nested-images figure.wp-block-image img,
.entry-content .wp-block-gallery.has-nested-images figure.wp-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100000;
    padding: 0;
}

.lightbox-close::before,
.lightbox-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 2px;
    background: #ffffff;
}

.lightbox-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.lightbox-close:hover::before,
.lightbox-close:hover::after {
    background: #cccccc;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 100000;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}

/* ==========================================================================
   Oferta Contact Card (sidebar: opiekun + formularz)
   ========================================================================== */
.contact-card {
    background: #fff;
    border-radius: 0;
    padding: 28px;
    position: sticky;
    top: 100px;
    overflow: visible;
}

/* Guardian: duże zdjęcie centralnie, dane pod nim */
.contact-card-guardian {
    text-align: center;
    margin-top: 6px;
}

.contact-card .guardian-photo {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 4 / 5;
    border-radius: 0;
    overflow: visible;
    background: #eee;
    position: relative;
    cursor: pointer;
    outline: none;
    margin: 0 auto 22px;
}

.contact-card .guardian-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    transition: filter 0.25s ease;
}

.contact-card .guardian-photo:hover img,
.contact-card .guardian-photo:focus-visible img {
    filter: brightness(0.85);
}

/* Popover z cytatem - widoczny po hover/focus zdjęcia */
.guardian-quote-popover {
    position: absolute;
    bottom: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 280px;
    max-width: calc(100vw - 60px);
    background: #1a1a1a;
    color: #f3f3f3;
    padding: 16px 18px;
    border-radius: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 20;
    margin: 0;
}

.guardian-quote-popover::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #1a1a1a;
}

.guardian-quote-popover .quote-mark {
    color: rgba(255, 255, 255, 0.35);
    display: block;
    margin-bottom: 4px;
}

.guardian-quote-popover blockquote {
    margin: 0 0 8px;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    line-height: 1.55;
    font-style: italic;
    color: #f3f3f3;
}

.guardian-quote-popover figcaption {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.contact-card .guardian-photo:hover .guardian-quote-popover,
.contact-card .guardian-photo:focus-visible .guardian-quote-popover,
.contact-card .guardian-photo:focus-within .guardian-quote-popover {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Dane pod zdjęciem, czyste, centralnie */
.contact-card .guardian-meta {
    text-align: center;
}

.contact-card .guardian-meta .guardian-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.contact-card .guardian-meta .guardian-role {
    font-size: 10px;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-card .guardian-meta-contact {
    border-top: 1px solid #ececec;
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-card .guardian-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
    word-break: break-word;
    line-height: 1.4;
    font-family: 'Open Sans', sans-serif;
}

.contact-card .guardian-link:hover {
    color: #000;
}

.contact-card .guardian-link svg {
    flex-shrink: 0;
    color: #999;
    transition: color 0.2s;
}

.contact-card .guardian-link:hover svg {
    color: #1a1a1a;
}

.contact-card .guardian-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 2px;
    line-height: 1.25;
}

.contact-card .guardian-role {
    font-size: 10px;
    color: #888;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-card .guardian-link {
    display: block;
    font-size: 12.5px;
    color: #333;
    text-decoration: none;
    padding: 3px 0;
    transition: color 0.2s;
    word-break: break-word;
    line-height: 1.35;
}

.contact-card .guardian-link:hover {
    color: #000;
}

.contact-card-divider {
    height: 1px;
    background: #ececec;
    margin: 20px 0;
}

.contact-card-intro {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 18px;
}

.oferta-lead-form .form-field {
    display: block;
    margin-bottom: 14px;
}

.oferta-lead-form .form-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #555;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.oferta-lead-form input[type="text"],
.oferta-lead-form input[type="email"],
.oferta-lead-form input[type="tel"],
.oferta-lead-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d8d8d8;
    border-radius: 0;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    background: #fafafa;
    color: #222;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}

.oferta-lead-form input:focus,
.oferta-lead-form textarea:focus {
    outline: none;
    border-color: #222;
    background: #fff;
}

.oferta-lead-form textarea {
    resize: vertical;
    min-height: 80px;
}

.oferta-lead-form .has-error input,
.oferta-lead-form .has-error textarea {
    border-color: #c0392b;
}

.oferta-lead-form .field-error {
    color: #c0392b;
    font-size: 12px;
    margin-top: 4px;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 16px 0;
    font-size: 12px;
    color: #666;
    line-height: 1.45;
    cursor: pointer;
}

.form-consent input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.form-consent.has-error span {
    color: #c0392b;
}

/* Honeypot - całkowicie ukryte */
.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-actions {
    margin-top: 6px;
}

.oferta-lead-submit {
    background: #222;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    transition: background 0.2s, opacity 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.oferta-lead-submit:hover {
    background: #000;
}

.oferta-lead-submit[disabled] {
    opacity: 0.6;
    cursor: wait;
}

.btn-spinner {
    display: none;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.is-submitting .btn-spinner {
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.oferta-lead-status {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 0;
    font-size: 13px;
    display: none;
}

.oferta-lead-status--ok,
.oferta-lead-status--error {
    display: block;
}

.oferta-lead-status--ok {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.oferta-lead-status--error {
    background: #fdecea;
    color: #b71c1c;
    border: 1px solid #f5c6c6;
}

.contact-card-quote {
    margin: 22px 0 0;
    padding: 18px 16px 18px 18px;
    background: #f8f8f6;
    border-left: 3px solid #222;
    border-radius: 0;
    position: relative;
}

.contact-card-quote .quote-mark {
    color: #c8c8c8;
    display: block;
    margin-bottom: 6px;
}

.contact-card-quote blockquote {
    margin: 0 0 10px;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 13.5px;
    line-height: 1.6;
    color: #444;
    font-style: italic;
}

.contact-card-quote figcaption {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
}

@media (max-width: 1024px) {
    .contact-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-card {
        padding: 22px;
    }
    .contact-card .guardian-photo {
        max-width: 240px;
    }
}

/* Oferta Navigation */
.oferta-navigation {
    padding: 60px 0;
    background-color: #222224;
}

.oferta-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.oferta-navigation .nav-link {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.oferta-navigation .nav-link:hover {
    opacity: 0.7;
}

.oferta-navigation .nav-prev { text-align: left; }
.oferta-navigation .nav-next { text-align: right; }
.oferta-navigation .nav-all { text-align: center; }

.oferta-navigation .nav-label {
    font-size: 11px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.oferta-navigation .nav-title {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

/* Responsive Oferty */
@media screen and (max-width: 1024px) {
    .oferty-grid { grid-template-columns: repeat(2, 1fr); }
    .oferta-details-grid { grid-template-columns: 1fr; }
    .price-card { position: static; }
    .quick-info-grid { gap: 40px; }
    .oferta-gallery .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .oferta-gallery .gallery-item-large { grid-column: span 2; grid-row: span 1; }
    .oferta-gallery .gallery-item-large .gallery-link img { height: 300px; }
}

@media screen and (max-width: 768px) {
    .filters-row { flex-direction: column; align-items: stretch; }
    .filter-select { width: 100%; }
    .oferty-grid { grid-template-columns: 1fr; gap: 20px; }
    .oferta-hero { height: 50vh; min-height: 400px; }
    .oferta-hero-content { padding: 30px; }
    .oferta-title { font-size: 32px; }
    .oferta-price-hero { font-size: 24px; }
    .quick-info-grid { flex-wrap: wrap; gap: 30px; }
    .quick-info-item { flex: 1 1 40%; }
    .oferta-container { padding: 0 20px; }
    .oferta-details, .oferta-gallery { padding: 50px 0; }
    .price-card { padding: 30px; }
    .price-main { font-size: 28px; }
    .oferta-gallery .gallery-grid { grid-template-columns: 1fr; }
    .oferta-gallery .gallery-item-large { grid-column: span 1; }
    .oferta-gallery .gallery-link img,
    .oferta-gallery .gallery-item-large .gallery-link img { height: 250px; }
    .oferta-navigation .nav-links { flex-direction: column; gap: 20px; }
    .oferta-navigation .nav-prev,
    .oferta-navigation .nav-next,
    .oferta-navigation .nav-all { text-align: center; }

    /* Lightbox responsive */
    .lightbox-nav { width: 45px; height: 45px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    /* Gallery grid responsive - keep 2 columns on tablet */
    .oferta-main-content .wp-block-gallery.has-nested-images figure.wp-block-image,
    .entry-content .wp-block-gallery.has-nested-images figure.wp-block-image {
        flex: 0 0 calc(50% - 5px);
        max-width: calc(50% - 5px);
        height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .lightbox-nav { width: 40px; height: 40px; }
    .lightbox-prev { left: 5px; }
    .lightbox-next { right: 5px; }
    .lightbox-counter { font-size: 12px; }

    /* Gallery grid responsive - 1 column on mobile */
    .oferta-main-content .wp-block-gallery.has-nested-images figure.wp-block-image,
    .entry-content .wp-block-gallery.has-nested-images figure.wp-block-image {
        flex: 0 0 100%;
        max-width: 100%;
        height: 250px;
    }
}

/* ============================================
   Custom Gutenberg Classes for Realizacje
   Add these classes to images/galleries in Gutenberg
   ============================================ */

/* Single photo - centered, 50% width */
.photo-realizacja {
    display: block;
    margin: 0 auto;
    width: 50%;
}

/* Video embed - centered, max 960px */
.video-realizacja {
    width: 100%;
    max-width: 960px;
    display: block;
    margin: 0 auto;
}

/* Shorts/vertical video - centered, max 360px */
.shorts-realizacja {
    width: 100%;
    max-width: 360px;
    display: block;
    margin: 0 auto;
}

/* Gallery 2 columns - centered, 50% width */
.galeria2-realizacja {
    width: 50%;
    display: block;
    margin: 0 auto;
}

/* Gallery 3 columns - full width, flex layout */
.galeria3-realizacja {
    width: 100%;
    margin-left: 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 0px;
}

/* Image inside 3-column gallery */
.obraz3-realizacja {
    max-width: 47.203% !important;
}

/* Columns gap for galleries */
.kolumny-realizacja {
    column-gap: 6.5px;
}

/* Responsive - Realizacja custom classes */
@media (max-width: 768px) {
    .galeria-realizacja figure {
        width: 100% !important;
    }

    .photo-realizacja {
        width: 100% !important;
    }
}

/* Archive Page Hero (no background image) */
.archive-hero {
    background: linear-gradient(135deg, #19191b 0%, #2a2a2c 50%, #19191b 100%);
    background-position: center;
    background-size: cover;
    height: 60vh;
    min-height: 450px;
}

.archive-hero .portfolio-hero-overlay {
    background: rgba(0, 0, 0, 0.2);
}

/* Taxonomy hero - smaller */
.taxonomy-hero {
    background-position: center;
    background-size: cover;
    height: 50vh;
    min-height: 350px;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: #19191b;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumbs-hero {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(25, 25, 27, 0.35) 0%,rgba(25, 25, 27, 0.45) 50%, rgba(25, 25, 27, 0.75) 100%);
    border-bottom: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    z-index: 12;
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumbs-hero .container {
    padding: 0 60px;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--color-brand);
}

.breadcrumbs .separator {
    color: rgba(139, 111, 78, 0.9);
    font-size: 12px;
}

.breadcrumbs .current {
    color: #ffffff;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
    .breadcrumbs { padding: 12px 20px; }
    .breadcrumbs a, .breadcrumbs .current { font-size: 11px; }
    .taxonomy-hero { height: 40vh; min-height: 300px; }

    .breadcrumbs-hero { padding: 12px 0; }
    .breadcrumbs-hero .container { padding: 0 20px; }
}

/* ==========================================================================
   Blog Page Styles - NUX
   ========================================================================== */

.blog-page {
    min-height: 100vh;
    padding-top: 0;
    background-color: var(--color-background);
}

/* Blog Hero */
.blog-hero {
    height: 70vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.blog-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-secondary);
    padding: 20px;
}

.blog-hero-title {
    color: #fff;
    font-size: 72px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 20px;
}

.blog-hero-subtitle {
    color: #ffffff;
    font-size: 18px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Blog Filters */
.blog-filters {
    padding: 30px 0;
    background-color: #1a1a1a;
}

.blog-filters .filters-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.blog-filters .filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
}

.blog-filters .filter-label {
    font-size: 12px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-brand);
    white-space: nowrap;
}

.blog-filters .filter-select {
    padding: 10px 40px 10px 16px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    cursor: pointer;
    appearance: none;
    min-width: 180px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b6f4e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: all 0.3s ease;
}

.blog-filters .filter-select:hover,
.blog-filters .filter-select:focus {
    border-color: var(--color-brand);
    outline: none;
}

.blog-filters .filter-select option {
    background-color: #1a1a1a;
    color: #fff;
}

.blog-filters .filter-reset {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-filters .filter-reset:hover {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #fff;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 0 80px;
}

.blog-grid-wrapper {
    margin-top: 80px;
}

.blog-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
    background-color: #1e1e1e;
    overflow: hidden;
}

.blog-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.blog-card.hidden {
    display: none;
}

/* Blog Card */
.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    padding-bottom: 60%;
}

.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--color-brand);
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    line-height: 1.2;
}

.blog-card-date .date-day {
    display: block;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.blog-card-date .date-month {
    display: block;
    font-size: 11px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-category {
    font-size: 11px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-brand);
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--color-brand);
}

.blog-card-excerpt {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-brand);
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-card-readmore {
    gap: 12px;
}

.blog-card-readmore svg {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-readmore svg {
    transform: translateX(4px);
}

.no-blog {
    text-align: center;
    padding: 100px 20px;
    color: #888;
}

/* Blog Pagination */
.blog-pagination {
    text-align: center;
    padding: 40px 0;
}

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #fff;
}

/* Blog CTA Section */
.blog-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 111, 78, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.blog-cta .container {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.blog-cta .cta-title {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.blog-cta .cta-text {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.blog-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    background-color: var(--color-brand);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    border: 2px solid var(--color-brand);
    transition: all 0.4s ease;
}

.blog-cta .cta-button:hover {
    background-color: transparent;
    color: var(--color-brand);
}

/* Blog Responsive */
@media screen and (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media screen and (max-width: 768px) {
    .blog-hero-title {
        font-size: 42px;
        letter-spacing: 4px;
    }

    .blog-hero-subtitle {
        font-size: 14px;
    }

    .blog-filters {
        padding: 20px;
    }

    .blog-filters .filters-row {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-grid-wrapper {
        margin-top: 50px;
    }

    .blog-cta {
        padding: 60px 20px;
    }

    .blog-cta .cta-title {
        font-size: 28px;
    }
}

/* ==========================================================================
   Single Blog Post Styles - NUX
   ========================================================================== */

.blog-single {
    background-color: var(--color-background);
}

/* Blog Post Hero */
.blog-post-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.blog-post-hero-content {
    position: relative;
    z-index: 10;
    padding: 60px;
    max-width: 900px;
    text-align: center;
}

.blog-post-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--color-brand);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.blog-post-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
    margin-bottom: 25px;
}

.blog-post-meta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-post-date,
.blog-post-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.8);
}

.blog-post-date svg,
.blog-post-author svg {
    opacity: 0.7;
}

.blog-post-hero .breadcrumbs-hero .container{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Blog Post Tags Section */
.blog-post-tags-section {
    padding: 25px 0;
    max-width: 1100px;
    background-color: #1a1a1a;
    margin: 0 auto;
}


.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.blog-post-tags .tags-label {
    font-size: 12px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-right: 5px;
}

.blog-post-tags a {
    font-size: 12px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #444;
    transition: all 0.3s ease;
}

.blog-post-tags a:hover {
    background: var(--color-brand);
    border-color: var(--color-brand);
}

/* Blog Post Content */
.blog-post-content {
    padding: 80px 0;
}

.blog-post-body {
    max-width: 1100px;
    padding: 0 50px;
    margin: 0 auto;
}

.blog-post-body h2,
.blog-post-body h3,
.blog-post-body h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 40px;
}

.blog-post-body h2 {
    font-size: 28px;
}

.blog-post-body h3 {
    font-size: 22px;
}

.blog-post-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 25px;
}

.blog-post-body a {
    color: var(--color-brand);
    text-decoration: underline;
}

.blog-post-body a:hover {
    opacity: 0.8;
}

.blog-post-body ul,
.blog-post-body ol {
    color: #aaa;
    margin-bottom: 25px;
    padding-left: 30px;
}

.blog-post-body li {
    margin-bottom: 10px;
}

.blog-post-body blockquote {
    border-left: 3px solid var(--color-brand);
    padding-left: 30px;
    margin: 40px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.blog-post-body img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
}

/* Blog Post Share */
.blog-post-share {
    padding: 40px 0;
    border-top: 1px solid #333;
}

.share-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.share-label {
    font-size: 12px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: #222;
    color: #fff;
    border-radius: 0;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background-color: var(--color-brand);
}

/* Blog Navigation */
.blog-navigation {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.blog-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

.blog-navigation .nav-link {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.blog-navigation .nav-link:hover {
    background: rgba(139, 111, 78, 0.15);
    border-color: var(--color-brand);
}

.blog-navigation .nav-link.nav-disabled {
    opacity: 0;
    pointer-events: none;
}

.blog-navigation .nav-prev {
    justify-content: flex-start;
}

.blog-navigation .nav-next {
    justify-content: flex-end;
    text-align: right;
}

.blog-navigation .nav-all {
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 20px 30px;
    text-align: center;
    background: transparent;
    border: 1px solid var(--color-brand);
}

.blog-navigation .nav-all:hover {
    background: var(--color-brand);
    color: #ffffff;
}

.blog-navigation .nav-all svg {
    opacity: 0.7;
}

.blog-navigation .nav-all span {
    font-size: 11px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blog-navigation .nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.blog-navigation .nav-link:hover .nav-arrow {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;
}

.blog-navigation .nav-arrow svg {
    width: 20px;
    height: 20px;
}

.blog-navigation .nav-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.blog-navigation .nav-label {
    font-size: 11px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.blog-navigation .nav-title {
    font-size: 15px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Navigation Responsive */
@media screen and (max-width: 900px) {
    .blog-navigation .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .blog-navigation .nav-link {
        justify-content: center;
        text-align: center;
    }

    .blog-navigation .nav-prev,
    .blog-navigation .nav-next {
        flex-direction: row;
        justify-content: center;
    }

    .blog-navigation .nav-link.nav-disabled {
        display: none;
    }

    .blog-navigation .nav-all {
        order: -1;
    }
}

/* Blog Responsive Single */
@media screen and (max-width: 1024px) {
    .blog-post-hero-content {
        padding: 40px;
    }

    .blog-post-title {
        font-size: 32px;
    }

    .blog-post-hero .breadcrumbs-hero .container {
        padding: 0 30px;
    }

    .blog-post-tags-section {
        padding: 25px 30px;
    }

    .blog-post-body {
        padding: 0 30px;
    }
}

@media screen and (max-width: 768px) {
    .blog-post-hero {
        min-height: 500px;
        padding-bottom: 70px;
    }

    .blog-post-hero-content {
        padding: 30px 20px;
        margin-bottom: 60px;
    }

    .blog-post-title {
        font-size: 24px;
    }

    .blog-post-meta-row {
        gap: 15px;
    }

    .blog-post-date,
    .blog-post-author {
        font-size: 12px;
    }

    .blog-post-hero .breadcrumbs-hero {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 12px 0;
    }

    .blog-post-hero .breadcrumbs-hero .container {
        padding: 0 20px;
        font-size: 11px;
        flex-wrap: wrap;
        line-height: 1.6;
    }

    .blog-post-tags-section {
        padding: 10px;
    }

    .blog-post-body {
        padding: 0 10px;
    }

    .blog-post-content {
        padding: 10px 0;
    }

    .share-box {
        flex-direction: column;
        gap: 15px;
    }
}

/* Hide only phone/contact floating buttons on Contact page, keep language switcher */
.page-template-template-contact .action-phone,
.page-template-template-contact .action-contact,
.page-template-template-contact .footer-button {
    display: none;
}

/* Raise language switcher on contact page so dropdown doesn't go under content */
.page-template-template-contact .contact-action-buttons {
    bottom: auto;
    top: 200px;
}

/* ==========================================================================
   404 Error Page
   ========================================================================== */

.error-404-page {
    min-height: 100vh;
    background: var(--color-background);
}

.error-404-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-background) 100%);
    position: relative;
}

.error-404-content {
    max-width: 700px;
    margin: 0 auto;
}

.error-404-title {
    font-family: var(--font-heading);
    font-size: clamp(120px, 20vw, 250px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: 0;
    letter-spacing: -10px;
}

.error-404-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    color: #fff;
    margin: -40px 0 30px;
    letter-spacing: 2px;
}

.error-404-description {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-404-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.error-404-button:hover {
    background: #fff;
    color: var(--color-dark);
    border-color: #fff;
}

.error-404-button svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.error-404-button:hover svg {
    transform: translateX(5px);
}

/* 404 Form Section */
.error-404-form-section {
    padding: 100px 20px;
    background: var(--color-background);
}

.error-404-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.error-404-form-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.error-404-form-description {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 50px;
}

.error-404-form {
    text-align: left;
}

.error-404-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.error-404-form input[type="text"],
.error-404-form input[type="email"],
.error-404-form input[type="tel"],
.error-404-form textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.error-404-form input[type="text"]:focus,
.error-404-form input[type="email"]:focus,
.error-404-form input[type="tel"]:focus,
.error-404-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.error-404-form input[type="text"]::placeholder,
.error-404-form input[type="email"]::placeholder,
.error-404-form input[type="tel"]::placeholder,
.error-404-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

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

.error-404-form input[type="submit"] {
    padding: 18px 40px;
    background: transparent;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    align-self: flex-start;
}

.error-404-form input[type="submit"]:hover {
    background: #fff;
    color: var(--color-dark);
    border-color: #fff;
}

/* 404 Responsive */
@media (max-width: 768px) {
    .error-404-hero {
        padding: 100px 20px 60px;
    }

    .error-404-title {
        letter-spacing: -5px;
    }

    .error-404-subtitle {
        margin-top: -20px;
        letter-spacing: 1px;
    }

    .error-404-description {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .error-404-button {
        padding: 15px 30px;
        font-size: 12px;
    }

    .error-404-form-section {
        padding: 60px 20px;
    }

    .error-404-form-title {
        font-size: 26px;
    }

    .error-404-form-description {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .error-404-form input[type="submit"] {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   Default Page Template - Professional Real Estate Style
   ========================================================================== */

/* Main wrapper */
.default-page {
    background-color: var(--color-background);
}

/* Page Hero Section */
.default-page .page-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: #0a0a0a;
    overflow: hidden;
}

.default-page .page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.default-page .page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.default-page .page-hero-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-brand);
    margin-bottom: 25px;
    padding: 8px 20px;
    border: 1px solid rgba(139, 111, 78, 0.4);
}

.default-page .page-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: 2px;
    line-height: 1.15;
}

.default-page .page-hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
    font-weight: 400;
}

.default-page .page-hero-line {
    width: 60px;
    height: 2px;
    background: var(--color-brand);
    margin: 0 auto;
}

/* Scroll Indicator in Hero */
.default-page .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.default-page .scroll-indicator .scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(8px);
    }
    60% {
        transform: rotate(45deg) translateY(4px);
    }
}

/* Breadcrumbs */
.default-page .breadcrumbs {
    background-color: #0f0f0f;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.default-page .breadcrumbs .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.default-page .breadcrumbs a {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.default-page .breadcrumbs a:hover {
    color: var(--color-brand);
}

.default-page .breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
}

.default-page .breadcrumbs .separator svg {
    width: 5px;
    height: auto;
}

.default-page .breadcrumbs .current {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: var(--color-brand);
    font-weight: 500;
}

/* Page Content Section */
.default-page .page-content {
    background-color: var(--color-background-alt);
    padding: 80px 0;
}

.default-page .page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.default-page .page-article {
    background: #ffffff;
    padding: 60px 70px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Typography for Gutenberg Blocks */
.default-page .page-article h1,
.default-page .page-article h2,
.default-page .page-article h3,
.default-page .page-article h4,
.default-page .page-article h5,
.default-page .page-article h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.default-page .page-article h2 {
    font-size: 28px;
    margin-top: 50px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.default-page .page-article h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--color-brand);
}

.default-page .page-article h3 {
    font-size: 22px;
    margin-top: 40px;
}

.default-page .page-article h4 {
    font-size: 18px;
    margin-top: 30px;
}

.default-page .page-article p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.85;
    color: var(--color-text-light);
    margin-bottom: 25px;
}

.default-page .page-article a {
    color: var(--color-brand);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.default-page .page-article a:hover {
    border-bottom-color: var(--color-brand);
}

/* Lists */
.default-page .page-article ul,
.default-page .page-article ol {
    margin: 0 0 25px 0;
    padding-left: 0;
}

.default-page .page-article ul {
    list-style: none;
}

.default-page .page-article ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-light);
}

.default-page .page-article ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--color-brand);
    border-radius: 50%;
}

.default-page .page-article ol {
    list-style: none;
    counter-reset: custom-counter;
}

.default-page .page-article ol li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-light);
    counter-increment: custom-counter;
}

.default-page .page-article ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--color-brand);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Blockquote */
.default-page .page-article blockquote {
    margin: 40px 0;
    padding: 35px 40px;
    background: linear-gradient(135deg, rgba(139, 111, 78, 0.08) 0%, rgba(139, 111, 78, 0.03) 100%);
    border-left: 4px solid var(--color-brand);
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.7;
    position: relative;
}

.default-page .page-article blockquote::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 60px;
    color: var(--color-brand);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.default-page .page-article blockquote p {
    margin: 0;
    color: inherit;
    font-size: inherit;
}

.default-page .page-article blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    font-style: normal;
    color: var(--color-brand);
}

/* Separator */
.default-page .page-article hr,
.default-page .page-article .wp-block-separator {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
    margin: 50px 0;
}

/* Images */
.default-page .page-article img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.default-page .page-article .wp-block-image {
    margin: 40px 0;
}

.default-page .page-article .wp-block-image figcaption {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

/* Tables */
.default-page .page-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

.default-page .page-article table th,
.default-page .page-article table td {
    padding: 15px 20px;
    text-align: left;
    border: 1px solid #eee;
}

.default-page .page-article table th {
    background: var(--color-dark);
    color: #fff;
    font-weight: 600;
}

.default-page .page-article table tr:nth-child(even) {
    background: #fafafa;
}

/* Buttons */
.default-page .page-article .wp-block-button__link {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 35px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.default-page .page-article .wp-block-button.is-style-fill .wp-block-button__link {
    background: var(--color-brand);
    color: #fff;
    border: 2px solid var(--color-brand);
}

.default-page .page-article .wp-block-button.is-style-fill .wp-block-button__link:hover {
    background: transparent;
    color: var(--color-brand);
}

.default-page .page-article .wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.default-page .page-article .wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--color-dark);
    color: #fff;
}

/* Columns */
.default-page .page-article .wp-block-columns {
    margin: 40px 0;
    gap: 40px;
}

/* Details / Accordion */
.default-page .page-article details {
    margin: 20px 0;
    border: 1px solid #eee;
    padding: 0;
}

.default-page .page-article details summary {
    padding: 20px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark);
    cursor: pointer;
    background: #fafafa;
    transition: all 0.3s ease;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.default-page .page-article details summary::-webkit-details-marker {
    display: none;
}

.default-page .page-article details summary::after {
    content: '+';
    font-size: 20px;
    color: var(--color-brand);
    transition: transform 0.3s ease;
}

.default-page .page-article details[open] summary::after {
    content: '−';
}

.default-page .page-article details[open] summary {
    border-bottom: 1px solid #eee;
}

.default-page .page-article details > *:not(summary) {
    padding: 25px;
}

/* CTA Section */
.default-page .page-cta {
    background: var(--color-dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.default-page .page-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(139, 111, 78, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 111, 78, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.default-page .page-cta .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.default-page .page-cta .cta-inner {
    position: relative;
}

.default-page .page-cta .cta-accent-line {
    width: 60px;
    height: 2px;
    background: var(--color-brand);
    margin: 0 auto 35px;
}

.default-page .page-cta .cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: 1px;
    line-height: 1.3;
}

.default-page .page-cta .cta-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto 45px;
    line-height: 1.8;
}

.default-page .page-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 45px;
    background: transparent;
    border: 1px solid var(--color-brand);
    color: var(--color-brand);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.default-page .page-cta .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-brand);
    transition: left 0.4s ease;
    z-index: -1;
}

.default-page .page-cta .cta-button:hover {
    color: #ffffff;
    border-color: var(--color-brand);
}

.default-page .page-cta .cta-button:hover::before {
    left: 0;
}

.default-page .page-cta .cta-button svg {
    transition: transform 0.3s ease;
}

.default-page .page-cta .cta-button:hover svg {
    transform: translateX(5px);
}

/* Responsive - Default Page */
@media screen and (max-width: 1024px) {
    .default-page .page-hero {
        height: 60vh;
        min-height: 400px;
    }

    .default-page .page-hero-label {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .default-page .page-article {
        padding: 50px 50px;
    }

    .default-page .page-article h2 {
        font-size: 24px;
    }

    .default-page .page-article h3 {
        font-size: 20px;
    }

    .default-page .page-cta {
        padding: 80px 0;
    }
}

@media screen and (max-width: 768px) {
    .default-page .page-hero {
        height: 55vh;
        min-height: 350px;
    }

    .default-page .page-hero-label {
        font-size: 9px;
        padding: 6px 15px;
        margin-bottom: 20px;
    }

    .default-page .page-hero-subtitle {
        font-size: 14px;
    }

    .default-page .page-hero-line {
        width: 50px;
    }

    .default-page .breadcrumbs .container {
        padding: 0 20px;
    }

    .default-page .page-content {
        padding: 50px 0;
    }

    .default-page .page-container {
        padding: 0 20px;
    }

    .default-page .page-article {
        padding: 35px 30px;
    }

    .default-page .page-article h2 {
        font-size: 22px;
        margin-top: 35px;
    }

    .default-page .page-article h3 {
        font-size: 18px;
        margin-top: 30px;
    }

    .default-page .page-article p {
        font-size: 15px;
    }

    .default-page .page-article blockquote {
        padding: 25px 30px;
        font-size: 16px;
    }

    .default-page .page-article blockquote::before {
        font-size: 40px;
        left: 15px;
    }

    .default-page .page-cta {
        padding: 60px 0;
    }

    .default-page .page-cta .container {
        padding: 0 25px;
    }

    .default-page .page-cta .cta-text {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .default-page .page-cta .cta-button {
        padding: 16px 35px;
        font-size: 11px;
        letter-spacing: 2px;
    }
}

@media screen and (max-width: 480px) {
    .default-page .page-hero {
        height: 50vh;
        min-height: 300px;
    }

    .default-page .page-article {
        padding: 30px 25px;
    }

    .default-page .page-article ul li::before {
        width: 6px;
        height: 6px;
        top: 8px;
    }

    .default-page .page-article ol li::before {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .default-page .page-cta .cta-button {
        padding: 14px 28px;
        flex-direction: column;
        gap: 10px;
    }
}
