/* ==========================================================================
   ADAM FEJFAR PHOTOGRAPHY - PURE SEAMLESS WHITE STYLESHEET (NO BORDER LINES)
   ========================================================================== */

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

:root {
    --bg-page: #ffffff;
    --bg-card: #ffffff;
    --bg-overlay: rgba(255, 255, 255, 0.95);
    --border-color: transparent;
    --text-main: #111111;
    --text-muted: #666666;
    --font-heading: 'Outfit', -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --nav-height: 80px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-radius: 0 !important;
    /* Enforce strict sharp edges everywhere */
    border: none !important;
    /* Remove all default artificial borders */
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-page);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-page);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0 !important;
}

/* Typography */
h1,
h2,
h3,
h4,
.brand-title {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-main);
}

/* Navbar (Transparent before scroll, Solid white on scroll / subpages) */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    transition: var(--transition-smooth);
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    transition: var(--transition-smooth);
}

.brand-text span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 8px 0;
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

/* Header when Scrolled or on Subpages */
.site-header.scrolled,
body.subpage .site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.site-header.scrolled .brand-text,
body.subpage .site-header .brand-text {
    color: #000000;
}

.site-header.scrolled .brand-text span,
body.subpage .site-header .brand-text span {
    color: #777777;
}

.site-header.scrolled .nav-link,
body.subpage .site-header .nav-link {
    color: #555555;
}

.site-header.scrolled .nav-link:hover,
body.subpage .site-header .nav-link:hover,
.site-header.scrolled .nav-link.active,
body.subpage .site-header .nav-link.active {
    color: #000000;
}

.site-header.scrolled .nav-link::after,
body.subpage .site-header .nav-link::after {
    background-color: #000000;
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 1005;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    min-height: 2px;
    max-height: 2px;
    border-radius: 1px;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.site-header.scrolled .hamburger span,
body.subpage .site-header .hamburger span,
.hamburger.active span {
    background-color: #000000;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + 40px) 20px 60px;
    background: #0a0a0b;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.45;
    filter: contrast(1.1);
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: scale(1.04);
    transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body.loaded .hero-slider {
    transform: scale(1);
}

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

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
    display: block;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

/* ==========================================================================
   DENNIS NOTEN EDITORIAL SHOWCASE (NO BORDER LINES)
   ========================================================================== */

.editorial-section {
    background-color: #ffffff;
    color: var(--text-main);
    padding: 100px 0 0;
    text-align: center;
    width: 100%;
}

.editorial-about-block {
    max-width: 820px;
    margin: 0 auto 80px;
    padding: 0 24px;
}

.editorial-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 12px;
}

.editorial-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #111111;
    margin-bottom: 24px;
    line-height: 1.15;
}

.editorial-text {
    font-size: 1.05rem;
    color: #444444;
    line-height: 1.85;
    font-weight: 400;
    max-width: 720px;
    margin: 0 auto 32px;
}

.editorial-meta-pills {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.editorial-meta-pills span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: #f8f9fa;
    color: #333333;
    padding: 8px 20px;
    border: 1px solid #eaeaea !important;
}

/* Asymmetric Grid Showcase (70% Left / 30% Right) */
.editorial-grid {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 0;
    background: #ffffff;
}

.editorial-col-left {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9 !important;
}

.editorial-col-left img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
}

.editorial-col-right {
    display: flex;
    flex-direction: column;
}

.editorial-portfolio-text {
    background: #ffffff;
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.editorial-portfolio-text h2 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: #111111;
    margin-bottom: 16px;
}

.editorial-portfolio-text p {
    font-size: 0.95rem;
    color: #555555;
    max-width: 450px;
    line-height: 1.7;
}

.editorial-col-right-img {
    height: 380px;
    overflow: hidden;
}

.editorial-col-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   MASONRY GALLERY GRID (NATURAL ASPECT RATIO AS IN USER SCREENSHOT)
   ========================================================================== */

