/* =============================================
   CANKOLLAR — MONOCHROME PREMIUM v4
   ============================================= */

:root {
    --white: #ffffff;
    --off-white: #f5f5f5;
    --black: #0a0a0a;
    --rich-black: #101010;
    --gray-100: #e0e0e0;
    --gray-300: #a0a0a0;
    --gray-500: #6e6e6e;
    --gray-700: #3a3a3a;
    --gray-900: #181818;
    --accent: #ffffff;
    --accent-hover: #cccccc;
    --accent-dark: #888888;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --speed: 0.5s;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

::selection { background: var(--white); color: var(--black); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; }
.display-large { font-size: clamp(2.8rem, 5.5vw, 4.5rem); line-height: 1.08; margin-bottom: 1.5rem; }

.section-label {
    font-family: var(--font-body); font-size: 0.65rem; font-weight: 500;
    letter-spacing: 5px; text-transform: uppercase; color: var(--gray-300);
    display: inline-block; margin-bottom: 1.2rem;
    position: relative; padding-left: 2.5rem;
}
.section-label::before {
    content: ''; position: absolute; left: 0; top: 50%;
    width: 1.8rem; height: 1px; background: var(--gray-300);
}

/* =============================================
   LOADING
   ============================================= */
#loading-screen {
    position: fixed; inset: 0; background: var(--black);
    z-index: 9999; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 2rem;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-logo { height: 60px; width: auto; animation: breathe 2s ease-in-out infinite; }
.loading-bar-wrap { width: 140px; height: 1px; background: rgba(255,255,255,0.08); overflow: hidden; }
.loading-bar-inner { height: 100%; background: var(--white); width: 0; animation: fill 1.8s var(--ease) forwards; }
@keyframes breathe { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes fill { to { width: 100%; } }

#scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--white); z-index: 9998; }

.cursor-dot, .cursor-ring { position: fixed; pointer-events: none; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor-dot { width: 4px; height: 4px; background: var(--white); z-index: 9997; }
.cursor-ring { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.3); z-index: 9996; transition: 0.2s ease; }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* =============================================
   HEADER
   ============================================= */
header {
    height: 80px; position: fixed; top: 0; width: 100%; z-index: 1000;
    background: transparent; transition: all var(--speed) var(--ease);
    display: flex; align-items: center;
}
header::after { display: none; }
header.scrolled {
    height: 64px; background: rgba(10,10,10,0.92);
    backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

nav.header-nav { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo-container img { height: 48px; width: auto; transition: var(--speed) var(--ease); display: block; }
header.scrolled .logo-container img { height: 38px; }

.btn-minimal {
    font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,0.5); text-decoration: none; padding: 0.4rem 0;
    position: relative; transition: color var(--speed) var(--ease);
}
.btn-minimal::after {
    content: ''; position: absolute; bottom: -2px; left: 50%; width: 0; height: 1px;
    background: var(--white); transition: all var(--speed) var(--ease); transform: translateX(-50%);
}
.btn-minimal:hover { color: var(--white); }
.btn-minimal:hover::after { width: 100%; }

.desktop-only { display: flex; align-items: center; }
.header-cta { text-align: right; }

.burger-menu { display: none; flex-direction: column; gap: 5px; width: 24px; cursor: pointer; z-index: 2000; }
.burger-menu span { display: block; height: 1px; background: var(--white); transition: var(--speed) var(--ease); transform-origin: center; }
.burger-menu span:nth-child(2) { width: 50%; margin-left: auto; }
body.menu-open .burger-menu span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger-menu span:nth-child(2) { opacity: 0; }
body.menu-open .burger-menu span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu-overlay {
    position: fixed; inset: 0; background: rgba(10,10,10,0.98);
    z-index: 1500; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: var(--speed) var(--ease);
}
.mobile-menu-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.mobile-link {
    font-size: 1.2rem; font-family: var(--font-display); color: rgba(255,255,255,0.5);
    text-decoration: none; letter-spacing: 4px; text-transform: uppercase;
    transition: var(--speed) var(--ease); opacity: 0; transform: translateY(10px);
}
.mobile-link:hover { color: var(--white); }
.mobile-menu-overlay.active .mobile-link { opacity: 1; transform: none; }
.mobile-menu-overlay.active .mobile-link:nth-child(1) { transition-delay: .05s; }
.mobile-menu-overlay.active .mobile-link:nth-child(2) { transition-delay: .1s; }
.mobile-menu-overlay.active .mobile-link:nth-child(3) { transition-delay: .15s; }
.mobile-menu-overlay.active .mobile-link:nth-child(4) { transition-delay: .2s; }
.mobile-menu-overlay.active .mobile-link:nth-child(5) { transition-delay: .25s; }

/* =============================================
   HERO
   ============================================= */
.hero-cankollar {
    min-height: 100vh; min-height: 100dvh; width: 100%; position: relative;
    display: flex; align-items: center; justify-content: center; text-align: center;
    background: url('assets/hero-bg.png') center center/cover no-repeat;
    overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.4) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.6) 100%);
}
.scroll-indicator-wrapper {
    position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); z-index: 20;
}
.scroll-indicator {
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    text-decoration: none; color: rgba(255,255,255,0.5); transition: var(--speed) var(--ease);
}
.scroll-indicator:hover { color: var(--white); }
.scroll-text {
    font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase;
    font-weight: 500; font-family: var(--font-body);
}
.scroll-line {
    width: 1px; height: 60px; background: rgba(255,255,255,0.2); position: relative; overflow: hidden;
}
.scroll-line::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 50%;
    background: var(--white); animation: scrollDown 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    50% { transform: translateY(100%); }
    100% { transform: translateY(200%); }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary-lux {
    display: inline-block; padding: 1rem 2.8rem;
    background: var(--white); color: var(--black) !important;
    text-transform: uppercase; letter-spacing: 3px; font-size: 0.7rem; font-weight: 600;
    text-decoration: none; border: 1px solid var(--white);
    transition: all var(--speed) var(--ease); cursor: pointer;
    font-family: var(--font-body); position: relative; overflow: hidden;
}
.btn-primary-lux:hover {
    background: transparent; color: var(--white) !important;
    box-shadow: 0 0 30px rgba(255,255,255,0.06);
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
    background: var(--rich-black); padding: 3rem 0; position: relative;
}
.trust-bar::before, .trust-bar::after {
    content: ''; position: absolute; left: 10%; width: 80%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}
