/*
Theme Name: Bespoq - Animated
Author: Sadeg02
Author URI: https://github.com/Sadeg02
Description: Custom WordPress theme with animated text slider, ACF customization, and CF7 integration. Features custom cursor, hover effects, and animated menu.
Version: 2.2.3
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: bespoq
*/

/* ==========================================================================
   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-text: #333333;
    --color-text-light: #666666;
    --color-accent: #dddddd;
    --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-secondary);
    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: translateY(0);
    transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

.page-loader.loaded {
    transform: translateY(-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, #000000 0%, #222222 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%);
}

/* ==========================================================================
   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) 75%,
                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: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    z-index: 1000;
    pointer-events: none;
}

/* Logo hide on scroll */
.logo-link {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Logo goes up when hidden */
.logo-container.logo-hidden .logo-link {
    transform: translateY(-100px);
    opacity: 0;
}

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

/* Tagline goes up when hidden */
.site-header.header-hidden .center-tagline {
    transform: translate(-50%, -100px);
    opacity: 0;
}

.site-logo {
    width: 280px;
    max-width: none !important;
    height: auto;
    opacity: 0.95;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.logo-link .site-logo {
    width: 280px !important;
    max-width: none !important;
}

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

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

.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;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}


.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: 30px;
    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 (dark for white menu background) */
.menu-toggle.active span {
    background-color: var(--color-dark);
}

.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: #ffffff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    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-dark);
    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: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(0, 0, 0, 0.08);
    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(0, 0, 0, 0.5);
    letter-spacing: 1px;
    line-height: 1.6;
}

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

.menu-contact-item a:hover {
    color: #000000;
}

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

.menu-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(0, 0, 0, 0.4);
    transition: color 0.3s ease, transform 0.3s ease;
}

.menu-social-link:hover {
    color: #000000;
    transform: scale(1.1);
}

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

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

.social-icons {
    position: fixed;
    bottom: 50px;
    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: 100px;
    right: 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;
    transform: translateX(-5px);
    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 Left (buttons on right) */
.language-dropdown {
    position: absolute;
    right: 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;
    }

    .contact-action-buttons {
        bottom: 100px;
        right: 0;
    }

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

    .action-button svg {
        width: 24px;
        height: 24px;
    }
}
@media screen and (max-width: 1024px) {
.center-tagline {
        top: 20px;
        left: 320px;
        right: auto;
        transform: none;
        max-width: 150px;
    }

    .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: 10px;
        top: 15px;
        flex-direction: column;
        gap: 10px;
    }

    .site-logo {
        width: 200px;
    }

    .logo-link .site-logo {
        width: 200px !important;
    }
    .center-tagline {
        left: 240px;
        right: auto;
    }

    

    .awards-container {
        left: 30px;
    }

    .menu-toggle,
    .language-switcher {
        right: 30px;
    }

    .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: 100px;
        right: 0;
        gap: 10px;
    }

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

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

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

/* ==========================================================================
   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 #ffffff;
    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: #ffffff;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3),
                0 5px 15px rgba(255, 255, 255, 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: #ffffff;
}

/* 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: #ffffff;
}

.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(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background-color: #ffffff;
    color: #0a0a0a;
    transform: translateY(-3px);
}

.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-secondary);
}

.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: 8px;
    padding: 0 0 80px;
}

/* Every 3rd item starting from 1st takes full width (1, 4, 7, 10...) = 1 big, 2 small pattern */
.portfolio-grid .portfolio-item:nth-child(3n+1) {
    grid-column: span 2;
}

/* Adjust height for wide items */
.portfolio-grid .portfolio-item:nth-child(3n+1) .portfolio-item-image {
    padding-bottom: 35%;
}

.portfolio-grid-wrapper {
    margin-top: 30px;
}

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

