/*
Theme Name: Nikolaos Zormpas Minimal
Theme URI: 
Author: Antigravity
Author URI: 
Description: A minimal, standard WordPress theme designed as a blank canvas for Elementor.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nikolaoszormpas
*/

/* Reset & Basic Styles */
html, body {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #c5c5c50f;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* Screen reader text helper */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Make images fluid */
img {
    max-width: 100%;
    height: auto;
}

/* Header Component */
.site-header {
    background-color: #c5c5c50f;
    width: 100%;
    position: relative;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo (Left) */
.site-branding {
    display: flex;
    align-items: center;
}

.site-logo-text {
    font-size: 26px;
    font-weight: 800;
    color: #111111;
    text-decoration: none;
    letter-spacing: -0.03em;
    line-height: 1;
    transition: opacity 0.2s ease;
}

.site-logo-text:hover {
    opacity: 0.8;
}

.custom-logo-link {
    display: inline-block;
    line-height: 0;
}

.custom-logo {
    display: block;
    height: auto;
    object-fit: contain;
}

/* Navigation (Right) */
.site-navigation-wrapper {
    display: flex;
    align-items: center;
}

.main-navigation ul,
.main-navigation .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: #333333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
    padding: 4px 0;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    color: #000000;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 7px;
    padding: 8px;
    z-index: 101;
    position: relative;
}

.menu-toggle .hamburger-bar {
    display: block;
    height: 1.5px;
    background-color: #111111;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle .bar-top { width: 14px; }
.menu-toggle .bar-middle { width: 26px; }
.menu-toggle .bar-bottom { width: 14px; align-self: flex-start; }

.mobile-menu-footer {
    display: none;
}

/* Responsive Navigation for Mobile Screens */
@media (max-width: 768px) {
    .header-container {
        padding: 16px 20px;
    }

    .menu-toggle {
        display: flex;
    }

    /* Transform to X when open */
    body.nav-open .menu-toggle .bar-top {
        width: 26px;
        transform: translateY(8.5px) rotate(45deg);
        align-self: center;
    }
    body.nav-open .menu-toggle .bar-middle {
        opacity: 0;
    }
    body.nav-open .menu-toggle .bar-bottom {
        width: 26px;
        transform: translateY(-8.5px) rotate(-45deg);
        align-self: center;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .site-header {
        background-color: #fcfcfc; /* Match open menu background */
        border-bottom: none;
    }

    .mobile-menu-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fcfcfc;
        z-index: 99;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 80px 32px 40px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body.nav-open .mobile-menu-container {
        opacity: 1;
        visibility: visible;
    }

    .main-navigation {
        display: block;
        width: 100%;
        text-align: center;
    }

    .main-navigation ul,
    .main-navigation .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .main-navigation a {
        font-size: 42px;
        font-weight: 300;
        display: block;
        width: 100%;
        color: #333333;
        letter-spacing: -0.02em;
        line-height: 1.1;
    }

    .mobile-menu-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: absolute;
        bottom: 32px;
        left: 0;
        padding: 0 32px;
    }

    .footer-links {
        display: flex;
        gap: 20px;
    }

    .footer-links a {
        font-size: 14px;
        color: #666666;
        text-decoration: none;
    }

    .footer-socials {
        display: flex;
        gap: 16px;
    }

    .footer-socials a {
        color: #666666;
        display: flex;
        align-items: center;
    }

    .footer-socials svg {
        width: 20px;
        height: 20px;
    }
}

/* Pre-Footer CTA */
.pre-footer-cta {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px 0 20px;
    box-sizing: border-box;
}

.pre-footer-inner {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background-color: #111111;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Take full window height minus header/footer approximations */
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 64px 24px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.80621px 0.80621px -0.46875px, rgba(0, 0, 0, 0.15) 0px 1.91086px 1.91086px -0.9375px, rgba(0, 0, 0, 0.14) 0px 3.48561px 3.48561px -1.40625px, rgba(0, 0, 0, 0.14) 0px 5.79481px 5.79481px -1.875px, rgba(0, 0, 0, 0.13) 0px 9.35815px 9.35815px -2.34375px, rgba(0, 0, 0, 0.12) 0px 15.3184px 15.3184px -2.8125px, rgba(0, 0, 0, 0.1) 0px 26.3772px 26.3772px -3.28125px, rgba(0, 0, 0, 0.05) 0px 48px 48px -3.75px;
}

.pre-footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.pre-footer-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.cta-headline {
    font-size: 80px;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin: 0 0 16px 0;
    line-height: 1.05;
}

.cta-description {
    font-size: 22px;
    font-weight: 300;
    margin: 0 auto 40px auto;
    line-height: 1.4;
    opacity: 0.9;
    max-width: 600px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    color: #111111;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 18px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

@media (max-width: 768px) {
    .pre-footer-cta {
        padding: 20px 20px 0 20px;
    }
    
    .pre-footer-inner {
        border-radius: 28px;
        min-height: calc(100vh - 200px);
        padding: 48px 20px;
    }
    
    .cta-headline {
        font-size: 56px;
    }
    
    .cta-description {
        font-size: 18px;
    }
}

/* Footer Component */
.site-footer {
    width: 100%;
    background-color: transparent;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.site-copyright {
    margin: 0;
    font-size: 15px;
    color: #666666;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}

.footer-nav-menu a {
    font-size: 15px;
    color: #666666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav-menu a:hover {
    color: #111111;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-social-icons a {
    color: #666666;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.footer-social-icons a:hover {
    color: #111111;
}

/* Footer Responsive Layout */
@media (max-width: 768px) {
    .footer-container {
        padding: 20px;
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        gap: 40px;
    }

    .footer-right {
        flex-direction: column-reverse;
        width: 100%;
        gap: 32px;
    }

    .footer-nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
    }
}

/* Elementor Widget: About Section */
.nikolaoszormpas-about-section {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    background-color: transparent;
}

.nikolaoszormpas-about-content {
    flex: 1;
}

.nikolaoszormpas-about-badge {
    display: inline-block;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 13px;
    color: #666666;
    margin-bottom: 32px;
    font-family: 'Archivo', sans-serif;
    /* subtle border or shadow to separate from background */
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
}

.nikolaoszormpas-about-title {
    font-family: 'Antonio', sans-serif;
    font-size: 110px;
    font-weight: 500;
    line-height: 1.0;
    color: #111111;
    margin: 0 0 32px 0;
    letter-spacing: -0.03em;
}

.nikolaoszormpas-about-title br {
    display: block;
}

.nikolaoszormpas-about-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 40px 0;
    font-weight: 300;
}

.nikolaoszormpas-about-desc p {
    margin-bottom: 20px;
}

.nikolaoszormpas-about-desc p:last-child {
    margin-bottom: 0;
}

.nikolaoszormpas-about-sign {
    font-family: 'Homemade Apple', cursive;
    font-size: 32px;
    color: #111111;
}

.nikolaoszormpas-about-btn-wrapper {
    margin-top: 40px;
}

.nikolaoszormpas-about-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 20px 48px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nikolaoszormpas-about-btn:hover {
    background-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.nikolaoszormpas-about-image-wrapper {
    flex: 0 0 40%;
    max-width: 40%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.80621px 0.80621px -0.46875px, rgba(0, 0, 0, 0.15) 0px 1.91086px 1.91086px -0.9375px, rgba(0, 0, 0, 0.14) 0px 3.48561px 3.48561px -1.40625px, rgba(0, 0, 0, 0.14) 0px 5.79481px 5.79481px -1.875px, rgba(0, 0, 0, 0.13) 0px 9.35815px 9.35815px -2.34375px, rgba(0, 0, 0, 0.12) 0px 15.3184px 15.3184px -2.8125px, rgba(0, 0, 0, 0.1) 0px 26.3772px 26.3772px -3.28125px, rgba(0, 0, 0, 0.05) 0px 48px 48px -3.75px;
    display: flex;
}

.nikolaoszormpas-about-image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

/* Responsive About Section */
@media (max-width: 992px) {
    .nikolaoszormpas-about-section {
        flex-direction: column;
        gap: 60px;
        padding: 60px 20px;
    }
    
    .nikolaoszormpas-about-content {
        max-width: 100%;
    }
    
    .nikolaoszormpas-about-image-wrapper {
        flex: 1;
        max-width: 100%;
        width: 100%;
    }
    
    .nikolaoszormpas-about-title {
        font-size: 72px;
    }
    
    .nikolaoszormpas-about-desc {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .nikolaoszormpas-about-title {
        font-size: 56px;
    }
    
    .nikolaoszormpas-about-sign {
        font-size: 32px;
    }
}

/* Elementor Widget: Hero CTA */
.nikolaoszormpas-hero-cta {
    position: relative;
    max-width: 1400px;
    margin: 20px auto;
    min-height: calc(100vh - 40px);
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align content to the right on desktop */
    padding: 60px;
    background-color: #111; /* Fallback */
}

/* Gradient Overlay */
.nikolaoszormpas-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark gradient on the right side */
    background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0.95) 100%);
    z-index: 1;
}

.nikolaoszormpas-hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 50%; /* Take up right half */
    padding-left: 40px;
}

.nikolaoszormpas-hero-content {
    color: #ffffff;
}

.nikolaoszormpas-hero-title {
    font-family: 'Antonio', sans-serif;
    font-size: 14vw;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
}

.nikolaoszormpas-hero-subtitle {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #e5e5e5;
    margin: 0 0 32px 0;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
}

.nikolaoszormpas-hero-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #eaeaea;
    margin: 0 0 40px 0;
    max-width: 480px;
}

