/* ============================================
   BESPOQ - Generalny Wykonawca Wnętrz
   Landing Page Styles — Matching bespoq.pl
   ============================================ */

/* CSS Variables */
:root {
    --color-primary: #000000;
    --color-secondary: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-dark: #222222;
    --color-accent: #dddddd;
    --color-bg-light: #f8f8f8;
    --color-footer-bg: #0a0a0a;
    --font-primary: 'Montserrat', sans-serif;
    --cursor-color: #dddddd;
    --transition-speed: 0.3s;
    --transition-smooth: cubic-bezier(0.77, 0, 0.175, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: none;
    font-family: var(--font-primary);
    outline: none;
}

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

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

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

.loader-logo {
    animation: logoFadeIn 0.8s ease-in-out;
    margin-bottom: 30px;
}

.loader-logo img {
    width: 200px;
    filter: invert(1);
    margin: 0 auto;
}

.loader-progress {
    width: 200px;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #000 0%, #222 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
}

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

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: rgba(180, 180, 180, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100001;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 10px rgba(180, 180, 180, 0.5);
}

.cursor-circle {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(180, 180, 180, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    transition: width 0.3s ease, height 0.3s ease;
}

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

.cursor-circle.hovering {
    width: 32px;
    height: 32px;
    border-color: rgba(180, 180, 180, 0.6);
}

.cursor-light.hovering {
    width: 320px;
    height: 320px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 50px;
    z-index: 10000;
    pointer-events: none;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 280px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    pointer-events: none;
    transition: opacity var(--transition-speed) ease;
}

.site-header.scrolled::before {
    opacity: 0;
}

.logo-container {
    position: fixed;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10001;
    pointer-events: auto;
}

.logo-link {
    display: inline-block;
}

.site-logo {
    width: 280px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    opacity: 0.95;
    transition: opacity var(--transition-speed) ease, width var(--transition-speed) ease;
}

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

.center-tagline {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10001;
    pointer-events: none;
}

.logo-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    white-space: nowrap;
}

/* ============================================
   MENU TOGGLE (Hamburger)
   ============================================ */
.menu-toggle {
    position: fixed;
    top: 30px;
    right: 50px;
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    z-index: 10002;
    pointer-events: auto;
    cursor: none;
}

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

.menu-toggle.active span {
    background: var(--color-dark);
}

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

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

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

/* ============================================
   FULLSCREEN MENU
   ============================================ */
.fullscreen-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 25%;
    min-width: 380px;
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.6s var(--transition-smooth);
    display: flex;
    align-items: center;
}

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

.menu-container {
    padding: 120px 60px 60px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item {
    overflow: hidden;
    text-align: right;
}

.menu-item a {
    display: block;
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 10px 0;
    transform: translateX(40px);
    opacity: 0;
    transition: transform 0.5s var(--transition-smooth), opacity 0.5s ease, color 0.3s ease;
}

.fullscreen-menu.active .menu-item:nth-child(1) a { transition-delay: 0.2s; }
.fullscreen-menu.active .menu-item:nth-child(2) a { transition-delay: 0.3s; }
.fullscreen-menu.active .menu-item:nth-child(3) a { transition-delay: 0.4s; }
.fullscreen-menu.active .menu-item:nth-child(4) a { transition-delay: 0.5s; }
.fullscreen-menu.active .menu-item:nth-child(5) a { transition-delay: 0.6s; }

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

.menu-item a:hover {
    color: rgba(0, 0, 0, 0.4);
}

/* Menu Footer */
.menu-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: right;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0s;
}

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

.menu-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.menu-contact-item {
    color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.6;
}

.menu-contact-item a {
    color: rgba(0, 0, 0, 0.6);
}

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

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

.menu-social-link {
    color: rgba(0, 0, 0, 0.4);
    transition: color 0.3s ease, transform 0.3s ease;
}

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

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

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.animated-template-wrapper {
    position: relative;
    width: 100%;
}

.animated-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: #000;
}

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

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

/* Overlay on entire slider */
.animated-hero-slider-track::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
    pointer-events: none;
}

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

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

.animated-hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.05) 40%,
        rgba(0, 0, 0, 0.05) 60%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