a.portfolio-item,
.portfolio-item {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

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

.portfolio-item-inner {
    background: var(--color-secondary);
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.portfolio-item-inner:hover {
    transform: translateY(-4px);
}

.portfolio-item-image {
    position: relative;
    overflow: hidden;
    padding-bottom: 70%;
}

.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-content {
    border-bottom : 1px solid var(--color-primary);
    border-left: 1px solid var(--color-primary);
    border-right: 1px solid var(--color-primary);
    padding: 20px 30px;
}

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

.portfolio-item-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-light);
}

.portfolio-item-description {
    color: var(--color-text-light);
    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: #222222;
    text-decoration: none;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    border: 2px solid #222222;
    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: #222222;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.no-portfolio {
    text-align: center;
    padding: 100px 20px;
    color: var(--color-text-light);
}


@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-grid .portfolio-item:nth-child(3n+1) {
        grid-column: span 1;
    }

    .portfolio-grid .portfolio-item:nth-child(3n+1) .portfolio-item-image {
        padding-bottom: 70%;
    }
}

/* Portfolio Pagination - Bespoq Style */
.portfolio-pagination {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin-top: 100px;
    padding: 0;
    border-top: 1px solid var(--color-accent);
    border-bottom: 1px solid var(--color-accent);
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 30px 50px;
    background: transparent;
    color: var(--color-text-light);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: none;
}

.pagination-btn:hover {
    background: var(--color-primary);
    color: #fff;
}

.pagination-btn svg {
    width: 12px;
    height: 12px;
    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 var(--color-accent);
    border-right: 1px solid var(--color-accent);
}

.pagination-numbers .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 100%;
    padding: 30px 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--color-text-light);
    transition: all 0.3s ease;
}

.pagination-numbers .page-numbers:hover {
    color: var(--color-primary);
}

.pagination-numbers .page-numbers.current {
    color: var(--color-primary);
    font-weight: 600;
    position: relative;
}

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

.pagination-numbers .page-numbers.dots {
    min-width: 30px;
    padding: 30px 5px;
}

@media (max-width: 768px) {
    .portfolio-pagination {
        flex-direction: column;
        border-bottom: none;
    }

    .pagination-btn {
        padding: 25px 30px;
        width: 100%;
        justify-content: center;
        border-bottom: 1px solid var(--color-accent);
    }

    .pagination-numbers {
        order: -1;
        width: 100%;
        justify-content: center;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid var(--color-accent);
    }

    .pagination-numbers .page-numbers {
        min-width: 50px;
        padding: 20px 8px;
    }

    .pagination-numbers a,
    .pagination-numbers span.current {
        width: 40px;
        height: 40px;
    }
}

/* 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 #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.3),
                0 5px 15px rgba(255, 255, 255, 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-secondary);
}

.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-secondary);
}

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

.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;
}

.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-secondary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.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-dark);
}

.value-description {
    color: var(--color-text-light);
    font-weight: 300;
    line-height: 1.6;
}

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

.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-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

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

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

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

.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: var(--color-dark);
}

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

.team-member-bio {
    color: var(--color-text-light);
    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-secondary);
}

.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%,
        var(--color-primary) 5%,
        var(--color-primary) 95%,
        transparent 100%);
    opacity: 0.3;
    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-secondary);
    border: 3px solid var(--color-primary);
    position: relative;
    z-index: 2;
    transition: transform var(--transition-speed);
}

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

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

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

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

.timeline-item:hover .timeline-content {
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

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

.timeline-description {
    color: var(--color-text-light);
    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;
}

.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;
}

.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;
}

.contact-info-item h3 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 5px;
    color: #ffffff;
}

.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: #ffffff;
}

.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(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
}

.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(255, 255, 255, 0.4);
    outline: none;
}

.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;
}

.contact-page .wpcf7-form input[type="submit"]:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.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-secondary);
}

.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%,
        var(--color-primary) 10%,
        var(--color-primary) 90%,
        transparent 100%);
    opacity: 0.2;
    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-secondary);
    transition: all var(--transition-speed);
    border: 2px solid transparent;
}

.process-step-inner:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    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: var(--color-primary);
    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);
}

.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: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color var(--transition-speed);
}

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

.process-step-description {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-light);
}

.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: 15px;
        order: 0;
    }

    .process-step-icon {
        display: inline-block;
        width: 50px;
        height: 50px;
        margin-bottom: 0;
        vertical-align: top;
        margin-top: 5px;
    }

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

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

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

    .process-step.even .process-step-content {
        text-align: left;
    }

    .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-dark);
    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: 5px;
        top: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .site-logo {
        width: 160px;
    }

    .logo-link .site-logo {
        width: 160px !important;
    }

    .center-tagline {
        top: 15px;
        left: 190px;
        right: auto;
        max-width: 80px;
    }

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

/* ==========================================================================
   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;
}

/* 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;
}

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

.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: 60px;
    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: #ffffff;
}

.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: 40px;
        bottom: 40px;
    }


    .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;
    }
}

@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;
    height: 100dvh;
    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;
    pointer-events: none;
}

/* Make slide images clickable: disable pointer-events on overlay containers, keep slide links clickable */
.animated-template-wrapper .animated-hero-content {
    pointer-events: none;
}

