/* ── Ruqoz Tattoo — Deep Navy Cyan ───────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;1,300&display=swap');

:root {
  --navy:      #0A1628;
  --navy-mid:  #0F2040;
  --navy-lt:   #152B52;
  --abyss:     #060E1A;
  --cyan:      #06B6D4;
  --cyan-lt:   #22D3EE;
  --cyan-dim:  #0891B2;
  --silver:    #E2E8F0;
  --silver-dim:#94A3B8;
  --white:     #F8FAFC;

  --f-display: 'Rajdhani', Impact, sans-serif;
  --f-body:    'Nunito Sans', system-ui, sans-serif;

  --ease: cubic-bezier(.25,.46,.45,.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--navy); color: var(--silver); font-family: var(--f-body); font-weight: 300; line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────────── */
.t-hero   { font-family: var(--f-display); font-size: clamp(3.5rem, 11vw, 10rem); font-weight: 700; line-height: .88; letter-spacing: -.01em; }
.t-hero em { color: var(--cyan); font-style: normal; }
.t-xl     { font-family: var(--f-display); font-size: clamp(2rem, 5vw, 4.5rem); font-weight: 700; line-height: .92; }
.t-lg     { font-family: var(--f-display); font-size: clamp(1.4rem, 3vw, 2.5rem); font-weight: 600; }
.t-eyebrow { font-family: var(--f-body); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--cyan); font-weight: 600; }
.t-body   { font-size: 1rem; color: var(--silver-dim); max-width: 58ch; line-height: 1.75; }
.t-small  { font-size: .8rem; color: var(--silver-dim); }
.badge    { display: inline-block; padding: .2rem .8rem; border: 1px solid var(--cyan-dim); font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cyan); font-family: var(--f-body); font-weight: 600; border-radius: 2px; }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block; padding: .85rem 2.5rem;
  background: var(--cyan); color: var(--abyss);
  font-family: var(--f-display); font-size: .95rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 3px; transition: background .2s var(--ease), transform .2s, box-shadow .2s;
}
.btn-primary:hover { background: var(--cyan-lt); transform: translateY(-2px); box-shadow: 0 0 20px rgba(6,182,212,.35); }

.btn-outline {
  display: inline-block; padding: .8rem 2.5rem;
  border: 1px solid var(--cyan-dim); color: var(--cyan);
  font-family: var(--f-display); font-size: .95rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 3px; transition: border-color .2s, color .2s, transform .2s, box-shadow .2s;
}
.btn-outline:hover { border-color: var(--cyan-lt); color: var(--cyan-lt); transform: translateY(-2px); box-shadow: 0 0 15px rgba(6,182,212,.2); }

/* ── Layout ─────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }

/* ── Glow effects ───────────────────────────────────────────────── */
.cyan-glow { text-shadow: 0 0 30px rgba(6,182,212,.4); }
.line-cyan { display: block; width: 3rem; height: 2px; background: linear-gradient(90deg, var(--cyan), transparent); margin-bottom: 1.5rem; }

/* ── Header ─────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background .4s var(--ease), padding .3s;
}
.site-header.scrolled {
  background: rgba(6,14,26,.94);
  backdrop-filter: blur(14px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(6,182,212,.2);
}
.logo {
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 700; letter-spacing: .04em; line-height: 1;
}
.logo span { color: var(--cyan); }

.site-header nav { display: flex; align-items: center; gap: 2.5rem; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { font-family: var(--f-display); font-size: .9rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover { color: var(--cyan); }

.lang-toggle { display: flex; align-items: center; gap: .5rem; }
.lang-toggle button { background: none; border: none; cursor: pointer; font-family: var(--f-body); font-size: .75rem; letter-spacing: .1em; color: var(--silver-dim); transition: color .2s; font-weight: 600; }
.lang-toggle button.active { color: var(--cyan); }
.lang-toggle .sep { color: var(--silver-dim); opacity: .4; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--silver); transition: transform .3s, opacity .3s; }
.site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/ruqoz-tattoo-antalya-tattoo1.jpg');
  background-size: cover; background-position: center top;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,14,26,.92) 40%, rgba(6,14,26,.6) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 3rem; max-width: 860px; }
.hero-sub { font-size: 1.05rem; color: var(--silver-dim); margin: 1.2rem 0 2.5rem; max-width: 52ch; line-height: 1.8; }
.hero-btns { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.5rem; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }

/* ── Rating bar ─────────────────────────────────────────────────── */
.rating-bar {
  background: var(--abyss);
  border-top: 1px solid rgba(6,182,212,.3);
  display: flex; align-items: center; gap: 3rem;
  padding: 1.6rem 3rem; flex-wrap: wrap;
}
.rating-item { display: flex; flex-direction: column; gap: .2rem; }
.rating-num { font-family: var(--f-display); font-size: 2rem; font-weight: 700; color: var(--cyan); line-height: 1; }
.rating-stars { color: var(--cyan); font-size: .85rem; letter-spacing: .1em; }
.rating-label { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--silver-dim); font-weight: 600; }