/* Slide Content — centered like original */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 90%;
    max-width: 800px;
    text-align: center;
    background: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.25) 50%, transparent 100%);
    padding: 40px 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.slide-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.slide-title {
    color: var(--color-secondary);
    font-size: 64px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.slide-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

/* Slide CTA Buttons */
.slide-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0;
}

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: none;
    transition: all 0.3s ease;
}

.slide-cta-gallery {
    background: transparent;
    color: var(--color-secondary);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-cta-gallery:hover {
    background: var(--color-secondary);
    color: var(--color-dark);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
}

.slide-cta-contact {
    background: transparent;
    color: var(--color-secondary);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-cta-contact:hover {
    background: var(--color-secondary);
    color: var(--color-dark);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
}

.slide-cta svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

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

/* Partners Slide */
.partners-slide {
    background: var(--color-primary);
}

.partners-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    width: 80%;
}

.partners-slide-heading {
    color: var(--color-secondary);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 60px;
}

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

.partner-logo {
    max-height: 100px;
    max-width: 350px;
    width: auto;
    opacity: 0.85;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partners-cta {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 8px;
    transition: border-color 0.3s ease;
}

.partners-cta:hover {
    border-color: var(--color-secondary);
}

/* Slider Arrow Navigation */
.animated-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    padding: 20px;
    color: var(--color-secondary);
    transition: all 0.3s ease;
    cursor: none;
}

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

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

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

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

/* Social Links — bottom left */
.animated-hero-social {
    position: absolute;
    bottom: 60px;
    left: 60px;
    display: flex;
    flex-direction: row;
    gap: 25px;
    z-index: 15;
}

.animated-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    transition: all 0.3s ease;
}

.animated-social-link svg {
    width: 32px;
    height: 32px;
    opacity: 0.7;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.animated-social-link:hover svg {
    opacity: 1;
    transform: scale(1.15) translateY(-3px);
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.4));
}

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

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

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

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    opacity: 0.6;
    animation: scrollBounce 2s ease-in-out infinite;
    transition: opacity var(--transition-speed) ease;
}

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

.scroll-indicator-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 11px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

.scroll-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 18px; }
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-section {
    background: var(--color-bg-light);
    padding: 100px 50px;
}

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

.portfolio-item {
    display: block;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    background: var(--color-secondary);
    cursor: none;
}

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

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

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

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

.portfolio-info {
    padding: 24px;
}

.portfolio-info h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.portfolio-info p {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
}

/* ============================================
   CONTACT ACTION BUTTONS — flush right
   ============================================ */
.contact-action-buttons {
    position: fixed;
    bottom: 100px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.3s ease;
}

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

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

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

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

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

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

.action-language {
    background: var(--color-dark);
    color: var(--color-secondary);
    position: relative;
    cursor: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3), 0 2px 8px rgba(255, 255, 255, 0.2);
}

.action-language:hover {
    transform: translateX(-5px);
}

.current-lang {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-secondary);
}

.language-dropdown {
    position: absolute;
    right: 100%;
    top: 0;
    background: var(--color-dark);
    min-width: 90px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.language-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-secondary);
    transition: background 0.2s ease;
}

.language-menu li a:hover {
    background: #333;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-footer-bg);
    padding: 80px 50px 40px;
    margin-top: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 50px;
}

.footer-logo img {
    width: 200px;
    margin: 0 auto;
    opacity: 0.8;
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-secondary);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: var(--color-secondary);
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ============================================
   GALLERY LIGHTBOX
   ============================================ */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.gallery-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: none;
}

.gallery-lightbox-close:hover {
    color: var(--color-secondary);
    transform: rotate(90deg);
}

.gallery-lightbox-main {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px 20px;
}

.gallery-lightbox-image-wrap {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 2px;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-lightbox-image.loaded {
    opacity: 1;
    transform: scale(1);
}

.gallery-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
    cursor: none;
}

.gallery-lightbox-arrow:hover {
    color: var(--color-secondary);
}

.gallery-lightbox-prev {
    left: 20px;
}

.gallery-lightbox-next {
    right: 20px;
}