.animated-template-wrapper .animated-hero-slider-nav {
    pointer-events: none;
}

.animated-template-wrapper .animated-hero-social {
    pointer-events: none;
}

.animated-template-wrapper .animated-slide-button,
.animated-template-wrapper .animated-slider-arrow,
.animated-template-wrapper .animated-hero-nav-dot,
.animated-template-wrapper .animated-social-link,
.animated-template-wrapper .cta-slide-button,
.animated-template-wrapper .partners-slide-content {
    pointer-events: auto;
}

.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;
}

.animated-template-wrapper .animated-hero-slide .slide-link {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    box-shadow: none;
    cursor: pointer;
}

.animated-template-wrapper .animated-hero-slide .slide-link:hover {
    background: none;
    transform: none;
    box-shadow: none;
}

/* Partners Slide - Black background with logos */
.animated-template-wrapper .animated-hero-slide.partners-slide {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.animated-template-wrapper .partners-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    gap: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animated-template-wrapper .animated-hero-slide.partners-slide.active .partners-slide-content {
    opacity: 1;
    transform: translateY(0);
}

.animated-template-wrapper .partners-slide-heading {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
}

.animated-template-wrapper .partners-slide-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.animated-template-wrapper .partners-slide-logos .partner-logo {
    max-height: 100px;
    max-width: 350px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.animated-template-wrapper .partners-slide-logos .partner-logo:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .animated-template-wrapper .partners-slide-heading {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .animated-template-wrapper .partners-slide-logos {
        gap: 40px;
    }

    .animated-template-wrapper .partners-slide-logos .partner-logo {
        max-height: 70px;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .animated-template-wrapper .partners-slide-content {
        gap: 35px;
    }

    .animated-template-wrapper .partners-slide-heading {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .animated-template-wrapper .partners-slide-logos {
        gap: 30px;
    }

    .animated-template-wrapper .partners-slide-logos .partner-logo {
        max-height: 55px;
        max-width: 200px;
    }
}

/* CTA Slide - Black background with centered button */
.animated-template-wrapper .animated-hero-slide.cta-slide {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.animated-template-wrapper .cta-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Show CTA content when slide is active */
.animated-template-wrapper .animated-hero-slide.cta-slide.active .cta-slide-content {
    opacity: 1;
    transform: translateY(0);
}

.animated-template-wrapper .cta-slide-button {
    display: inline-block;
    position: relative;
    z-index: 101;
    padding: 28px 70px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.animated-template-wrapper .cta-slide-button:hover {
    background: #fff;
    color: #000;
}

/* CTA Slide Responsive */
@media (max-width: 768px) {
    .animated-template-wrapper .cta-slide-button {
        padding: 22px 40px;
        font-size: 12px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .animated-template-wrapper .cta-slide-content {
        padding-top: 80px;
    }

    .animated-template-wrapper .cta-slide-button {
        padding: 18px 30px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }
}

/* Hide content on CTA slide */
.animated-template-wrapper .animated-hero-content {
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.animated-template-wrapper .animated-hero-content.hidden-on-cta-slide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* 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;
    }
}

/* ==========================================================================
   Portfolio Filters
   ========================================================================== */

.portfolio-filters {
    padding: 40px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.portfolio-filters .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #222222;
    color: #222222;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #222222;
    color: #ffffff;
}

/* ==========================================================================
   Single Realizacja Page
   ========================================================================== */

.realizacja-single {
    background-color: #ffffff;
}

.realizacja-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.realizacja-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.realizacja-hero-content {
    position: relative;
    z-index: 10;
    padding: 60px;
    max-width: 900px;
    text-align: center;
}

.realizacja-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.realizacja-category,
.realizacja-type {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.realizacja-hero-content .realizacja-description {
    margin-top: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.realizacja-hero-content .realizacja-description p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
}

.realizacja-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.realizacja-details {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.realizacja-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

.realizacja-meta-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meta-label {
    font-size: 11px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888888;
}

.meta-value {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: #222222;
}

.realizacja-description {
    max-width: 800px;
}

.realizacja-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #444444;
    font-family: 'Open Sans', sans-serif;
}

.realizacja-content {
    padding: 80px 0;
}

.realizacja-content h2,
.realizacja-content h3,
.realizacja-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #222222;
    margin-bottom: 20px;
}

.realizacja-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 25px;
}

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

.realizacja-gallery {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.gallery-title {
    font-size: 32px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
    color: #222222;
}

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

.gallery-item {
    overflow: hidden;
}

.gallery-link {
    display: block;
    position: relative;
}

.gallery-link img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.realizacja-navigation {
    padding: 60px 0;
    background-color: #222222;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-prev { text-align: left; }
.nav-next { text-align: right; }
.nav-all { text-align: center; }

.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.6);
}

.nav-title {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}


@media screen and (max-width: 768px) {
    .portfolio-filters { padding: 30px 20px; }
    .filter-btn { padding: 10px 20px; font-size: 11px; }
    .realizacja-hero { height: 50vh; min-height: 400px; }
    .realizacja-hero-content { padding: 30px; }
    .realizacja-title { font-size: 32px; letter-spacing: 2px; }
    .realizacja-category, .realizacja-type { font-size: 12px; }
    .realizacja-container { padding: 0 20px; }
    .realizacja-details, .realizacja-content, .realizacja-gallery { padding: 50px 0; }
    .realizacja-meta { flex-direction: column; gap: 25px; }
    .realizacja-description p { font-size: 16px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-link img { height: 250px; }
    .nav-links { flex-direction: column; gap: 20px; }
    .nav-prev, .nav-next, .nav-all { text-align: center; }
}

/* ============================================
   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, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    height: 60vh;
    min-height: 450px;
}

.archive-hero .portfolio-hero-overlay {
    background: rgba(0, 0, 0, 0.3);
}

/* Taxonomy hero - smaller */
.taxonomy-hero {
    height: 50vh;
    min-height: 350px;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: #1a1a1a;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #ffffff;
}

.breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.4);
    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 0; }
    .breadcrumbs .container { padding: 0 20px; }
    .breadcrumbs a, .breadcrumbs .current { font-size: 11px; }
    .taxonomy-hero { height: 40vh; min-height: 300px; }
}

/* ==========================================================================
   Blog - Minimal Design
   ========================================================================== */

/* Blog Page Wrapper */
.blog-page {
    background-color: #ffffff;
}

/* Blog Hero - Minimal */
.blog-hero {
    height: 50vh;
    min-height: 400px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
    display: flex;
    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.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.blog-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
}

.blog-hero-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

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

.blog-hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-primary);
    margin: 0 auto;
    max-width: 500px;
    line-height: 1.6;
}

/* Blog Filters - Minimal Tabs */
.blog-filters {
    padding: 30px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

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

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-tab {
    padding: 10px 25px;
    background: transparent;
    border: none;
    color: #666;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.filter-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #000;
    transition: width 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
    color: #000;
}

.filter-tab.active::after {
    width: 100%;
}

/* Archive Breadcrumb */
.archive-breadcrumb {
    padding: 20px 0;
    background-color: #fafafa;
    border-bottom: 1px solid #eee;
}

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

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #000;
}

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

.back-link:hover svg {
    transform: translateX(-3px);
}

/* Blog Grid Section */
.blog-grid-section {
    padding: 60px 0 80px;
    background-color: #ffffff;
}

.blog-grid-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

/* Blog Card - Minimal */
.blog-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.blog-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background-color: #f0f0f0;
    margin-bottom: 20px;
}

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

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

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.blog-card-content {
    padding: 0;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.blog-card-date {
    font-size: 12px;
    color: #888;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.blog-card-separator {
    color: #ccc;
    font-size: 12px;
}

.blog-card-category {
    font-size: 11px;
    color: #666;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 400;
    color: #222;
    font-family: var(--font-heading);
    line-height: 1.4;
    margin: 0 0 12px 0;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: #000;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.blog-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #000;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-card-readmore {
    gap: 10px;
}

.blog-card-readmore svg {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-readmore svg {
    transform: translateX(3px);
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 60px;
    text-align: center;
}

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    font-family: var(--font-heading);
    color: #666;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover {
    color: #000;
    border-color: #000;
}

.blog-pagination .page-numbers.current {
    color: #000;
    border-color: #000;
    font-weight: 500;
}

.blog-pagination .prev,
.blog-pagination .next {
    font-size: 18px;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 80px 40px;
}

.no-posts p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.back-button {
    display: inline-block;
    padding: 12px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.back-button:hover {
    background: #333;
}

/* Blog CTA */
.blog-cta {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.blog-cta .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 40px;
}

.blog-cta .cta-title {
    font-size: 32px;
    font-weight: 300;
    color: #222;
    font-family: var(--font-heading);
    margin: 0 0 15px 0;
}

.blog-cta .cta-text {
    font-size: 16px;
    color: #666;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.blog-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.blog-cta .cta-button:hover {
    background: #333;
    transform: translateY(-2px);
}

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

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

/* ==========================================================================
   Single Blog Post - Minimal
   ========================================================================== */

.blog-single {
    background-color: #ffffff;
}

/* Post Hero */
.blog-post-hero {
    height: 60vh;
    min-height: 450px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
    display: flex;
    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.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.blog-post-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
    max-width: 800px;
}

.blog-post-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    padding: 6px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.blog-post-title {
    font-size: 42px;
    font-weight: 300;
    color: #ffffff;
    font-family: var(--font-heading);
    line-height: 1.3;
    margin: 0 0 20px 0;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.blog-post-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* Post Content */
.blog-post-content {
    padding: 60px 0;
}

.blog-post-content .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.blog-post-body {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.blog-post-body p {
    margin-bottom: 25px;
}

.blog-post-body h2 {
    font-size: 28px;
    font-weight: 400;
    color: #222;
    margin: 50px 0 25px 0;
    font-family: var(--font-heading);
}

.blog-post-body h3 {
    font-size: 22px;
    font-weight: 400;
    color: #222;
    margin: 40px 0 20px 0;
    font-family: var(--font-heading);
}

.blog-post-body img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
}

.blog-post-body blockquote {
    margin: 40px 0;
    padding: 30px 40px;
    background-color: #f8f8f8;
    border-left: 3px solid #000;
    font-style: italic;
    font-size: 18px;
    color: #555;
}

.blog-post-body ul,
.blog-post-body ol {
    margin: 25px 0;
    padding-left: 25px;
}

.blog-post-body li {
    margin-bottom: 10px;
}

/* Post Tags */
.blog-post-tags {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.blog-post-tags .tags-label {
    font-size: 12px;
    font-weight: 500;
    color: #888;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-right: 10px;
}

.blog-post-tags a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.blog-post-tags a:hover {
    color: #000;
}

/* Post Share */
.blog-post-share {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.share-label {
    font-size: 12px;
    font-weight: 500;
    color: #888;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    border-color: #000;
    color: #000;
}

/* Post Navigation */
.blog-navigation {
    padding: 60px 0;
    background-color: #f8f8f8;
    border-top: 1px solid #eee;
}

.blog-navigation .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.blog-navigation .nav-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.blog-navigation .nav-link:hover {
    opacity: 0.7;
}

.blog-navigation .nav-prev {
    text-align: left;
}

.blog-navigation .nav-next {
    text-align: right;
}

.blog-navigation .nav-all {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    color: #666;
    transition: all 0.3s ease;
}

.blog-navigation .nav-all:hover {
    border-color: #000;
    color: #000;
}

.blog-navigation .nav-empty {
    visibility: hidden;
}

.nav-direction {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    color: #888;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.blog-navigation .nav-prev .nav-direction {
    justify-content: flex-start;
}

.blog-navigation .nav-next .nav-direction {
    justify-content: flex-end;
}

.blog-navigation .nav-title {
    font-size: 16px;
    font-weight: 400;
    color: #222;
    font-family: var(--font-heading);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Responsive */
@media screen and (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .blog-hero-title {
        font-size: 48px;
        letter-spacing: 5px;
    }

    .blog-post-title {
        font-size: 36px;
    }
}


@media screen and (max-width: 768px) {
    .blog-hero {
        height: 40vh;
        min-height: 300px;
    }

    .blog-hero-title {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .blog-hero-subtitle {
        font-size: 14px;
    }

    .filter-tabs {
        gap: 5px;
    }

    .filter-tab {
        padding: 8px 15px;
        font-size: 11px;
    }

    .blog-grid-section {
        padding: 40px 0 60px;
    }

    .blog-grid-section .container,
    .blog-filters .container,
    .archive-breadcrumb .container {
        padding: 0 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .blog-card-title {
        font-size: 18px;
    }

    .blog-pagination {
        margin-top: 40px;
    }

    .blog-cta {
        padding: 60px 0;
    }

    .blog-cta .cta-title {
        font-size: 26px;
    }

    /* Single Post */
    .blog-post-hero {
        height: 45vh;
        min-height: 350px;
    }

    .blog-post-hero-content {
        padding: 30px 20px;
    }

    .blog-post-title {
        font-size: 28px;
    }

    .blog-post-content {
        padding: 40px 0;
    }

    .blog-post-content .container {
        padding: 0 20px;
    }

    .blog-post-body {
        font-size: 16px;
    }

    .blog-post-body h2 {
        font-size: 24px;
    }

    .blog-post-body h3 {
        font-size: 20px;
    }

    .blog-navigation {
        padding: 40px 0;
    }

    .blog-navigation .container {
        padding: 0 20px;
    }

    .nav-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-navigation .nav-prev,
    .blog-navigation .nav-next {
        text-align: center;
    }

    .blog-navigation .nav-prev .nav-direction,
    .blog-navigation .nav-next .nav-direction {
        justify-content: center;
    }

    .blog-navigation .nav-all {
        order: -1;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .blog-hero-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .blog-post-title {
        font-size: 24px;
    }

    .blog-card-image {
        margin-bottom: 15px;
    }

    .blog-card-title {
        font-size: 17px;
    }
}

/* 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: #fff;
}

.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%, #1a1a1a 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.08);
    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: 3px;
    text-transform: uppercase;
}

.error-404-description {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.error-404-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--color-accent);
    transition: all 0.4s ease;
}

.error-404-button:hover {
    background: #fff;
    color: var(--color-dark);
    border-color: #fff;
}

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

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

/* 404 Form Section */
.error-404-form-section {
    padding: 100px 20px;
    background: #fff;
}

.error-404-form-wrapper {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
}

.error-404-form-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 300;
    color: var(--color-dark);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.error-404-form-description {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-light);
    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: #fff;
    border: 1px solid var(--color-accent);
    color: var(--color-text);
    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: var(--color-dark);
}

.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: var(--color-text-light);
}

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

.error-404-form input[type="submit"] {
    padding: 18px 40px;
    background: var(--color-dark);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--color-dark);
    cursor: pointer;
    transition: all 0.4s ease;
    align-self: flex-start;
}

.error-404-form input[type="submit"]:hover {
    background: transparent;
    color: var(--color-dark);
}

/* 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: 11px;
    }

    .error-404-form-section {
        padding: 60px 20px;
    }

    .error-404-form-title {
        font-size: 24px;
    }

    .error-404-form-description {
        font-size: 13px;
        margin-bottom: 35px;
    }

    .error-404-form input[type="submit"] {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   Default Page Template
   ========================================================================== */

.default-page {
    background: #fff;
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-dark);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    max-width: 900px;
}

.page-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    letter-spacing: 1px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Page Hero Scroll Indicator */
.default-page .scroll-indicator {
    display: block;
}

/* Page Container */
.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Page Content */
.page-content {
    padding: 80px 0;
    background: #fff;
}

.page-article {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    line-height: 1.9;
    color: #444444;
}

/* Gutenberg Content Styles */
.page-article h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #222222;
    margin: 50px 0 25px 0;
    letter-spacing: 1px;
}

.page-article h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #222222;
    margin: 40px 0 20px 0;
}

.page-article h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #333333;
    margin: 30px 0 15px 0;
}

.page-article p {
    margin-bottom: 25px;
    color: #444444;
}

.page-article p:last-child {
    margin-bottom: 0;
}

.page-article strong {
    font-weight: 600;
    color: #222222;
}

.page-article a {
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease;
}

.page-article a:hover {
    opacity: 0.7;
}

/* Lists */
.page-article ul,
.page-article ol {
    margin: 25px 0;
    padding-left: 25px;
}

.page-article li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.page-article ul li::marker {
    color: #000000;
}

/* Blockquotes */
.page-article blockquote {
    margin: 40px 0;
    padding: 30px 40px;
    background: #f8f8f8;
    border-left: 4px solid #000000;
    font-style: italic;
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
}

.page-article blockquote p {
    margin-bottom: 0;
}

/* Images */
.page-article img {
    max-width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 0;
}

.page-article figure {
    margin: 40px 0;
}

.page-article figcaption {
    font-size: 14px;
    color: #888888;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

/* Gutenberg Blocks - Gallery */
.page-article .wp-block-gallery {
    margin: 50px 0;
}

.page-article .wp-block-gallery img {
    margin: 0;
}

/* Gutenberg Gallery Hover Effect - White/Light Theme */
.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(255, 255, 255, 0);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.wp-block-gallery.has-nested-images figure.wp-block-image:hover::after {
    background: rgba(255, 255, 255, 0.7);
}

.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: 70px;
    height: 70px;
    background: transparent;
    border: 2px solid #222;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23222' stroke-width='1.5'%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cpolyline points='9 21 3 21 3 15'%3E%3C/polyline%3E%3Cline x1='21' y1='3' x2='14' y2='10'%3E%3C/line%3E%3Cline x1='3' y1='21' x2='10' y2='14'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px;
    z-index: 2;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 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;
}

/* Gutenberg Gallery Grid Layout for Realizacje */
.realizacja-content .wp-block-gallery {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin: 40px 0;
}

.realizacja-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;
}

.realizacja-content .wp-block-gallery.has-nested-images figure.wp-block-image a,
.realizacja-content .wp-block-gallery.has-nested-images figure.wp-block-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.realizacja-content .wp-block-gallery.has-nested-images figure.wp-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.realizacja-content .wp-block-gallery.has-nested-images figure.wp-block-image:hover img {
    transform: scale(1.05);
}

/* Lightbox Styles - White Background */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.97);
    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 {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid #222;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close::before,
.lightbox-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #222;
    transition: background 0.3s ease;
}

