/* ===== VARIABLES ===== */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --accent: #c8a45e;
    --accent-dark: #a8843e;
    --accent-glow: rgba(200, 164, 94, 0.3);
    --red: #8b0000;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none;
}

a { text-decoration: none; color: inherit; cursor: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; cursor: none; }

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

/* ===== PRELOADER ===== */
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg-primary);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader { text-align: center; }
.loader span {
    font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 900;
    color: var(--accent); letter-spacing: 12px;
}
.loader-bar {
    width: 200px; height: 2px; background: #333; margin: 20px auto 0; border-radius: 2px; overflow: hidden;
}
.loader-bar::after {
    content: ''; display: block; width: 40%; height: 100%;
    background: var(--accent);
    animation: loading 1s ease-in-out infinite;
}
@keyframes loading { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }

/* ===== CURSOR ===== */
.cursor {
    width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 10000;
    transition: transform 0.1s;
}
.cursor-follower {
    width: 36px; height: 36px; border: 1px solid var(--accent); border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 9999;
    transition: transform 0.3s ease-out, width 0.3s, height 0.3s;
    transform: translate(-14px, -14px);
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0; transition: var(--transition);
}
#navbar.scrolled {
    background: rgba(10,10,10,0.95); backdrop-filter: blur(20px);
    padding: 12px 0; box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 1.5rem; }
.logo-text {
    font-family: 'Cinzel', serif; font-weight: 900; font-size: 1.3rem;
    letter-spacing: 4px; color: var(--accent);
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    font-size: 0.85rem; font-weight: 500; letter-spacing: 1px;
    text-transform: uppercase; color: var(--text-secondary);
    transition: var(--transition); position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--accent); transition: var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    padding: 10px 24px; background: var(--accent); color: #000;
    font-weight: 600; font-size: 0.8rem; letter-spacing: 1px;
    text-transform: uppercase; border-radius: 0; transition: var(--transition);
}
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-2px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 25px; height: 2px; background: var(--text-primary); transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 20px 0; }
.mobile-menu a {
    font-family: 'Cinzel', serif; font-size: 1.8rem; font-weight: 700;
    color: var(--text-secondary); transition: var(--transition);
}
.mobile-menu a:hover { color: var(--accent); }

/* ===== HERO ===== */
#hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-particles { position: absolute; inset: 0; }
.hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.95) 70%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.hero-badge {
    display: inline-block; padding: 8px 24px;
    border: 1px solid var(--accent); color: var(--accent);
    font-size: 0.7rem; font-weight: 600; letter-spacing: 4px;
    margin-bottom: 32px;
}
#hero h1 { margin-bottom: 24px; }
.hero-line {
    display: block; font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 8vw, 7rem); font-weight: 900;
    line-height: 1.1; letter-spacing: 2px;
    opacity: 0; transform: translateY(40px);
    animation: heroReveal 0.8s forwards;
}
.hero-line:nth-child(2) { animation-delay: 0.2s; }
.hero-line:nth-child(3) { animation-delay: 0.4s; }
.hero-line.accent { color: var(--accent); }
@keyframes heroReveal { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
    font-size: 1.1rem; color: var(--text-secondary);
    max-width: 500px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; font-size: 0.85rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase; transition: var(--transition);
}
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 10px 30px var(--accent-glow); }
.btn-outline { border: 1px solid #444; color: var(--text-primary); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.btn-full { width: 100%; justify-content: center; }

.hero-stats { display: flex; gap: 40px; justify-content: center; align-items: center; }
.stat { text-align: center; }
.stat-number { font-family: 'Cinzel', serif; font-size: 2.5rem; font-weight: 900; color: var(--accent); }
.stat-plus { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--accent); }
.stat-label { display: block; font-size: 0.75rem; color: var(--text-secondary); margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: #333; }

.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    animation: float 2s ease-in-out infinite;
}
.mouse {
    width: 24px; height: 38px; border: 2px solid #555; border-radius: 12px;
    display: flex; justify-content: center; padding-top: 8px;
}
.wheel {
    width: 3px; height: 8px; background: var(--accent); border-radius: 2px;
    animation: scroll 1.5s infinite;
}
@keyframes scroll { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(12px); } }
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }
.scroll-indicator span { font-size: 0.65rem; color: #555; letter-spacing: 2px; text-transform: uppercase; }

/* ===== SECTIONS ===== */
section { padding: 120px 0; }
.section-tag {
    display: inline-block; font-size: 0.7rem; font-weight: 600;
    letter-spacing: 4px; color: var(--accent); text-transform: uppercase;
    margin-bottom: 16px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-family: 'Cinzel', serif; font-size: 2.5rem; font-weight: 900; margin-bottom: 12px; }
.section-header p { color: var(--text-secondary); font-size: 1.05rem; }

/* ===== ABOUT ===== */
#about { background: var(--bg-secondary); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrapper {
    position: relative; aspect-ratio: 3/4; overflow: hidden;
    border: 1px solid #222;
}
.about-img-placeholder {
    width: 100%; height: 100%; background: var(--bg-card);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--text-secondary);
}
.about-img-placeholder i { font-size: 4rem; margin-bottom: 16px; }
.about-img-placeholder span { font-size: 0.85rem; letter-spacing: 2px; }
.about-image { position: relative; }
.experience-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--accent); color: #000; padding: 24px;
    display: flex; align-items: center; gap: 12px;
}
.exp-number { font-family: 'Cinzel', serif; font-size: 2.5rem; font-weight: 900; }
.exp-text { font-size: 0.8rem; font-weight: 600; line-height: 1.3; }
.about-content h2 { font-family: 'Cinzel', serif; font-size: 2.2rem; font-weight: 900; margin-bottom: 8px; }
.about-content h3 { color: var(--accent); font-size: 1rem; font-weight: 400; margin-bottom: 24px; letter-spacing: 2px; }
.about-content p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.feature {
    display: flex; align-items: center; gap: 12px; padding: 16px;
    background: var(--bg-card); border: 1px solid #222; transition: var(--transition);
}
.feature:hover { border-color: var(--accent); }
.feature i { color: var(--accent); font-size: 1.1rem; }
.feature span { font-size: 0.85rem; font-weight: 500; }