.filter-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 60px 0 30px;
    padding: 0 20px;
}

.filter-btn {
    font-family: var(--font-heading);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    color: #555555;
    padding: 10px 24px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    color: #ffffff;
    background: #000000;
    border-color: #000000 !important;
}

.gallery-section {
    padding: 0 16px 80px;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0;
    background-color: #ffffff;
}

/* Full Screen Width Masonry Column Layout matching Dennis Noten */
.photo-grid {
    column-count: 4;
    column-gap: 16px;
    width: 100%;
}

@media (min-width: 1920px) {
    .photo-grid {
        column-count: 5;
    }
}

@media (min-width: 2560px) {
    .photo-grid {
        column-count: 6;
    }
}

@media (max-width: 1400px) {
    .photo-grid {
        column-count: 3;
    }
}

@media (max-width: 900px) {
    .photo-grid {
        column-count: 2;
    }
}

@media (max-width: 550px) {
    .photo-grid {
        column-count: 1;
    }
}

.photo-card {
    break-inside: avoid;
    margin-bottom: 16px;
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    cursor: pointer;
    box-shadow: none !important;
    border: none !important;
    content-visibility: auto;
    contain-intrinsic-size: 1px 300px;
}

.photo-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-card:hover img {
    transform: scale(1.04);
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: opacity 0.4s ease;
}

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

.photo-overlay-content {
    transform: translateY(12px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-card:hover .photo-overlay-content {
    transform: translateY(0);
}

.photo-cat-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 6px;
}

.photo-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 6, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-container {
    position: relative;
    max-width: 92vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-container {
    transform: scale(1);
}

/* ==========================================================================
   SUBTLE SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
}

.lightbox-info {
    margin-top: 16px;
    text-align: center;
    color: #ffffff;
}

.lightbox-counter {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.lightbox-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}

.lightbox-exif-badge {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    letter-spacing: 0.04em;
}

.exif-hud-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: #f1f5f9;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 6px 14px;
    border-radius: 20px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.03em;
}

.exif-hud-pill svg {
    color: #38bdf8;
}

.lightbox-nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #ffffff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2010;
    backdrop-filter: blur(10px);
}

.lightbox-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

/* ==========================================================================
   LIGHTROOM BEFORE / AFTER COMPARISON SLIDER
   ========================================================================== */

.before-after-section {
    background: #ffffff;
    padding: 90px 24px 70px;
    text-align: center;
    width: 100%;
}

.before-after-header {
    max-width: 820px;
    margin: 0 auto 48px;
}

.before-after-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    user-select: none;
    cursor: ew-resize;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    background: #000000;
}

.ba-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.ba-before-wrap {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    overflow: hidden;
    z-index: 2;
}

.ba-before-wrap .ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #ffffff;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

.ba-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #ffffff;
    color: #111111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.ba-circle svg {
    width: 18px;
    height: 18px;
}

.ba-badge {
    position: absolute;
    top: 20px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 4px;
    z-index: 5;
    pointer-events: none;
    text-transform: uppercase;
}

.ba-badge-before {
    left: 20px;
}

.ba-badge-after {
    right: 20px;
}

.lightbox-counter {
    font-size: 0.8rem;
    color: #a1a1aa;
    margin-top: 4px;
}

.lightbox-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2010;
}

.lightbox-btn:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
}

.lightbox-close {
    top: 30px;
    right: 40px;
}

.lightbox-toolbar {
    position: absolute;
    top: 30px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2010;
}

.lightbox-tool-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.25s ease;
}

.lightbox-tool-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.lightbox-tool-btn.active {
    background: #2563eb;
    border-color: #3b82f6 !important;
    color: #ffffff;
}

.lightbox-tool-btn .tool-icon {
    width: 15px;
    height: 15px;
}

