/* ===== ZEYBEK EVENT – MAIN STYLESHEET ===== */

:root {
  --dark:    #2e2e2e;
  --darker:  #1c1c1c;
  --orange:  #c87941;
  --orange-light: #e09460;
  --white:   #ffffff;
  --light:   #f7f5f2;
  --grey:    #666;
  --border:  #e0dbd4;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--dark); background: var(--white); line-height: 1.7; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { color: #555; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
.accent { color: var(--orange); }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(28,28,28,0.96); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 2rem; border-bottom: 2px solid var(--orange);
}
.logo-link { display: flex; align-items: center; }
.logo { height: 44px; width: auto; }
.logo-text { flex-direction: column; align-items: flex-start; line-height: 1; }
.logo-main { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--white); letter-spacing: 4px; }
.logo-sub { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 600; color: var(--orange); letter-spacing: 6px; margin-top: 1px; }
.nav-toggle { display: none; }
.hamburger { display: none; color: var(--white); font-size: 1.6rem; cursor: pointer; }
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #ccc; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }

/* BUTTONS */
.btn { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 0.85rem 2rem; border-radius: 3px; transition: all 0.25s; cursor: pointer; }
.btn-primary { background: var(--orange); color: var(--white); border: 2px solid var(--orange); }
.btn-primary:hover { background: var(--orange-light); border-color: var(--orange-light); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-full { width: 100%; text-align: center; border: none; padding: 1rem; font-size: 1rem; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding-top: 80px; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(28,28,28,0.82) 0%, rgba(28,28,28,0.55) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); max-width: 800px; padding: 2rem 1.5rem; }
.hero-tagline { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.hero-content h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* STATS STRIP */
.stats-strip { background: var(--orange); display: flex; justify-content: center; flex-wrap: wrap; }
.stat { padding: 2rem 3rem; display: flex; flex-direction: column; align-items: center; border-right: 1px solid rgba(255,255,255,0.25); }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Montserrat', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--white); }
.stat-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-top: 0.2rem; }

/* SECTIONS */
.section { padding: 6rem 0; }
.bg-light { background: var(--light); }

.section-badge { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); border: 1px solid var(--orange); padding: 0.3rem 0.8rem; margin-bottom: 1rem; border-radius: 2px; }
.section-badge.center { display: block; text-align: center; }
h2.center { text-align: center; margin-bottom: 3rem; }

/* TWO-COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.col-img img { border-radius: 6px; height: 420px; object-fit: cover; box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.col-text h2 { margin-bottom: 1rem; }

/* SERVICE CARDS */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.8rem; margin-top: 1rem; }
.card { background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07); transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.14); }
.card-img-wrap { height: 200px; overflow: hidden; }
.card-img-wrap img { height: 100%; object-fit: cover; transition: transform 0.4s; }
.card:hover .card-img-wrap img { transform: scale(1.06); }
.card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--dark); }
.card-body p { font-size: 0.9rem; flex: 1; }
.card-link { display: inline-block; margin-top: 1rem; font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; color: var(--orange); text-transform: uppercase; }

/* CTA BANNER */
.cta-banner { position: relative; padding: 7rem 1.5rem; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: rgba(28,28,28,0.75); }
.cta-content { position: relative; z-index: 2; color: var(--white); }
.cta-content h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); margin-bottom: 0.8rem; }
.cta-content p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 1.8rem; }

/* FOOTER */
.footer { background: var(--darker); color: #aaa; padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo { display: flex; flex-direction: column; line-height: 1; margin-bottom: 1rem; }
.footer-logo-main { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--white); letter-spacing: 4px; }
.footer-logo-sub { font-family: 'Montserrat', sans-serif; font-size: 0.6rem; font-weight: 600; color: var(--orange); letter-spacing: 7px; }
.footer-brand p { font-size: 0.9rem; margin-top: 0.8rem; color: #888; }
.footer h4 { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: #888; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 0.5rem; color: #888; }
.footer-contact a { color: #888; transition: color 0.2s; }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid #333; text-align: center; padding: 1.2rem 0; font-size: 0.8rem; color: #555; }

/* PAGE HERO */
.page-hero { position: relative; padding: 9rem 1.5rem 5rem; display: flex; align-items: center; justify-content: center; text-align: center; min-height: 380px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(28,28,28,0.7); }
.page-hero-content { position: relative; z-index: 2; color: var(--white); }
.page-hero-content h1 { margin-bottom: 0.5rem; }
.page-hero-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

/* VALUES */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 1rem; }
.value-card { background: var(--white); border-radius: 6px; padding: 2rem; text-align: center; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.value-icon { font-size: 1.8rem; color: var(--orange); margin-bottom: 0.8rem; }
.value-card h3 { margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 1rem; }
.team-card { text-align: center; }
.team-card img { height: 260px; object-fit: cover; border-radius: 6px; margin-bottom: 1rem; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.team-info h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.team-info p { font-size: 0.85rem; color: var(--orange); }

/* SERVICE DETAIL */
.service-features { list-style: none; margin-top: 1rem; }
.service-features li { padding: 0.45rem 0; color: #555; font-size: 0.95rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.6rem; }
.service-features li::before { content: '\2713'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* WHY GRID */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; margin-top: 1rem; }
.why-item { padding: 2rem; border-left: 3px solid var(--orange); }
.why-num { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 900; color: var(--border); margin-bottom: 0.5rem; }
.why-item h3 { margin-bottom: 0.5rem; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.8rem; }
.contact-icon { font-size: 1.4rem; color: var(--orange); flex-shrink: 0; margin-top: 0.1rem; }
.contact-item h4 { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--dark); margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.95rem; }
.contact-item a { color: var(--orange); }
.contact-item a:hover { text-decoration: underline; }
.contact-form-wrap h2 { margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea { padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: 4px; font-family: 'Open Sans', sans-serif; font-size: 0.95rem; color: var(--dark); background: var(--white); transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { resize: vertical; }
.form-success { background: #e8f5e9; color: #2e7d32; padding: 1rem; border-radius: 4px; text-align: center; font-family: 'Montserrat', sans-serif; font-weight: 600; }
.map-section { line-height: 0; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .two-col, .contact-grid { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .col-img img { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { position: fixed; top: 70px; left: 0; right: 0; background: var(--darker); flex-direction: column; padding: 1.5rem 2rem; gap: 1.2rem; transform: translateY(-120%); transition: transform 0.3s; border-top: 1px solid #333; }
  .nav-toggle:checked ~ .nav-links { transform: translateY(0); }
  .hamburger { display: block; }
  .stats-strip { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