/* ── About strip ────────────────────────────────────────────────── */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; }
.about-strip-img { overflow: hidden; position: relative; }
.about-strip-img::after { content: ''; position: absolute; left: 0; inset-block: 0; width: 1px; background: linear-gradient(to bottom, transparent, var(--cyan), transparent); }
.about-strip-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.about-strip-img:hover img { transform: scale(1.04); }
.about-strip-text { background: var(--navy-mid); display: flex; align-items: center; padding: 5rem; }
.about-strip-text .inner { max-width: 44ch; }
.about-strip-text h2 { margin: .8rem 0; }
.about-strip-text .t-body { margin: 1.2rem 0 2.5rem; }

/* ── Gallery ────────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.g-item { overflow: hidden; height: 340px; background: var(--navy-mid); position: relative; }
.g-item.tall { height: 684px; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.g-item:hover img { transform: scale(1.05); }
.g-overlay { position: absolute; inset: 0; background: rgba(6,182,212,0); transition: background .4s; }
.g-item:hover .g-overlay { background: rgba(6,182,212,.08); }

/* ── Services ───────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.service-card {
  background: var(--navy-mid); padding: 3rem 2.5rem;
  border-top: 2px solid transparent; transition: border-color .3s, background .3s;
}
.service-card:hover { background: var(--navy-lt); border-color: var(--cyan); }
.service-icon { font-size: 2rem; color: var(--cyan); margin-bottom: 1.2rem; display: block; }
.service-card h3 { font-family: var(--f-display); font-size: 1.5rem; font-weight: 700; margin-bottom: .8rem; letter-spacing: .03em; }
.service-card p { font-size: .9rem; color: var(--silver-dim); line-height: 1.7; }

/* ── Reviews ────────────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.review-card { background: var(--navy-mid); padding: 2.5rem; border-top: 2px solid var(--cyan); }
.review-stars { color: var(--cyan); margin-bottom: 1rem; }
.review-text { font-size: 1rem; font-style: italic; line-height: 1.75; color: var(--silver); margin-bottom: 1.5rem; }
.review-author { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--cyan); font-weight: 600; }

/* ── Split CTA ──────────────────────────────────────────────────── */
.split-feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.split-img { overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-txt {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--abyss) 100%);
  border-left: 1px solid rgba(6,182,212,.25);
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem;
}
.split-txt h2 { font-family: var(--f-display); font-size: clamp(2rem, 4vw, 4rem); font-weight: 700; line-height: .92; margin-bottom: 1.5rem; }
.split-txt h2 em { color: var(--cyan); font-style: normal; }
.split-txt p { font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; max-width: 44ch; color: var(--silver-dim); }
.split-txt .btn-cta {
  display: inline-block; padding: .85rem 2.5rem;
  background: transparent; border: 1px solid var(--cyan); color: var(--cyan);
  font-family: var(--f-display); font-size: .95rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 3px; transition: background .25s, color .25s, transform .2s, box-shadow .2s;
}
.split-txt .btn-cta:hover { background: var(--cyan); color: var(--abyss); transform: translateY(-2px); box-shadow: 0 0 20px rgba(6,182,212,.3); }

/* ── Page header ────────────────────────────────────────────────── */
.page-header {
  padding: 10rem 3rem 4rem;
  background: var(--abyss);
  border-bottom: 1px solid rgba(6,182,212,.2);
}
.page-header h1 { margin-top: .5rem; }