.lightbox-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.lightbox-close:hover {
    background: #222;
}

.lightbox-close:hover::before,
.lightbox-close:hover::after {
    background: #fff;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid #222;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
    fill: #222;
    transition: fill 0.3s ease;
}

.lightbox-nav:hover {
    background: #222;
}

.lightbox-nav:hover svg {
    fill: #fff;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    /* Gallery responsive - keep 2 columns on tablet */
    .realizacja-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 (max-width: 480px) {
    /* Gallery responsive - 1 column on mobile */
    .realizacja-content .wp-block-gallery.has-nested-images figure.wp-block-image {
        flex: 0 0 100%;
        max-width: 100%;
        height: 250px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }
}

/* Gutenberg Blocks - Columns */
.page-article .wp-block-columns {
    margin: 40px 0;
    gap: 40px;
}

/* Gutenberg Blocks - Separator */
.page-article .wp-block-separator {
    margin: 50px auto;
    border: none;
    border-top: 1px solid #e0e0e0;
    max-width: 200px;
}

/* Gutenberg Blocks - Details/Accordion */
.page-article details {
    margin: 30px 0;
    padding: 25px 30px;
    background: #f8f8f8;
    border: 1px solid #e8e8e8;
}

.page-article details summary {
    font-weight: 600;
    cursor: pointer;
    color: #222222;
    font-size: 16px;
}

.page-article details[open] summary {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

/* Page CTA Section */
.page-cta {
    padding: 100px 20px;
    background: var(--color-dark);
    text-align: center;
}

.page-cta .cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.page-cta .cta-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.page-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.page-cta .cta-button:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

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

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

/* Responsive - Default Page */
@media screen and (max-width: 1024px) {
    .page-hero {
        height: 60vh;
        min-height: 400px;
        background-attachment: scroll;
    }

    .page-hero-title {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .page-hero-subtitle {
        font-size: 16px;
    }

    .page-container {
        padding: 0 30px;
    }

    .page-content {
        padding: 60px 0;
    }

    .page-article {
        font-size: 16px;
    }

    .page-article h2 {
        font-size: 28px;
    }

    .page-article h3 {
        font-size: 22px;
    }
}


@media screen and (max-width: 768px) {
    .page-hero {
        height: 50vh;
        min-height: 350px;
    }

    .page-hero-content {
        padding: 30px;
    }

    .page-hero-title {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .page-hero-subtitle {
        font-size: 15px;
    }

    .page-container {
        padding: 0 20px;
    }

    .page-content {
        padding: 50px 0;
    }

    .page-article {
        font-size: 15px;
        line-height: 1.8;
    }

    .page-article h2 {
        font-size: 24px;
        margin: 40px 0 20px 0;
    }

    .page-article h3 {
        font-size: 20px;
    }

    .page-article blockquote {
        padding: 25px;
        font-size: 16px;
    }

    .page-cta {
        padding: 70px 20px;
    }

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

    .page-cta .cta-button {
        padding: 15px 30px;
        font-size: 11px;
    }
}

@media screen and (max-width: 480px) {
    .page-hero-title {
        font-size: 26px;
        letter-spacing: 2px;
    }

    .page-hero-subtitle {
        font-size: 14px;
    }

    .page-article h2 {
        font-size: 22px;
    }

    .page-article h3 {
        font-size: 18px;
    }

    .page-cta .cta-title {
        font-size: 24px;
    }
}