.nikolaoszormpas-hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.nikolaoszormpas-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 8px;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nikolaoszormpas-hero-btn-primary {
    background-color: #ffffff;
    color: #111111;
    border: 1px solid #ffffff;
}

.nikolaoszormpas-hero-btn-primary:hover {
    background-color: #f0f0f0;
    color: #000000;
}

.nikolaoszormpas-hero-btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.4);
}

.nikolaoszormpas-hero-btn-outline:hover {
    border-color: #ffffff;
    background-color: rgba(255,255,255,0.1);
}

.nikolaoszormpas-hero-btn svg {
    transition: transform 0.3s ease;
}

.nikolaoszormpas-hero-btn:hover svg {
    transform: translateX(4px);
}

.nikolaoszormpas-hero-top-list {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nikolaoszormpas-hero-bottom-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 32px;
}

.nikolaoszormpas-hero-bottom-card {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    padding-left: 16px;
}

.nikolaoszormpas-hero-bottom-card::before {
    content: '';
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 2px;
    background: #d4af37;
    border-radius: 2px;
}

.nikolaoszormpas-hero-bottom-card-title {
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.nikolaoszormpas-hero-bottom-card-subtitle {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.4;
}

.nikolaoszormpas-hero-featured-card-wrapper {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 3;
    max-width: 380px;
}

.nikolaoszormpas-hero-featured-card {
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 32px;
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nikolaoszormpas-hero-featured-label {
    display: inline-block;
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.nikolaoszormpas-hero-featured-title {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.nikolaoszormpas-hero-featured-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 24px 0;
}

.nikolaoszormpas-hero-featured-link {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.nikolaoszormpas-hero-featured-link:hover {
    opacity: 0.8;
}

/* Responsive Hero CTA */
@media (max-width: 992px) {
    .nikolaoszormpas-hero-cta {
        align-items: flex-end; /* Text at the bottom on mobile/tablet */
        justify-content: flex-start;
        padding: 40px;
    }

    .nikolaoszormpas-hero-overlay {
        /* Dark gradient from bottom to top for mobile */
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0) 80%);
    }

    .nikolaoszormpas-hero-content-wrapper {
        width: 100%;
        padding-left: 0;
    }
    
    .nikolaoszormpas-hero-bottom-cards {
        flex-direction: column;
        gap: 24px;
        margin-top: 32px;
        padding-top: 24px;
    }
    
    .nikolaoszormpas-hero-featured-card-wrapper {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 40px;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nikolaoszormpas-hero-cta {
        margin: 16px;
        min-height: calc(100vh - 100px);
        padding: 32px 24px;
    }
    
    .nikolaoszormpas-hero-title {
        font-size: 80px;
    }

    .nikolaoszormpas-hero-desc {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .nikolaoszormpas-hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .nikolaoszormpas-hero-btn {
        width: 100%;
        justify-content: center;
    }

    .nikolaoszormpas-hero-brands-carousel {
        gap: 24px;
    }
}

/* Elementor Widget: Video Stats Section */
.nikolaoszormpas-vs-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 20px;
    background-color: transparent;
}

.nikolaoszormpas-vs-top {
    display: flex;
    align-items: center;
    gap: 64px;
    margin-bottom: 80px;
}

.nikolaoszormpas-vs-content {
    flex: 1;
}

.nikolaoszormpas-vs-title {
    font-family: 'Antonio', sans-serif;
    font-size: 88px;
    font-weight: 500;
    line-height: 1.05;
    color: #111111;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.nikolaoszormpas-vs-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #666666;
    margin: 0 0 48px 0;
    max-width: 480px;
}

.nikolaoszormpas-vs-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background-color: #111111;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nikolaoszormpas-vs-btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.nikolaoszormpas-vs-btn svg {
    transition: transform 0.3s ease;
}

.nikolaoszormpas-vs-btn:hover svg {
    transform: translateX(4px);
}

.nikolaoszormpas-vs-video-wrapper {
    flex: 1.2;
    border-radius: 24px;
    overflow: hidden;
    /* Rich layered shadow like the design */
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.80621px 0.80621px -0.46875px, rgba(0, 0, 0, 0.15) 0px 1.91086px 1.91086px -0.9375px, rgba(0, 0, 0, 0.14) 0px 3.48561px 3.48561px -1.40625px, rgba(0, 0, 0, 0.14) 0px 5.79481px 5.79481px -1.875px, rgba(0, 0, 0, 0.13) 0px 9.35815px 9.35815px -2.34375px, rgba(0, 0, 0, 0.12) 0px 15.3184px 15.3184px -2.8125px, rgba(0, 0, 0, 0.1) 0px 26.3772px 26.3772px -3.28125px, rgba(0, 0, 0, 0.05) 0px 48px 48px -3.75px;
}

.nikolaoszormpas-vs-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16 / 10;
}

.nikolaoszormpas-vs-video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nikolaoszormpas-vs-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.nikolaoszormpas-vs-stat-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 64px 32px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nikolaoszormpas-vs-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.nikolaoszormpas-vs-stat-number {
    font-family: 'Antonio', sans-serif;
    font-size: 80px;
    font-weight: 500;
    color: #111111;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.nikolaoszormpas-vs-stat-label {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    color: #666666;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .nikolaoszormpas-vs-title {
        font-size: 64px;
    }
    .nikolaoszormpas-vs-stat-number {
        font-size: 64px;
    }
    .nikolaoszormpas-vs-stat-card {
        padding: 48px 24px;
    }
}