/* Public Toast Notification */
.public-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(15, 23, 42, 0.95);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 28px;
    border-radius: 40px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.public-toast.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.lightbox-prev {
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

/* About & Contact Section Styling (White Theme) */
.about-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff;
    color: #111111;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    letter-spacing: 0.08em;
    color: #111111;
}

.about-text p {
    color: #555555;
    font-size: 1.05rem;
    margin-bottom: 18px;
    line-height: 1.8;
}

/* Buttons */
.btn-primary {
    font-family: var(--font-heading);
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 32px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.btn-outline {
    font-family: var(--font-heading);
    display: inline-block;
    background: transparent;
    color: #000000;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid #000000 !important;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background: #000000;
    color: #ffffff;
}

.hero .btn-outline {
    color: #ffffff;
    border-color: #ffffff !important;
}

.hero .btn-outline:hover {
    background: #ffffff;
    color: #000000;
}

/* ==========================================================================
   PRE-FOOTER CTA BANNER & PROFESSIONAL FOOTER STYLES
   ========================================================================== */

.pre-footer-cta {
    background-color: #f8f9fa;
    padding: 100px 40px;
    text-align: center;
}

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

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    font-weight: 900;
    letter-spacing: 0.12em;
    color: #111111;
    margin-bottom: 16px;
    line-height: 1.25;
}

.cta-content p {
    font-size: 1.05rem;
    color: #666666;
    margin-bottom: 32px;
}

/* Site Footer */
.site-footer {
    margin-top: auto;
    padding: 80px 40px 40px;
    background: #ffffff;
    color: #111111;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col-brand {
    padding-right: 20px;
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    color: #000000;
    margin-bottom: 6px;
}

.footer-brand-tagline {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 20px;
}

.footer-brand-desc {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.7;
    max-width: 440px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666666;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: #000000;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #999999;
    font-weight: 600;
    margin-bottom: 2px;
}

.footer-contact-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111111;
    transition: var(--transition-smooth);
}

.footer-contact-val:hover {
    color: #555555;
}

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
}

.footer-copy {
    color: #777777;
    font-size: 0.85rem;
}

.back-to-top-btn {
    font-family: var(--font-heading);
    background: transparent;
    border: none !important;
    color: #111111;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.back-to-top-btn:hover {
    color: #666666;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

/* Mobile Responsive */
@media (max-width: 900px) {
    .site-header {
        padding: 0 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-16px);
        transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .nav-link {
        font-size: 1.5rem;
        font-weight: 900;
        letter-spacing: 0.22em;
        color: #111111 !important;
        padding: 12px 0;
    }

    .nav-link::after {
        background-color: #000000 !important;
    }

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

    .editorial-col-left {
        min-height: 350px;
    }

    .gallery-section {
        padding: 20px 16px 60px;
    }
}

/* ==========================================================================
   STEP-BY-STEP WIZARD SHOOT CONFIGURATOR STYLES
   ========================================================================== */

.configurator-page {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 100px;
    background: #ffffff;
    color: #111111;
}

.configurator-header {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    padding: 0 20px;
}

.configurator-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #666666;
    display: block;
    margin-bottom: 12px;
}

.configurator-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #111111;
    margin-bottom: 16px;
}

.configurator-subtitle {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.7;
}

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

/* Wizard Tracker Bar */
.wizard-progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 16px 24px;
    border-radius: 12px;
}

.wizard-progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.45;
    transition: opacity 0.3s;
}

.wizard-progress-step.active {
    opacity: 1;
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #cbd5e1;
    color: #0f172a;
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wizard-progress-step.active .step-num {
    background: #0f172a;
    color: #ffffff;
}

.step-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0f172a;
}

.wizard-progress-line {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    margin: 0 16px;
}

/* Step Containers */
.wizard-step {
    display: none;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    animation: stepFadeIn 0.35s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    margin-bottom: 28px;
}