/* ===== GALLERY ===== */
.gallery-filter { display: flex; gap: 12px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
    padding: 10px 24px; background: transparent; border: 1px solid #333;
    color: var(--text-secondary); font-size: 0.8rem; letter-spacing: 1px;
    text-transform: uppercase; cursor: pointer; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(200,164,94,0.1); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
    position: relative; aspect-ratio: 1; overflow: hidden;
    border: 1px solid #222; cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-placeholder {
    width: 100%; height: 100%; background: var(--bg-card);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: #333; transition: var(--transition);
}
.gallery-placeholder i { font-size: 2.5rem; margin-bottom: 8px; }
.gallery-placeholder span { font-size: 0.75rem; letter-spacing: 1px; }
.gallery-overlay {
    position: absolute; inset: 0; background: rgba(200,164,94,0.9);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.gallery-overlay span { color: #000; font-weight: 700; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-placeholder { transform: scale(1.1); }

/* ===== SERVICES ===== */
#services { background: var(--bg-secondary); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    padding: 48px 32px; background: var(--bg-card);
    border: 1px solid #222; transition: var(--transition); text-align: center;
}
.service-card:hover { border-color: var(--accent); transform: translateY(-8px); }
.service-icon {
    width: 72px; height: 72px; margin: 0 auto 24px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid #333; transition: var(--transition);
}
.service-card:hover .service-icon { border-color: var(--accent); background: rgba(200,164,94,0.1); }
.service-icon i { font-size: 1.5rem; color: var(--accent); }
.service-card h3 { font-family: 'Cinzel', serif; font-size: 1.1rem; margin-bottom: 12px; }
.service-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* ===== PROCESS ===== */
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-timeline::before {
    content: ''; position: absolute; top: 35px; left: 12.5%; right: 12.5%;
    height: 1px; background: #333;
}
.process-step { text-align: center; position: relative; }
.step-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 70px; height: 70px; border: 2px solid var(--accent);
    font-family: 'Cinzel', serif; font-size: 1.3rem; font-weight: 900;
    color: var(--accent); margin-bottom: 20px; background: var(--bg-primary);
    position: relative; z-index: 1;
}
.process-step h3 { font-family: 'Cinzel', serif; font-size: 1rem; margin-bottom: 8px; }
.process-step p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; }