@media (max-width: 992px) {
    .nikolaoszormpas-vs-top {
        flex-direction: column;
        gap: 48px;
    }
    .nikolaoszormpas-vs-video-wrapper {
        width: 100%;
    }
    .nikolaoszormpas-vs-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nikolaoszormpas-vs-section {
        padding: 80px 20px;
    }
    .nikolaoszormpas-vs-title {
        font-size: 48px;
    }
    .nikolaoszormpas-vs-stats {
        grid-template-columns: 1fr;
    }
}

/* Elementor Widget: Recent Talks Section */
.nikolaoszormpas-rt-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
}

.nikolaoszormpas-rt-section-title {
    font-family: 'Antonio', sans-serif;
    font-size: 80px;
    font-weight: 500;
    line-height: 1.1;
    color: #111111;
    text-align: center;
    margin: 0 0 64px 0;
    letter-spacing: -0.02em;
}

.nikolaoszormpas-rt-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding-bottom: 120px;
}

.nikolaoszormpas-rt-card-wrapper {
    position: sticky;
    /* Create the staggered visual stack by using the CSS variable */
    top: calc(100px + (var(--card-index) * 24px));
    z-index: calc(1 + var(--card-index));
}

.nikolaoszormpas-rt-card {
    background-color: #ffffff;
    border-radius: 32px;
    padding: 40px;
    display: flex;
    gap: 64px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.04);
}

.nikolaoszormpas-rt-image-wrapper {
    flex: 1.2;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    /* Rich layered shadow */
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.80621px 0.80621px -0.46875px, rgba(0, 0, 0, 0.15) 0px 1.91086px 1.91086px -0.9375px, rgba(0, 0, 0, 0.14) 0px 3.48561px 3.48561px -1.40625px, rgba(0, 0, 0, 0.14) 0px 5.79481px 5.79481px -1.875px, rgba(0, 0, 0, 0.13) 0px 9.35815px 9.35815px -2.34375px, rgba(0, 0, 0, 0.12) 0px 15.3184px 15.3184px -2.8125px, rgba(0, 0, 0, 0.1) 0px 26.3772px 26.3772px -3.28125px, rgba(0, 0, 0, 0.05) 0px 48px 48px -3.75px;
}

.nikolaoszormpas-rt-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
}

.nikolaoszormpas-rt-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
}

.nikolaoszormpas-rt-content-top {
    margin-bottom: 64px;
}

.nikolaoszormpas-rt-title {
    font-family: 'Antonio', sans-serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 1.1;
    color: #111111;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
}

.nikolaoszormpas-rt-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #666666;
    margin: 0 0 32px 0;
    max-width: 440px;
}

.nikolaoszormpas-rt-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 8px;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    background-color: #eee9e0; /* Beige color from screenshot */
    text-decoration: none;
    transition: all 0.3s ease;
}

.nikolaoszormpas-rt-btn:hover {
    background-color: #e2ddd3;
    transform: translateY(-2px);
}

.nikolaoszormpas-rt-btn svg {
    transition: transform 0.3s ease;
}

.nikolaoszormpas-rt-btn:hover svg {
    transform: translateX(4px);
}

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

.nikolaoszormpas-rt-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    color: #888888;
}

.nikolaoszormpas-rt-location svg {
    stroke: #888888;
}