/* Interactive Czech Republic SVG Map */
.map-location-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cz-map-wrapper {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 24px;
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.cz-svg-map {
    width: 100%;
    height: auto;
    max-height: 380px;
}

.cz-region-group {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.cz-region-path {
    fill: #e2e8f0;
    stroke: #ffffff;
    stroke-width: 1.25;
    stroke-linejoin: round;
    transition: all 0.25s ease;
}

.cz-region-group:hover .cz-region-path {
    fill: #94a3b8;
    stroke: #0f172a;
    stroke-width: 1.8;
}

.cz-region-group.active .cz-region-path {
    fill: #0f172a;
    stroke: #0f172a;
    stroke-width: 2;
    filter: drop-shadow(0px 4px 10px rgba(15, 23, 42, 0.3));
}

.cz-region-label {
    fill: #334155;
    font-family: var(--font-heading);
    font-size: 10.5px;
    font-weight: 800;
    text-anchor: middle;
    pointer-events: none;
    transition: fill 0.25s ease;
}

.cz-region-group.active .cz-region-label {
    fill: #ffffff;
    font-weight: 900;
}

.selected-region-info-box {
    background: #0f172a;
    color: #ffffff;
    padding: 18px 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.region-info-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
}

.region-info-price {
    font-size: 0.92rem;
    color: #cbd5e1;
    font-weight: 700;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #111111;
}

/* Service Cards Grid */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.service-card {
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    padding: 24px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card input[type="radio"] {
    position: absolute;
    top: 20px;
    right: 20px;
    accent-color: #0f172a;
    width: 18px;
    height: 18px;
}

.service-card:hover {
    border-color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.service-card.active {
    border-color: #0f172a;
    background: #f8fafc;
    box-shadow: 0 0 0 2px #0f172a;
}

.service-card-svg {
    width: 36px;
    height: 36px;
    color: #0f172a;
    margin-bottom: 16px;
}

.service-card-svg svg {
    width: 100%;
    height: 100%;
}

.service-card-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-card-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 20px;
    flex: 1;
}

.service-card-price {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1rem;
    color: #0f172a;
}

/* Option Groups & Pills */
.pill-selectors {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill-item {
    cursor: pointer;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    padding: 14px 22px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pill-item input {
    display: none;
}

.pill-svg {
    width: 18px;
    height: 18px;
    color: currentColor;
}

.pill-item:hover {
    border-color: #0f172a;
}

.pill-item.active {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

/* Addon Cards */
.addon-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.addon-card {
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.addon-card input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #0f172a;
}

.addon-svg {
    width: 28px;
    height: 28px;
    color: #0f172a;
    flex-shrink: 0;
}

.addon-card:hover {
    border-color: #0f172a;
}

.addon-card.active {
    border-color: #0f172a;
    background: #f8fafc;
}

.addon-content {
    flex: 1;
}

.addon-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}

.addon-desc {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 3px;
}

.addon-price {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1rem;
    color: #0f172a;
}

/* Wizard Navigation Row */
.wizard-nav-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.wizard-next-btn,
.wizard-prev-btn {
    padding: 14px 28px;
    font-size: 0.9rem;
}

/* Calculator Summary & Step 4 Form Cards */
.calculator-summary-box {
    background: #0f172a;
    color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.calc-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 8px;
}

.calc-price-display {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.04em;
}

.calc-breakdown {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-top: 10px;
    font-weight: 600;
}

.wizard-form-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 32px;
    border-radius: 12px;
}

.form-section-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
}

.form-inputs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.form-label-with-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #334155;
    margin-bottom: 8px;
}

.form-label-with-icon svg {
    color: #2563eb;
    flex-shrink: 0;
}

.field-input,
.field-textarea {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #0f172a;
    transition: all 0.2s ease;
}

.field-input:focus,
.field-textarea:focus {
    outline: none;
    border-color: #0f172a;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
    background: #ffffff;
}

.btn-submit-inquiry {
    width: 100%;
    padding: 18px 32px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.btn-submit-inquiry:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.3);
}

/* ==========================================================================
   404 ERROR PAGE - CLEAN MODERN EDITORIAL STYLING
   ========================================================================== */
.error-page-container {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + 40px) 24px 80px;
    background: #ffffff;
}