/* ===== CONTACT ===== */
#contact { background: var(--bg-secondary); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { font-family: 'Cinzel', serif; font-size: 2.2rem; margin-bottom: 16px; }
.contact-info > p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-item {
    display: flex; align-items: center; gap: 16px; padding: 20px;
    background: var(--bg-card); border: 1px solid #222; transition: var(--transition);
}
.contact-item:hover { border-color: var(--accent); }
.contact-item i { font-size: 1.3rem; color: var(--accent); width: 24px; text-align: center; }
.contact-item strong { display: block; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.contact-item span { color: var(--text-secondary); font-size: 0.95rem; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 48px; height: 48px; border: 1px solid #333;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--text-secondary); transition: var(--transition);
}
.social-links a:hover { border-color: var(--accent); color: var(--accent); background: rgba(200,164,94,0.1); }

.contact-form-wrapper { padding: 48px; background: var(--bg-card); border: 1px solid #222; }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 16px; background: var(--bg-primary);
    border: 1px solid #222; color: var(--text-primary); font-size: 0.9rem;
    transition: var(--transition); outline: none; appearance: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group select { color: var(--text-secondary); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== FOOTER ===== */
footer { padding: 48px 0; border-top: 1px solid #1a1a1a; }
.footer-content { text-align: center; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 8px; }
.footer-logo span { font-family: 'Cinzel', serif; font-weight: 900; font-size: 1.1rem; letter-spacing: 4px; color: var(--accent); }
.footer-content > p { color: var(--text-secondary); font-size: 0.85rem; }
.footer-copy { margin-top: 16px; color: #444; font-size: 0.75rem; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 60px; height: 60px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== AOS ===== */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s, transform 0.6s; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-down"] { transform: translateY(-30px); }
[data-aos="fade-down"].aos-animate { transform: translateY(0); }

/* ===== RESPONSIVE ===== */
/* ===== MOBILE BOTTOM NAV ===== */
/* Bottom Nav - Mobile App Style */
.bottom-nav {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 0 0 env(safe-area-inset-bottom, 0px);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.6);
}
.bottom-nav ul {
    display: flex; justify-content: space-around; align-items: center;
    padding: 0; margin: 0; height: 66px;
}
.bottom-nav li { list-style: none; flex: 1; }
.bottom-nav a {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px; color: rgba(255,255,255,0.3); font-size: 0.5rem; letter-spacing: 0.7px;
    text-transform: uppercase; font-weight: 700; width: 100%; height: 66px;
    text-decoration: none; position: relative;
    transition: color 0.2s ease, transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}
.bottom-nav a i {
    font-size: 1.2rem;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), color 0.2s ease;
}
.bottom-nav a.active { color: var(--accent); }
.bottom-nav a.active i { transform: translateY(-2px) scale(1.18); }
.bottom-nav a.active::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 28px; height: 3px;
    background: var(--accent);
    border-radius: 0 0 6px 6px;
}
.bottom-nav a:not(.nav-wa):not(.active):hover { color: rgba(255,255,255,0.65); }
.bottom-nav a:not(.nav-wa):active { transform: scale(0.88); }

/* Center button - WhatsApp Randevu */
.bottom-nav li.bnav-center { position: relative; }
.bottom-nav a.nav-wa {
    color: rgba(255,255,255,0.8);
    font-size: 0.5rem;
    letter-spacing: 0.5px;
    top: -8px;
}
.bottom-nav a.nav-wa .bnav-wa-circle {
    width: 54px; height: 54px;
    background: linear-gradient(145deg, #2ecc71, #128C7E);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 5px rgba(37,211,102,0.1);
    margin-bottom: 4px;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
}
.bottom-nav a.nav-wa .bnav-wa-circle i {
    font-size: 1.6rem; color: #fff;
}
.bottom-nav a.nav-wa:hover .bnav-wa-circle {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.65), 0 0 0 7px rgba(37,211,102,0.15);
}
.bottom-nav a.nav-wa:active .bnav-wa-circle { transform: scale(0.93); }

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .process-timeline::before { display: none; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .stat-divider { width: 40px; height: 1px; }
    .experience-badge { right: 0; bottom: -10px; }
    .contact-form-wrapper { padding: 24px; }
    .cursor, .cursor-follower { display: none; }
    body { cursor: auto; padding-bottom: 70px; }
    a, button { cursor: pointer; }
    .bottom-nav { display: block; }
    .whatsapp-float { display: none; }
    #navbar { display: none; }
    .hamburger { display: none; }
    footer { padding-bottom: 80px; }
}