.gallery-lightbox-counter {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    z-index: 10;
}

/* Thumbnails Strip */
.gallery-lightbox-thumbs {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 60px;
    overflow-x: auto;
    scrollbar-width: none;
}

.gallery-lightbox-thumbs::-webkit-scrollbar {
    display: none;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 2px;
    overflow: hidden;
    cursor: none;
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumb:hover {
    opacity: 0.7;
}

.gallery-thumb.active {
    opacity: 1;
    border-color: var(--color-secondary);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   CONTACT FORM POPUP
   ============================================ */
.contact-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.contact-popup.active {
    opacity: 1;
    visibility: visible;
}

.contact-popup-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-popup-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.5s var(--transition-smooth);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.contact-popup.active .contact-popup-container {
    transform: translate(-50%, -50%) scale(1);
}

.contact-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: none;
}

.contact-popup-close:hover {
    color: var(--color-secondary);
    transform: rotate(90deg);
}

.contact-popup-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    min-height: 520px;
}

/* Left Panel */
.contact-popup-left {
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-popup-branding {
    margin-bottom: 40px;
}

.contact-popup-logo {
    width: 160px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.contact-popup-tagline {
    color: rgba(255, 255, 255, 0.4);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.contact-popup-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-popup-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.contact-popup-detail-item svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.3);
}

.contact-popup-detail-item a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.contact-popup-detail-item a:hover {
    color: var(--color-secondary);
}

/* Right Panel - Form */
.contact-popup-right {
    padding: 50px 40px;
    position: relative;
}

.contact-popup-heading {
    color: var(--color-secondary);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-popup-subheading {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-optional {
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.3);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-secondary);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    padding: 14px 16px;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Radio Card Selector (Area) */
.form-radio-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.form-radio-card {
    cursor: none;
}

.form-radio-card input[type="radio"] {
    display: none;
}

.radio-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    gap: 2px;
}

.form-radio-card input[type="radio"]:checked + .radio-card-inner {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-secondary);
}

.form-radio-card:hover .radio-card-inner {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.radio-card-value {
    color: var(--color-secondary);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.radio-card-unit {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 300;
}

/* Submit Button */
.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--color-secondary);
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: none;
    transition: all 0.4s ease;
}

.form-submit:hover {
    background: rgba(255, 255, 255, 0.9);
}

.form-submit:active {
    transform: scale(0.98);
}

.form-submit-arrow {
    transition: transform 0.3s ease;
}

.form-submit:hover .form-submit-arrow {
    transform: translateX(4px);
}

.form-privacy {
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
    font-weight: 300;
    line-height: 1.5;
    margin-top: 16px;
}

.form-privacy a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: underline;
}

.form-privacy a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Form validation */
.form-group input:invalid:not(:placeholder-shown) {
    border-color: rgba(220, 60, 60, 0.5);
}