.trust-bar::before { top: 0; }
.trust-bar::after { bottom: 0; }

.trust-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }

.trust-item {
    display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
    padding: 1rem 0; position: relative;
}
.trust-item:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 20%; height: 60%;
    width: 1px; background: rgba(255,255,255,0.06);
}

.stat-number { font-family: var(--font-display); font-size: 2.5rem; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-500); margin-top: 0.3rem; }

/* =============================================
   SECTIONS
   ============================================= */
.block-section { padding: 6rem 0; }
.bg-white { background: var(--off-white); color: var(--black); }
.bg-black { background: var(--black); color: var(--white); }

.bg-white .service-title { color: var(--black); }
.bg-white .section-label { color: var(--gray-700); }
.bg-white .section-label::before { background: var(--gray-700); }
.bg-white .service-desc { color: var(--gray-700); }
.bg-white .btn-minimal { color: var(--gray-900); }
.bg-white .btn-minimal:hover { color: var(--black); }
.bg-white .btn-minimal::after { background: var(--gray-900); }

.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.img-zoom-container { overflow: hidden; width: 100%; border-radius: 3px; }
.img-zoom-container img { width: 100%; height: auto; display: block; transition: transform 1s var(--ease); }
.img-zoom-container:hover img { transform: scale(1.04); }
.bg-white .img-zoom-container { box-shadow: 0 24px 48px rgba(0,0,0,0.07); }
.bg-black .img-zoom-container { box-shadow: 0 24px 48px rgba(0,0,0,0.4); }

.service-title { font-size: clamp(1.6rem, 2.8vw, 2.4rem); margin-bottom: 1.2rem; line-height: 1.2; }
.service-desc { font-size: 0.95rem; max-width: 440px; margin-bottom: 1.8rem; line-height: 1.8; }

/* =============================================
   REVIEWS
   ============================================= */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }

.review-card {
    background: var(--white); border: 1px solid var(--gray-100); border-radius: 4px;
    padding: 1.8rem; border-left: 3px solid var(--gray-300);
    transition: all var(--speed) var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }

.review-stars { color: var(--gray-700); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.review-text { font-size: 0.88rem; color: var(--gray-700); line-height: 1.7; font-style: italic; margin-bottom: 0.8rem; }
.review-author { font-size: 0.7rem; font-weight: 600; color: var(--gray-900); letter-spacing: 1.5px; text-transform: uppercase; }

/* =============================================
   FORM
   ============================================= */
.appointment-card {
    background: linear-gradient(160deg, var(--gray-900) 0%, var(--black) 100%);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 6px;
    padding: 3.5rem; max-width: 720px; margin: 0 auto;
    position: relative; overflow: hidden;
}
.appointment-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}
.appointment-card h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--white) !important; margin-bottom: 0.8rem; }
.appointment-card p { font-size: 0.9rem; color: var(--gray-500) !important; max-width: 450px; margin-bottom: 2.5rem !important; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 0.8rem; }

.input-lux {
    width: 100%; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 3px;
    padding: 0.85rem 1rem; color: var(--white) !important;
    font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 1.5px;
    outline: none; transition: var(--speed) var(--ease);
}
.input-lux::placeholder { color: var(--gray-500); }
.input-lux:focus { border-color: var(--white); background: rgba(255,255,255,0.06); }
.input-lux option { background: var(--gray-900); color: var(--white); }