/* ── About page ─────────────────────────────────────────────────── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-story-img { overflow: hidden; border-radius: 4px; }
.about-story-img img { width: 100%; height: 520px; object-fit: cover; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 4px; }
.value-card { background: var(--navy-mid); padding: 2.5rem; }
.value-card h3 { font-family: var(--f-display); font-size: 1.3rem; font-weight: 700; margin-bottom: .6rem; color: var(--cyan); letter-spacing: .03em; }
.value-card p { font-size: .9rem; color: var(--silver-dim); line-height: 1.7; }

/* ── 24h badge ──────────────────────────────────────────────────── */
.open-badge { display: inline-flex; align-items: center; gap: .6rem; padding: .4rem 1rem; border: 1px solid rgba(6,182,212,.4); border-radius: 2rem; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--cyan); font-weight: 600; }
.open-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 6px #22c55e; animation: pulse 2s infinite; }

/* ── Contact ────────────────────────────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.contact-info { padding: 5rem; background: var(--navy-mid); }
.contact-item { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-icon { font-size: 1rem; color: var(--cyan); flex-shrink: 0; padding-top: .3rem; }
.contact-detail h4 { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cyan); margin-bottom: .4rem; font-weight: 600; }
.contact-detail p, .contact-detail a { font-size: 1rem; color: var(--silver); line-height: 1.6; }
.contact-detail a:hover { color: var(--cyan); }
.contact-map { overflow: hidden; }
.contact-map iframe { width: 100%; height: 100%; border: none; min-height: 580px; filter: hue-rotate(195deg) saturate(0.6) brightness(0.75); }

/* ── Form ───────────────────────────────────────────────────────── */
.form-section { background: var(--navy-mid); }
.form-note { background: rgba(6,182,212,.08); border-left: 2px solid var(--cyan); padding: 1rem 1.5rem; font-size: .85rem; color: var(--silver-dim); margin-bottom: 2rem; border-radius: 0 4px 4px 0; }
.contact-form form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-field { display: flex; flex-direction: column; gap: .5rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cyan); font-weight: 600; }
.form-field input, .form-field textarea {
  background: var(--abyss); border: 1px solid rgba(6,182,212,.2);
  color: var(--silver); padding: .85rem 1rem; font-family: var(--f-body); font-size: .95rem;
  border-radius: 3px; transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 10px rgba(6,182,212,.15); }
.form-field textarea { resize: vertical; }

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer { background: var(--abyss); padding: 4rem 3rem 2rem; border-top: 1px solid rgba(6,182,212,.2); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; color: var(--silver-dim); line-height: 1.7; }
.footer-col h4 { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cyan); margin-bottom: 1.2rem; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul a { font-size: .9rem; color: var(--silver-dim); transition: color .2s; }
.footer-col ul a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(6,182,212,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .8rem; color: var(--silver-dim); }
.disclaimer { font-size: .72rem; color: var(--silver-dim); opacity: .5; margin-top: 1rem; }

/* ── Reveal ─────────────────────────────────────────────────────── */
.reveal, .reveal-left, .reveal-right { }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-header nav { display: none; }
  .site-header { padding: 1.2rem 1.5rem; }
  .site-header.scrolled { padding: .8rem 1.5rem; }
  .site-header.menu-open nav {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: var(--abyss);
    align-items: center; justify-content: center;
    gap: 2rem; z-index: 99;
  }
  .site-header.menu-open .nav-links { flex-direction: column; gap: 2rem; text-align: center; }
  .site-header.menu-open .nav-links a { font-size: 1.2rem; }
  .hero-content { padding: 0 1.5rem; }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip-text { padding: 3rem 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-item.tall { height: 340px; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .split-feature { grid-template-columns: 1fr; }
  .split-img { min-height: 50vw; }
  .split-txt { padding: 3rem 2rem; }
  .contact-wrap { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form form { grid-template-columns: 1fr; }
  .rating-bar { padding: 1.5rem 2rem; gap: 2rem; }
  .page-header { padding: 8rem 2rem 3rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .about-values { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  @keyframes pulse { from { opacity: 1; } to { opacity: 1; } }
}