.nikolaoszormpas-rt-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.nikolaoszormpas-rt-tag {
    background-color: #f2f2f2;
    color: #555555;
    padding: 6px 16px;
    border-radius: 100px;
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .nikolaoszormpas-rt-card {
        gap: 40px;
        padding: 32px;
    }
    .nikolaoszormpas-rt-title {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .nikolaoszormpas-rt-card {
        flex-direction: column;
        gap: 40px;
    }
    .nikolaoszormpas-rt-image-wrapper {
        width: 100%;
    }
    .nikolaoszormpas-rt-image-wrapper img {
        aspect-ratio: 16 / 9;
    }
    .nikolaoszormpas-rt-content {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .nikolaoszormpas-rt-section {
        padding: 60px 16px;
    }
    .nikolaoszormpas-rt-section-title {
        font-size: 48px;
        margin-bottom: 40px;
    }
    .nikolaoszormpas-rt-card {
        padding: 24px;
        border-radius: 24px;
    }
    .nikolaoszormpas-rt-title {
        font-size: 40px;
    }
    .nikolaoszormpas-rt-content-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Elementor Widget: Testimonial Section */
.nikolaoszormpas-testimonial-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background-color: transparent;
}

.nikolaoszormpas-ts-container {
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 120px; /* Space between button and quote */
}

.nikolaoszormpas-ts-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background-color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nikolaoszormpas-ts-btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.nikolaoszormpas-ts-btn svg {
    transition: transform 0.3s ease;
}

.nikolaoszormpas-ts-btn:hover svg {
    transform: translateX(4px);
}

.nikolaoszormpas-ts-quote {
    font-family: 'Archivo', sans-serif;
    font-size: 52px;
    line-height: 1.35;
    color: #111111;
    letter-spacing: -0.02em;
    margin-bottom: 60px; /* Space between quote and author */
}

.nikolaoszormpas-ts-quote p {
    margin: 0;
}

.nikolaoszormpas-ts-quote strong {
    font-weight: 700;
}

.nikolaoszormpas-ts-quote mark {
    background-color: #b3d6ff; /* Light blue */
    color: #111111;
    padding: 0 8px;
    border-radius: 4px;
}

.nikolaoszormpas-ts-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.nikolaoszormpas-ts-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.nikolaoszormpas-ts-author-info {
    text-align: left;
}

.nikolaoszormpas-ts-author-name {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 4px;
}

.nikolaoszormpas-ts-author-title {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    color: #888888;
}

/* Responsive */
@media (max-width: 992px) {
    .nikolaoszormpas-ts-quote {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .nikolaoszormpas-testimonial-section {
        padding: 80px 16px;
    }
    .nikolaoszormpas-ts-container {
        gap: 60px;
    }
}

/* Elementor Widget: About Me Section */
.nikolaoszormpas-about-me-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nikolaoszormpas-am-card {
    background-color: #ffffff;
    border-radius: 32px;
    padding: 40px;
    display: flex;
    gap: 64px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.04);
}

.nikolaoszormpas-am-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
}

.nikolaoszormpas-am-title {
    font-family: 'Antonio', sans-serif;
    font-size: 80px;
    font-weight: 500;
    line-height: 1.05;
    color: #111111;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.nikolaoszormpas-am-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 40px 0;
    max-width: 480px;
}

.nikolaoszormpas-am-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.nikolaoszormpas-am-btn-dark,
.nikolaoszormpas-am-btn-light {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 8px;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nikolaoszormpas-am-btn-dark {
    color: #ffffff;
    background-color: #111111;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nikolaoszormpas-am-btn-dark:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.nikolaoszormpas-am-btn-light {
    color: #111111;
    background-color: #eee9e0; /* Beige color */
}

.nikolaoszormpas-am-btn-light:hover {
    background-color: #e2ddd3;
    transform: translateY(-2px);
}

.nikolaoszormpas-am-btn-dark svg,
.nikolaoszormpas-am-btn-light svg {
    transition: transform 0.3s ease;
}

.nikolaoszormpas-am-btn-dark:hover svg,
.nikolaoszormpas-am-btn-light:hover svg {
    transform: translateX(4px);
}

.nikolaoszormpas-am-brands-area {
    margin-top: auto;
}

.nikolaoszormpas-am-brands-label {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    color: #888888;
    margin-bottom: 20px;
}

.nikolaoszormpas-am-brands-carousel-wrapper {
    overflow: hidden;
    display: flex;
    width: 100%;
    /* Gradient mask for smooth fade in/out on edges */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.nikolaoszormpas-am-brands-track {
    display: flex;
    gap: 48px;
    align-items: center;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

.nikolaoszormpas-am-brand-item img {
    height: 24px !important;
    max-height: 24px !important;
    width: auto !important;
    max-width: 160px !important;
    object-fit: contain !important;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    display: block !important;
}

.nikolaoszormpas-am-brand-item img:hover {
    opacity: 1;
}

.nikolaoszormpas-am-brand-text {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #999;
}

.nikolaoszormpas-am-right {
    flex: 1.2;
}

.nikolaoszormpas-am-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    /* Rich layered shadow */
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.80621px 0.80621px -0.46875px, rgba(0, 0, 0, 0.15) 0px 1.91086px 1.91086px -0.9375px, rgba(0, 0, 0, 0.14) 0px 3.48561px 3.48561px -1.40625px, rgba(0, 0, 0, 0.14) 0px 5.79481px 5.79481px -1.875px, rgba(0, 0, 0, 0.13) 0px 9.35815px 9.35815px -2.34375px, rgba(0, 0, 0, 0.12) 0px 15.3184px 15.3184px -2.8125px, rgba(0, 0, 0, 0.1) 0px 26.3772px 26.3772px -3.28125px, rgba(0, 0, 0, 0.05) 0px 48px 48px -3.75px;
}

.nikolaoszormpas-am-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .nikolaoszormpas-am-card {
        gap: 40px;
        padding: 32px;
    }
    .nikolaoszormpas-am-title {
        font-size: 64px;
    }
}

@media (max-width: 992px) {
    .nikolaoszormpas-am-card {
        flex-direction: column-reverse;
        gap: 48px;
    }
    .nikolaoszormpas-am-image-wrapper {
        min-height: 400px;
        aspect-ratio: 4 / 3;
    }
    .nikolaoszormpas-am-left {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .nikolaoszormpas-about-me-section {
        padding: 60px 16px;
    }
    .nikolaoszormpas-am-card {
        padding: 24px;
        border-radius: 24px;
    }
    .nikolaoszormpas-am-title {
        font-size: 48px;
    }
    .nikolaoszormpas-am-buttons {
        flex-direction: column;
    }
    .nikolaoszormpas-am-btn-dark,
    .nikolaoszormpas-am-btn-light {
        width: 100%;
        justify-content: center;
    }
}

/* Elementor Widget: Blog Section */
.nikolaoszormpas-blog-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 20px;
}

.nikolaoszormpas-bs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    gap: 24px;
    flex-wrap: wrap;
}

.nikolaoszormpas-bs-title {
    font-family: 'Antonio', sans-serif;
    font-size: 80px;
    font-weight: 500;
    line-height: 1;
    color: #111111;
    margin: 0;
    letter-spacing: -0.02em;
}

.nikolaoszormpas-bs-explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #111111;
    text-decoration: none;
    transition: opacity 0.3s ease;
    margin-bottom: 12px;
}

.nikolaoszormpas-bs-explore-link:hover {
    opacity: 0.7;
}

.nikolaoszormpas-bs-explore-link svg {
    transition: transform 0.3s ease;
}

.nikolaoszormpas-bs-explore-link:hover svg {
    transform: translateX(4px);
}

.nikolaoszormpas-bs-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
}

/* First two cards take up half the width (3 out of 6 columns) */
.nikolaoszormpas-bs-card:nth-child(1),
.nikolaoszormpas-bs-card:nth-child(2) {
    grid-column: span 3;
}

/* All other cards take up a third of the width (2 out of 6 columns) */
.nikolaoszormpas-bs-card:nth-child(n+3) {
    grid-column: span 2;
}