.form-trust-note {
    font-size: 0.65rem !important; color: var(--gray-500) !important;
    text-align: center; margin-top: 1.2rem !important; margin-bottom: 0 !important;
}

/* =============================================
   FOOTER
   ============================================= */

/* CTA Band */
.footer-cta-band { background: var(--white); padding: 3rem 0; }
.footer-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.footer-cta-text h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--black); margin-bottom: 0.3rem; }
.footer-cta-text p { font-size: 0.85rem; color: rgba(0,0,0,0.5); margin: 0; }
.footer-cta-band .btn-primary-lux {
    background: var(--black); color: var(--white) !important;
    border-color: var(--black); white-space: nowrap;
}
.footer-cta-band .btn-primary-lux:hover {
    background: transparent; color: var(--black) !important; border-color: var(--black);
}

/* Main */
.footer-main { background: var(--gray-900); padding: 4rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 2.5rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.8rem; }

.footer-title {
    font-family: var(--font-body); font-size: 0.65rem; font-weight: 600;
    color: var(--white); letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 0.5rem; position: relative; padding-bottom: 0.8rem;
}
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 20px; height: 1px; background: var(--gray-500); }

.footer-tagline { font-size: 0.82rem; color: var(--gray-500); line-height: 1.7; }
.footer-logo-main {
    display: block; filter: brightness(0) invert(1); opacity: 0.7;
    margin-bottom: 0.3rem; height: 40px; width: auto;
    max-width: 180px; object-fit: contain;
    transition: var(--speed) var(--ease);
}
.footer-logo-main:hover { opacity: 1; }

.footer-social { display: flex; gap: 1rem; margin-top: 0.5rem; }
.footer-social a { color: var(--gray-500); transition: var(--speed) var(--ease); display: flex; align-items: center; }
.footer-social a:hover { color: var(--white); transform: translateY(-2px); }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: var(--gray-500); text-decoration: none; font-size: 0.82rem; transition: var(--speed) var(--ease); display: inline-block; }
.footer-links a:hover { color: var(--white); transform: translateX(3px); }

.footer-contact-block { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.8rem; color: var(--gray-500); line-height: 1.6; }
.footer-contact-row svg { flex-shrink: 0; margin-top: 3px; color: var(--gray-300); }
.footer-contact-link { color: inherit; text-decoration: none; transition: var(--speed) var(--ease); }
.footer-contact-link:hover { color: var(--white); }

.footer-hours { display: flex; flex-direction: column; gap: 0.2rem; margin-top: 0.8rem; padding-top: 0.8rem; border-top: 1px solid rgba(255,255,255,0.04); font-size: 0.78rem; color: var(--gray-500); }
.hours-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-300); margin-bottom: 0.2rem; }

/* Bottom */
.footer-bottom-bar { background: var(--gray-900); padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,0.03); }
.footer-bottom-flex { display: flex; justify-content: space-between; align-items: center; font-size: 0.7rem; color: var(--gray-500); }
.footer-credits { display: flex; align-items: center; gap: 0.5rem; }
.footer-credits span { font-size: 0.65rem; color: var(--gray-500); }
.eec-logo { display: block; opacity: 0.35; transition: var(--speed) var(--ease); height: 20px; width: auto; }
.eec-logo:hover { opacity: 0.7; }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in-up { opacity: 0; transform: translateY(25px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-in-up.visible { opacity: 1; transform: none; }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-in-left.visible { opacity: 1; transform: none; }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-in-right.visible { opacity: 1; transform: none; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .container { padding: 0 2rem; }
    .split-layout { gap: 3rem; }
    .desktop-only { display: none; }
    .burger-menu { display: flex; }
    nav.header-nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
    .logo-container { grid-column: 2; text-align: center; }
    .burger-menu { grid-column: 3; justify-self: end; }
    .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(2)::after { display: none; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .display-large { font-size: 2.2rem; }
    .hero-sub { font-size: 0.88rem; }
    .section-label { padding-left: 2rem; }
    .section-label::before { width: 1.2rem; }
    .block-section { padding: 4rem 0; }
    .split-layout { grid-template-columns: 1fr; gap: 2rem; }
    .split-layout .img-zoom-container { display: none; }
    .text-content { padding: 0.5rem 0; }
    .service-title { font-size: 1.5rem; }
    .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .trust-item::after { display: none !important; }
    .stat-number { font-size: 1.8rem; }
    .reviews-grid { grid-template-columns: 1fr; }
    .appointment-card { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .btn-primary-lux { width: 100%; text-align: center; }
    .footer-cta-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
    .footer-cta-text h3 { font-size: 1.3rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-flex { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-credits { justify-content: center; }
    .hero-cta-group { flex-direction: column; gap: 1rem; }
}