/* Success State */
.contact-form-success {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.contact-form-success.visible {
    display: block;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-form-success h3 {
    color: var(--color-secondary);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.contact-form-success p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   MEDIA QUERIES
   ============================================ */

/* Large Desktop */
@media (max-width: 1400px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .animated-slider-arrow-prev { left: 40px; }
    .animated-slider-arrow-next { right: 40px; }

    .slide-title { font-size: 52px; }
}

/* Desktop */
@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-slide-logos {
        gap: 50px;
    }

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

/* Tablet */
@media (max-width: 1024px) {
    .cursor-dot,
    .cursor-circle,
    .cursor-light {
        display: none !important;
    }

    body, a, button, .slide-cta, .action-button,
    .gallery-lightbox-close, .gallery-lightbox-arrow,
    .contact-popup-close, .animated-hero-nav-dot,
    .gallery-thumb, .form-radio-card, .form-submit {
        cursor: auto;
    }

    .page-loader {
        display: none;
    }

    .site-logo {
        width: 200px;
    }

    .logo-tagline {
        font-size: 14px;
        letter-spacing: 4px;
    }

    .logo-container {
        top: 15px;
        left: 15px;
    }

    .menu-toggle {
        top: 25px;
        right: 30px;
    }

    .slide-title { font-size: 38px; }
    .slide-subtitle { font-size: 16px; }

    .slide-cta {
        padding: 14px 28px;
        font-size: 11px;
        letter-spacing: 2px;
    }

    .animated-slider-arrow-prev { left: 20px; }
    .animated-slider-arrow-next { right: 20px; }
    .animated-slider-arrow svg { width: 36px; height: 36px; }

    .animated-hero-social { left: 30px; bottom: 40px; gap: 16px; }
    .animated-social-link svg { width: 24px; height: 24px; }

    .animated-hero-slider-nav { bottom: 40px; gap: 10px; }

    .portfolio-section {
        padding: 60px 30px;
    }

    .fullscreen-menu {
        width: 40%;
        min-width: 320px;
    }

    .gallery-lightbox-main {
        padding: 60px 60px 20px;
    }

    .contact-popup-inner {
        grid-template-columns: 1fr;
    }

    .contact-popup-left {
        padding: 30px 30px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .contact-popup-right {
        padding: 30px 30px;
    }
}

/* Small Tablet */
@media (max-width: 768px) {
    .site-logo {
        width: 180px;
    }

    .center-tagline {
        display: none;
    }

    .menu-toggle {
        top: 22px;
        right: 24px;
    }

    .animated-slider-arrow svg {
        width: 28px;
        height: 28px;
    }

    .animated-slider-arrow-prev { left: 10px; }
    .animated-slider-arrow-next { right: 10px; }

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

    .slide-subtitle {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .slide-content {
        width: 95%;
        padding: 30px 16px;
    }

    .slide-cta {
        padding: 12px 20px;
        font-size: 10px;
        letter-spacing: 2px;
    }

    .slide-cta-group {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .animated-hero-social {
        left: 24px;
        bottom: 30px;
        gap: 16px;
    }

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

    .animated-hero-slider-nav {
        bottom: 30px;
        gap: 10px;
    }

    .animated-hero-nav-dot { width: 10px; height: 10px; }
    .animated-hero-nav-dot.active { width: 30px; }

    .gallery-lightbox-main {
        padding: 60px 20px 20px;
    }

    .gallery-lightbox-arrow {
        width: 40px;
        height: 40px;
    }

    .gallery-lightbox-prev { left: 8px; }
    .gallery-lightbox-next { right: 8px; }

    .gallery-lightbox-thumbs {
        padding: 10px 20px;
    }

    .gallery-thumb {
        width: 50px;
        height: 50px;
    }

    .contact-popup-container {
        width: 95%;
        max-height: 95vh;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .portfolio-section {
        padding: 50px 20px;
    }

    .fullscreen-menu {
        width: 100%;
        min-width: unset;
    }

    .menu-container {
        padding: 100px 30px 40px;
    }

    .menu-item a {
        font-size: 14px;
    }

    .scroll-indicator {
        bottom: 70px;
    }

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

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

    .site-footer {
        padding: 60px 24px 30px;
    }

    .footer-info {
        flex-direction: column;
        gap: 20px;
    }

    .partners-slide-logos {
        flex-direction: column;
        gap: 30px;
    }

    .partner-logo {
        max-height: 60px;
    }

    .partners-slide-heading {
        font-size: 14px;
        letter-spacing: 3px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .site-logo {
        width: 160px;
    }

    .logo-container {
        top: 12px;
        left: 12px;
    }

    .menu-toggle {
        top: 18px;
        right: 20px;
        width: 32px;
        height: 24px;
    }

    .menu-toggle span {
        width: 26px;
    }

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

    .slide-subtitle {
        font-size: 13px;
    }

    .slide-cta {
        padding: 10px 18px;
        font-size: 9px;
        gap: 8px;
    }

    .slide-cta svg {
        width: 14px;
        height: 14px;
    }

    .contact-popup-heading {
        font-size: 20px;
    }

    .form-radio-group {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .radio-card-value {
        font-size: 15px;
    }

    .portfolio-info h3 {
        font-size: 14px;
    }

    .footer-logo img {
        width: 160px;
    }
}

/* ============================================
   SELECTION & SCROLLBAR
   ============================================ */
::selection {
    background: rgba(0, 0, 0, 0.2);
    color: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}