.nikolaoszormpas-bs-card {
    display: block;
    text-decoration: none;
    color: inherit;
    /* transition: transform 0.3s ease; */
}

/* Remove translateY on hover as requested */
/*
.nikolaoszormpas-bs-card:hover {
    transform: translateY(-5px);
}
*/

.nikolaoszormpas-bs-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 24px;
    /* Rich layered shadow */
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.80621px 0.80621px -0.46875px, rgba(0, 0, 0, 0.15) 0px 1.91086px 1.91086px -0.9375px, rgba(0, 0, 0, 0.14) 0px 3.48561px 3.48561px -1.40625px, rgba(0, 0, 0, 0.14) 0px 5.79481px 5.79481px -1.875px, rgba(0, 0, 0, 0.13) 0px 9.35815px 9.35815px -2.34375px, rgba(0, 0, 0, 0.12) 0px 15.3184px 15.3184px -2.8125px, rgba(0, 0, 0, 0.1) 0px 26.3772px 26.3772px -3.28125px, rgba(0, 0, 0, 0.05) 0px 48px 48px -3.75px;
}

.nikolaoszormpas-bs-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nikolaoszormpas-bs-card:hover .nikolaoszormpas-bs-image-wrapper img {
    transform: scale(1.05);
}

.nikolaoszormpas-bs-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #ffffff;
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.nikolaoszormpas-bs-card:hover .nikolaoszormpas-bs-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.nikolaoszormpas-bs-card-title {
    font-family: 'Antonio', sans-serif;
    font-size: 56px;
    font-weight: 500;
    color: #111111;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.nikolaoszormpas-bs-card:nth-child(n+3) .nikolaoszormpas-bs-card-title {
    font-size: 40px;
}

.nikolaoszormpas-bs-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.nikolaoszormpas-bs-date {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    color: #888888;
}