.error-page-inner {
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .error-page-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Left Column */
.error-main-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.error-tag {
    color: #64748b;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: inline-block;
}

.error-number {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 12vw, 8.5rem);
    font-weight: 900;
    line-height: 0.9;
    color: #111111;
    letter-spacing: -0.04em;
    margin: 0 0 16px;
}

.error-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #111111;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    line-height: 1.2;
}

.error-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 460px;
}

.error-actions-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #111111;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1.5px solid #111111 !important;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-outline:hover {
    background: #111111;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Right Column - Navigation Directory Cards */
.error-nav-col {
    background: #f8fafc;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 32px 28px;
}

.error-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0 !important;
}

.error-nav-header h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #111111;
    letter-spacing: -0.01em;
}

.error-nav-header span {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.error-cards-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.error-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 16px 18px;
    text-decoration: none;
    color: #111111;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.error-nav-item:hover {
    border-color: #111111 !important;
    transform: translateX(4px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.error-nav-item.highlight-card {
    background: #f1f5f9;
    border-color: #cbd5e1 !important;
}

.error-nav-item.highlight-card:hover {
    background: #ffffff;
    border-color: #111111 !important;
}

.error-nav-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 2px;
}

.error-nav-info p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.error-nav-arr {
    font-size: 1.15rem;
    font-weight: 700;
    color: #94a3b8;
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.error-nav-item:hover .error-nav-arr {
    color: #111111;
    transform: translateX(3px);
}

/* ==========================================================================
   DIRECT CONTACT BLOCK STYLING
   ========================================================================== */
.direct-contact-block {
    margin-top: 50px;
    padding: 40px 30px;
    background: #f8fafc;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.direct-contact-tag {
    color: #64748b;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 6px;
    display: inline-block;
}

.direct-contact-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.direct-contact-desc {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 24px;
}

.direct-links-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: left;
}

@media (max-width: 640px) {
    .direct-links-row {
        grid-template-columns: 1fr;
    }
}

.direct-link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 18px 22px;
    text-decoration: none;
    color: #0f172a;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.direct-link-card:hover {
    border-color: #0f172a !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.direct-link-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px !important;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0f172a;
    transition: all 0.25s ease;
}

.direct-link-card:hover .direct-link-icon {
    background: #0f172a;
    color: #ffffff;
}

.direct-link-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.direct-link-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    font-weight: 700;
}

.direct-link-val {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 800;
    color: #0f172a;
}

.direct-link-arrow {
    font-size: 1.2rem;
    font-weight: 700;
    color: #94a3b8;
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.direct-link-card:hover .direct-link-arrow {
    color: #0f172a;
    transform: translateX(4px);
}

/* ==========================================================================
   FAQ ACCORDION SECTION STYLING
   ========================================================================== */
.faq-section {
    margin-top: 70px;
    padding-top: 60px;
    border-top: 1px solid #e2e8f0 !important;
}

.faq-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.faq-tag {
    color: #64748b;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    display: inline-block;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.6;
}

.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    border-color: #cbd5e1 !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.faq-item.active {
    border-color: #0f172a !important;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
}

.faq-question-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    background: transparent;
    border: none !important;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    transition: all 0.2s ease;
}

.faq-item.active .faq-question-btn {
    color: #0f172a;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50% !important;
    background: #f1f5f9;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.faq-item.active .faq-icon {
    background: #0f172a;
    color: #ffffff;
}

.faq-plus {
    display: block;
}

.faq-minus {
    display: none;
}

.faq-item.active .faq-plus {
    display: none;
}

.faq-item.active .faq-minus {
    display: block;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-answer-inner {
    padding: 0 24px 24px;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    border-top: 1px dashed #f1f5f9 !important;
    padding-top: 16px;
}