.nikolaoszormpas-bs-tag {
    background-color: #ffffff;
    color: #555555;
    padding: 6px 14px;
    border-radius: 100px;
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

/* Responsive */
@media (max-width: 1200px) {
    .nikolaoszormpas-bs-title {
        font-size: 64px;
    }
    .nikolaoszormpas-bs-card-title {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .nikolaoszormpas-bs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .nikolaoszormpas-bs-card:nth-child(n) {
        grid-column: span 1;
    }
    .nikolaoszormpas-bs-image-wrapper {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .nikolaoszormpas-bs-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .nikolaoszormpas-bs-card:nth-child(n) {
        grid-column: span 1;
    }
    .nikolaoszormpas-blog-section {
        padding: 60px 16px;
    }
    .nikolaoszormpas-bs-title {
        font-size: 48px;
    }
    .nikolaoszormpas-bs-card-title {
        font-size: 28px;
    }
    .nikolaoszormpas-bs-header {
        margin-bottom: 40px;
    }
}

/* Elementor Widget: FAQ Section */
.nikolaoszormpas-faq-section {
    padding: 120px 20px;
}

.nikolaoszormpas-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.nikolaoszormpas-faq-left {
    flex: 1;
    position: sticky;
    top: 120px;
}

.nikolaoszormpas-faq-title {
    font-family: 'Antonio', sans-serif;
    font-size: 80px;
    font-weight: 500;
    line-height: 1.05;
    color: #111111;
    margin: 0;
    letter-spacing: -0.02em;
}

.nikolaoszormpas-faq-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nikolaoszormpas-faq-item {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.nikolaoszormpas-faq-item[open] {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.nikolaoszormpas-faq-question {
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Antonio', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #111111;
    list-style: none;
    user-select: none;
    transition: background-color 0.3s ease;
}

.nikolaoszormpas-faq-question:hover {
    background-color: #fafafa;
}

.nikolaoszormpas-faq-question::-webkit-details-marker {
    display: none;
}

.nikolaoszormpas-faq-icon {
    flex-shrink: 0;
    margin-left: 20px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nikolaoszormpas-faq-item[open] .nikolaoszormpas-faq-icon {
    transform: rotate(180deg);
}

.nikolaoszormpas-faq-answer {
    padding: 0 32px 32px 32px;
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    color: #555555;
    line-height: 1.6;
    animation: nikolaoszormpas-faq-fade-in 0.4s ease-out;
}

.nikolaoszormpas-faq-answer p {
    margin: 0 0 16px 0;
}
.nikolaoszormpas-faq-answer p:last-child {
    margin: 0;
}

@keyframes nikolaoszormpas-faq-fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .nikolaoszormpas-faq-title {
        font-size: 64px;
    }
}

@media (max-width: 992px) {
    .nikolaoszormpas-faq-container {
        flex-direction: column;
        gap: 48px;
    }
    .nikolaoszormpas-faq-left {
        position: static;
    }
}

@media (max-width: 768px) {
    .nikolaoszormpas-faq-section {
        padding: 80px 16px;
    }
    .nikolaoszormpas-faq-title {
        font-size: 48px;
    }
    .nikolaoszormpas-faq-question {
        padding: 24px;
        font-size: 24px;
    }
    .nikolaoszormpas-faq-answer {
        padding: 0 24px 24px 24px;
        font-size: 16px;
    }
}

/* Elementor Widget: Contact Section */
.nikolaoszormpas-contact-section {
    padding: 120px 20px;
}

.nikolaoszormpas-contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.nikolaoszormpas-contact-pill {
    display: inline-block;
    background-color: #ffffff;
    padding: 8px 24px;
    border-radius: 100px;
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    color: #555555;
    margin-bottom: 32px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.nikolaoszormpas-contact-title {
    font-family: 'Antonio', sans-serif;
    font-size: 140px;
    font-weight: 500;
    color: #111111;
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 0 0 24px 0;
}

.nikolaoszormpas-contact-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
    max-width: 700px;
    margin: 0 auto;
}

.nikolaoszormpas-contact-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.nikolaoszormpas-contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.nikolaoszormpas-form-row {
    display: flex;
    gap: 32px;
}

.nikolaoszormpas-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nikolaoszormpas-contact-form label {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    color: #111111;
    font-weight: 500;
}

.nikolaoszormpas-contact-form input[type="text"],
.nikolaoszormpas-contact-form input[type="email"],
.nikolaoszormpas-contact-form textarea {
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 12px;
    background-color: #f7f6f4;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    color: #111111;
    outline: none;
    transition: background-color 0.3s ease;
}

.nikolaoszormpas-contact-form input:focus,
.nikolaoszormpas-contact-form textarea:focus {
    background-color: #eae9e7;
}

.nikolaoszormpas-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.nikolaoszormpas-form-group-checkbox {
    display: flex;
    align-items: center;
}

.nikolaoszormpas-form-group-checkbox label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    color: #555555;
    font-weight: 400;
    cursor: pointer;
}

.nikolaoszormpas-form-group-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #1a1a1a;
}

.nikolaoszormpas-form-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
}

.nikolaoszormpas-submit-btn {
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 24px;
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nikolaoszormpas-submit-btn:hover {
    background-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.nikolaoszormpas-form-note {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    color: #888888;
}

.nikolaoszormpas-contact-alert {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 32px;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    text-align: center;
}

.nikolaoszormpas-contact-alert.success {
    background-color: #d4edda;
    color: #155724;
}

.nikolaoszormpas-contact-alert.error {
    background-color: #f8d7da;
    color: #721c24;
}

/* Responsive */
@media (max-width: 992px) {
    .nikolaoszormpas-contact-title {
        font-size: 100px;
    }
}

@media (max-width: 768px) {
    .nikolaoszormpas-contact-section {
        padding: 80px 16px;
    }
    .nikolaoszormpas-contact-title {
        font-size: 64px;
    }
    .nikolaoszormpas-contact-desc {
        font-size: 18px;
    }
    .nikolaoszormpas-contact-card {
        padding: 32px 20px;
    }
    .nikolaoszormpas-form-row {
        flex-direction: column;
        gap: 32px;
    }
}

/* Elementor Widget: Trust Badges */
.nikolaoszormpas-trust-section {
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
}

.nikolaoszormpas-trust-title {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888888;
    margin-bottom: 40px;
    font-weight: 500;
}

.nikolaoszormpas-trust-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Fade opacity at edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.nikolaoszormpas-trust-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    /* Apply grayscale to edges */
    backdrop-filter: grayscale(100%);
    -webkit-backdrop-filter: grayscale(100%);
    /* Make center transparent so it shows full color */
    -webkit-mask-image: linear-gradient(to right, black 0%, black 25%, transparent 45%, transparent 55%, black 75%, black 100%);
    mask-image: linear-gradient(to right, black 0%, black 25%, transparent 45%, transparent 55%, black 75%, black 100%);
}

.nikolaoszormpas-trust-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: nikolaoszormpas-scroll-left 30s linear infinite;
}

@keyframes nikolaoszormpas-scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.nikolaoszormpas-trust-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    padding-right: 80px;
    /* Color and opacity are now controlled positionally by the slider container masks */
}

@media (max-width: 768px) {
    .nikolaoszormpas-trust-logo {
        height: 32px;
        width: 33.333vw;
        padding: 0 10px;
        box-sizing: border-box;
    }
}

/* Elementor Widget: Video Section */
.nikolaoszormpas-video-section {
    padding: 120px 20px;
    background-color: #f7f6f4; /* Default, can be overridden by Elementor */
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.nikolaoszormpas-video-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

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

.nikolaoszormpas-video-title {
    font-family: 'Antonio', sans-serif;
    font-size: 80px;
    font-weight: 500;
    color: #111111;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0;
}

.nikolaoszormpas-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    /* 16:9 Aspect Ratio */
    padding-bottom: 56.25%;
    background-color: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.nikolaoszormpas-video-wrapper iframe,
.nikolaoszormpas-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: inherit; /* Inherits from wrapper */
    object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
    .nikolaoszormpas-video-title {
        font-size: 64px;
    }
}

@media (max-width: 768px) {
    .nikolaoszormpas-video-section {
        padding: 80px 16px;
    }
    .nikolaoszormpas-video-title {
        font-size: 48px;
    }
    .nikolaoszormpas-video-header {
        margin-bottom: 40px;
    }
}

/* Elementor Widget: Testimonial Carousel */
.nikolaoszormpas-testimonial-carousel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.nz-testic-track {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nz-testic-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 900px;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    text-align: center;
}

.nz-testic-slide.active {
    opacity: 1;
    visibility: visible;
}

.nz-testic-quote {
    font-family: 'Archivo', sans-serif;
    font-size: 52px;
    line-height: 1.35;
    font-weight: 300;
    color: #111111;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.nz-testic-quote p {
    margin: 0;
}

.nz-testic-quote strong, .nz-testic-quote b {
    font-weight: 700;
}

.nz-testic-quote mark {
    background-color: #b3d6ff; /* Light blue */
    color: #111111;
    padding: 0 8px;
    border-radius: 4px;
}

.nz-testic-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.nz-testic-author-name {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nz-testic-author-title {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    color: #666666;
}

.nz-testic-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
}

.nz-testic-prev,
.nz-testic-next {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #111111;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nz-testic-prev:hover,
.nz-testic-next:hover {
    transform: scale(1.1);
    opacity: 0.7;
}

.nz-testic-dots {
    display: flex;
    gap: 12px;
}

.nz-testic-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d1d1;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nz-testic-dot:hover {
    background-color: #a1a1a1;
}

.nz-testic-dot.active {
    background-color: #111111;
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .nz-testic-quote {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .nz-testic-quote {
        font-size: 32px;
    }
    
    .nz-testic-track {
        min-height: 300px;
    }
    
    .nz-testic-slide {
        padding: 0 16px;
    }
}

/* Elementor Widget: Subscribe Section */
.nikolaoszormpas-subscribe-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 80px 40px;
    background-color: #111111;
    border-radius: 24px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.nz-subscribe-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.nz-subscribe-content {
    flex: 1;
    max-width: 500px;
}

.nz-subscribe-title {
    font-family: 'Antonio', sans-serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.nz-subscribe-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.nz-subscribe-form-wrapper {
    flex: 1;
    max-width: 500px;
    width: 100%;
}

.nz-subscribe-form {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.nz-subscribe-input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px 24px;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}

.nz-subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.nz-subscribe-input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.nz-subscribe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #ffffff;
    color: #111111;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nz-subscribe-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.1);
}

.nz-subscribe-btn svg {
    transition: transform 0.3s ease;
}

.nz-subscribe-btn:hover svg {
    transform: translateX(4px);
}

.nz-subscribe-footer {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
    .nz-subscribe-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    
    .nz-subscribe-content,
    .nz-subscribe-form-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nikolaoszormpas-subscribe-section {
        padding: 40px 24px;
        border-radius: 16px;
    }

    .nz-subscribe-title {
        font-size: 40px;
    }

    .nz-subscribe-form {
        flex-direction: column;
    }
    
    .nz-subscribe-btn {
        width: 100%;
    }
}

/* Elementor Widget: Professional Background Section */
.nz-prof-bg-section {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.nz-prof-header {
    max-width: 800px;
    margin: 0 auto 64px;
}

.nz-prof-subtitle {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 16px 0;
}

.nz-prof-title {
    font-family: 'Antonio', sans-serif;
    font-size: 64px;
    font-weight: 600;
    color: #111111;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 24px 0;
}

.nz-prof-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

.nz-prof-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.nz-prof-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nz-prof-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.nz-prof-card-icon {
    width: 64px;
    height: 64px;
    background: #111111;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 20px;
    overflow: hidden;
}

.nz-prof-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nz-prof-card-title {
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.nz-prof-card-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #666666;
    margin: 0;
}

@media (max-width: 1200px) {
    .nz-prof-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nz-prof-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .nz-prof-title {
        font-size: 48px;
    }
    
    .nz-prof-bg-section {
        padding: 60px 20px;
    }
}

/* Core Philosophy Section */
.nz-core-philosophy {
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 60px;
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 80px;
    align-items: stretch;
    box-shadow: 0 20px 60px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.nz-core-philosophy-label {
    color: #b58b2d;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 25px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.nz-core-philosophy-label::before {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: #b58b2d;
    margin-right: 15px;
}

.nz-core-philosophy-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
    font-family: 'Archivo', sans-serif;
    color: #111;
    letter-spacing: -1px;
}

.nz-core-philosophy-lead {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 50px;
    max-width: 90%;
}

.nz-core-philosophy-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.nz-core-philosophy-point {
    padding: 35px 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nz-core-philosophy-point:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: rgba(212, 175, 55, 0.3);
}

.nz-core-philosophy-point h3 {
    margin-bottom: 12px;
    font-size: 20px;
    font-family: 'Archivo', sans-serif;
    color: #111;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.nz-core-philosophy-point h3::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
    margin-right: 12px;
}

.nz-core-philosophy-point p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

.nz-core-philosophy-cta {
    margin-top: 50px;
}

.nz-core-philosophy-cta a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #111;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.15);
}

.nz-core-philosophy-cta a:hover {
    background: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.25);
    color: #111;
}

.nz-core-philosophy-quote {
    background: linear-gradient(145deg, #111111 0%, #1a1a1a 100%);
    color: white;
    padding: 60px 50px;
    border-radius: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.05);
}

.nz-core-philosophy-quote::before {
    content: "“";
    position: absolute;
    top: 0px;
    left: 30px;
    font-size: 180px;
    font-family: 'Archivo', sans-serif;
    color: rgba(212, 175, 55, 0.08);
    line-height: 1;
    z-index: 0;
}

.nz-core-philosophy-quote p {
    font-size: 26px;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
    position: relative;
    z-index: 1;
    font-style: italic;
    color: #fdfdfd;
}

.nz-core-philosophy-quote small {
    display: inline-block;
    margin-top: 40px;
    color: #d4af37;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 13px;
    position: relative;
    z-index: 1;
}

@media(max-width: 1200px) {
    .nz-core-philosophy {
        grid-template-columns: 1fr;
        padding: 60px 40px;
        gap: 60px;
    }
    .nz-core-philosophy-title {
        font-size: 46px;
    }
    .nz-core-philosophy-quote {
        padding: 50px 40px;
    }
}

@media(max-width: 768px) {
    .nz-core-philosophy {
        padding: 40px 20px;
        gap: 40px;
        border-radius: 20px;
    }
    .nz-core-philosophy-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .nz-core-philosophy-title {
        font-size: 36px;
    }
    .nz-core-philosophy-lead {
        font-size: 18px;
        margin-bottom: 40px;
    }
    .nz-core-philosophy-point {
        padding: 25px 20px;
    }
    .nz-core-philosophy-quote {
        padding: 40px 25px;
    }
    .nz-core-philosophy-quote p {
        font-size: 20px;
    }
    .nz-core-philosophy-cta a {
        width: 100%;
        justify-content: center;
    }
}

/* Areas of Focus Section */
.nz-areas-of-focus {
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 40px;
}

.nz-areas-of-focus-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.nz-areas-of-focus-label {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    color: #b58b2d;
    margin-bottom: 24px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nz-label-line {
    display: inline-block;
    width: 30px;
    height: 2px;
    background: rgba(181, 139, 45, 0.4);
    margin: 0 15px;
}

.nz-areas-of-focus-title {
    text-align: center;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    font-family: 'Archivo', sans-serif;
    color: #111;
    letter-spacing: -1px;
}

.nz-areas-of-focus-subtitle {
    max-width: 800px;
    margin: 0 auto 70px auto;
    text-align: center;
    font-size: 20px;
    line-height: 1.7;
    color: #555;
}

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

.nz-areas-of-focus-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.nz-areas-of-focus-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, transparent);
    transition: background 0.4s ease;
}

.nz-areas-of-focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.nz-areas-of-focus-card:hover::before {
    background: linear-gradient(90deg, #d4af37, #b58b2d);
}

.nz-areas-of-focus-icon {
    font-size: 54px;
    margin-bottom: 20px;
    line-height: 1;
}

.nz-areas-of-focus-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-family: 'Archivo', sans-serif;
    color: #111;
    font-weight: 700;
}

.nz-areas-of-focus-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.nz-areas-of-focus-learn {
    text-decoration: none;
    font-weight: 700;
    color: #111;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nz-areas-of-focus-learn:hover {
    color: #b58b2d;
    transform: translateX(5px);
}

@media(max-width: 1024px) {
    .nz-areas-of-focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nz-areas-of-focus-title {
        font-size: 46px;
    }
}

@media(max-width: 768px) {
    .nz-areas-of-focus {
        padding: 60px 20px;
    }
    .nz-areas-of-focus-grid {
        grid-template-columns: 1fr;
    }
    .nz-areas-of-focus-title {
        font-size: 38px;
    }
    .nz-areas-of-focus-subtitle {
        font-size: 18px;
        margin-bottom: 50px;
    }
    .nz-areas-of-focus-card {
        padding: 30px 25px;
    }
}

/* ==========================================================================
   NZ Video Insight Section (Featured Video Section)
   ========================================================================== */
.nz-video-insight-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.nz-video-insight-container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #111111;
    border-radius: 28px;
    padding: 80px 70px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

/* Glassmorphism Frosted Glass */
.nz-video-insight-container.nz-glass-effect {
    background-color: rgba(18, 18, 18, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

/* Tags & Badges */
.nz-video-insight-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.nz-video-insight-super-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nz-tag-highlight {
    background-color: rgba(74, 114, 186, 0.3);
    color: #8db3ff;
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

.nz-tag-label {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #d4af37;
    text-transform: uppercase;
}

.nz-video-insight-category-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(212, 175, 55, 0.12);
    color: #d4af37;
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.22);
}

/* Typography */
.nz-video-insight-title {
    font-family: 'Archivo', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.nz-video-insight-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #a0a0a0;
    margin: 0 0 36px 0;
    max-width: 95%;
}

/* Meta details */
.nz-video-insight-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.nz-video-insight-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #888888;
}

.nz-meta-icon {
    font-size: 16px;
    line-height: 1;
}

.nz-meta-text {
    color: #999999;
}

.nz-meta-divider {
    color: #444444;
    font-size: 12px;
}

/* Action Buttons */
.nz-video-insight-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.nz-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background-color: #d4af37;
    color: #111111;
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.nz-btn-primary:hover {
    background-color: #e5b842;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
    color: #111111;
}

.nz-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nz-btn-secondary:hover {
    background-color: #262626;
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Media / Video column */
.nz-video-insight-media {
    width: 100%;
}

.nz-video-insight-media-wrapper {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background-color: #181818;
    aspect-ratio: 16 / 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nz-video-thumbnail-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.nz-video-insight-media-wrapper img,
.nz-video-insight-media-wrapper video,
.nz-video-insight-media-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    border-radius: 22px;
}

.nz-video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #222222, #181818);
}

/* Play Button */
.nz-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.nz-video-play-btn svg {
    width: 26px;
    height: 26px;
    fill: #111111;
    margin-left: 4px;
}

.nz-video-thumbnail-link:hover .nz-video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .nz-video-insight-container {
        grid-template-columns: 1fr;
        padding: 60px 40px;
        gap: 50px;
    }
    
    .nz-video-insight-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .nz-video-insight-section {
        padding: 10px;
    }

    .nz-video-insight-container {
        padding: 40px 24px;
        gap: 40px;
        border-radius: 20px;
    }

    .nz-video-insight-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .nz-video-insight-desc {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .nz-video-insight-meta {
        gap: 10px;
        margin-bottom: 30px;
    }

    .nz-video-insight-actions {
        flex-direction: column;
        width: 100%;
    }

    .nz-btn-primary,
    .nz-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .nz-video-play-btn {
        width: 64px;
        height: 64px;
    }

    .nz-video-play-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* ==========================================================================
   NZ Selected Work Section
   ========================================================================== */
.nz-selected-work-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    font-family: 'Archivo', sans-serif;
}

.nz-selected-work-container {
    width: 100%;
}

/* Section Header */
.nz-selected-work-header {
    margin-bottom: 50px;
}

.nz-selected-work-label {
    color: #b58b2d;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.nz-selected-work-title {
    font-size: 52px;
    font-weight: 700;
    color: #111111;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.nz-selected-work-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: #555555;
    max-width: 900px;
    margin-bottom: 24px;
}

.nz-selected-work-intro {
    background: rgba(181, 139, 45, 0.06);
    border-left: 4px solid #d4af37;
    padding: 22px 28px;
    border-radius: 0 16px 16px 0;
    max-width: 1050px;
}

.nz-selected-work-intro p {
    font-size: 16.5px;
    line-height: 1.75;
    color: #333333;
    margin: 0;
}

/* Featured Publication Card */
.nz-sw-pub-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 55px 50px;
    margin-bottom: 50px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.4s ease;
}

.nz-sw-pub-card:hover {
    box-shadow: 0 25px 60px rgba(0,0,0,0.07);
}

.nz-sw-pub-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.12);
    color: #b58b2d;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.nz-sw-pub-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    color: #111111;
    margin-bottom: 20px;
}

.nz-sw-pub-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 16px;
}

.nz-sw-pub-btn-wrap {
    margin-top: 28px;
}

.nz-sw-pub-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 32px;
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.nz-sw-pub-btn:hover {
    background: #d4af37;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212,175,55,0.3);
}

.nz-sw-pub-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nz-sw-pub-book-wrap {
    max-width: 280px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.nz-sw-pub-book-wrap:hover {
    transform: translateY(-6px) rotate(1deg);
}

.nz-sw-book-img {
    width: 100%;
    height: auto;
    display: block;
}

.nz-sw-pub-placeholder {
    width: 240px;
    height: 320px;
    background: linear-gradient(135deg, #1c1c1c, #111111);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.08);
}

.nz-sw-book-mock-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.nz-sw-book-mock-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #dddddd;
}

/* Collaboration Grid */
.nz-sw-collab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.nz-sw-collab-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.nz-sw-collab-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, transparent);
    transition: background 0.4s ease;
}

.nz-sw-collab-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.nz-sw-collab-card:hover::before {
    background: linear-gradient(90deg, #d4af37, #b58b2d);
}

.nz-sw-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.nz-sw-card-number {
    font-family: 'Antonio', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
}

.nz-sw-card-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777777;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 20px;
}

.nz-sw-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 16px;
}

.nz-sw-card-desc {
    font-size: 15.5px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
    flex-grow: 1;
}

.nz-sw-card-link {
    margin-top: 24px;
    color: #111111;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nz-sw-card-link:hover {
    color: #b58b2d;
    transform: translateX(4px);
}

/* Closing CTA */
.nz-sw-closing-cta {
    background: linear-gradient(135deg, #181818, #111111);
    border-radius: 24px;
    padding: 55px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nz-sw-cta-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.nz-sw-closing-cta.nz-parallax-bg .nz-sw-cta-bg-layer {
    background-attachment: fixed;
}

.nz-sw-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
    pointer-events: none;
}

.nz-sw-cta-content {
    position: relative;
    z-index: 2;
}

.nz-sw-cta-action {
    position: relative;
    z-index: 2;
}

.nz-sw-cta-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    max-width: 650px;
}

.nz-sw-cta-btn {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 16px 34px;
    background: #d4af37;
    color: #111111;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.nz-sw-cta-btn:hover {
    background: #e5b842;
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(212, 175, 55, 0.4);
    color: #111111;
}

/* Responsive */
@media (max-width: 1024px) {
    .nz-sw-pub-card {
        grid-template-columns: 1fr;
        padding: 45px 35px;
    }

    .nz-sw-collab-grid {
        grid-template-columns: 1fr;
    }

    .nz-sw-closing-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .nz-sw-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nz-selected-work-section {
        padding: 50px 15px;
    }

    .nz-selected-work-title {
        font-size: 36px;
    }

    .nz-selected-work-subtitle {
        font-size: 18px;
    }

    .nz-sw-pub-title {
        font-size: 26px;
    }

    .nz-sw-pub-card {
        padding: 30px 20px;
    }

    .nz-sw-collab-card {
        padding: 30px 24px;
    }

    .nz-sw-cta-title {
        font-size: 20px;
    }
}
