/* ============ ALAÇATIDA NE VAR? ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --yellow: #ffcd05;
  --black: #000;
  --white: #fff;
  --dark: #27292f;
  --gray: #666;
  --light-gray: #f7f7f7;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

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

.highlight { color: var(--yellow); }

/* ============ HEADER ============ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 16px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img { max-height: 55px; width: auto; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover { color: var(--yellow); }

.btn-cta {
  background: var(--yellow);
  color: var(--black) !important;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-cta:hover { background: var(--white); transform: translateY(-2px); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--white);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url('../images/hero.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero-content { max-width: 1000px; }

.hero .eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 .highlight { color: var(--yellow); }

.hero .tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 40px;
  opacity: 0.95;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero .tagline strong { color: var(--yellow); font-weight: 600; }

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.2s;
  border: 2px solid var(--yellow);
}

.btn-yellow:hover { background: transparent; color: var(--yellow); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-outline:hover { background: var(--white); color: var(--black); }

/* ============ PAGE HERO ============ */
.page-hero {
  min-height: 50vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), center/cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
}

.page-hero.hakkimizda { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hakkimizda-hero.jpg'); }
.page-hero.hizmetler { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero.jpg'); }
.page-hero.iletisim { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/iletisim-hero.jpg'); }
.page-hero.blog { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/beach.jpg'); }
.page-hero.firsatlar { background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/cruise.jpg'); }

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.page-hero p { font-size: 1.125rem; opacity: 0.9; }

/* ============ SECTIONS ============ */
section { padding: 100px 0; }

.section-title { text-align: center; margin-bottom: 64px; }

.section-title .eyebrow {
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 12px;
  display: block;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-title p {
  color: var(--gray);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ============ HİZMETLER GRID (Card with image) ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-image {
  height: 220px;
  background: var(--light-gray) center/cover no-repeat;
  position: relative;
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 50%);
}

.service-body { padding: 28px; }

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card p { color: var(--gray); font-size: 0.95rem; }

/* ============ WHY US ============ */
.why-us {
  background: var(--black);
  color: var(--white);
}

.why-us h2 { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.why-item {
  text-align: center;
  padding: 32px 16px;
}

.why-item .number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
}

.why-item h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.why-item p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--light-gray);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testi-card {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  position: relative;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 20px;
  font-size: 80px;
  color: var(--yellow);
  font-family: Georgia, serif;
  line-height: 1;
}

.testi-card p {
  color: var(--gray);
  font-style: italic;
  margin: 24px 0;
  font-size: 1rem;
}

.testi-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
}

.testi-location {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stars { color: var(--yellow); margin-bottom: 12px; }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 24px;
}

.about-content p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-image img {
  border-radius: 8px;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--yellow);
  color: var(--black);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 40px;
  opacity: 0.85;
}

.btn-black {
  background: var(--black);
  color: var(--white);
  padding: 18px 48px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.2s;
}

.btn-black:hover { background: var(--white); color: var(--black); }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info h3 {
  margin-bottom: 32px;
  font-size: 1.75rem;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-item .icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  color: var(--gray);
}

.contact-item p, .contact-item a { font-size: 1.05rem; }

.contact-form {
  background: var(--light-gray);
  padding: 40px;
  border-radius: 8px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
}

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

.btn-submit {
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
}

.btn-submit:hover { background: var(--black); color: var(--white); }

/* ============ BLOG ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.1); }

.blog-image {
  height: 220px;
  background: var(--light-gray) center/cover no-repeat;
}

.blog-content { padding: 24px; }

.blog-meta {
  font-size: 0.8rem;
  color: var(--yellow);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.blog-content h3 { font-size: 1.25rem; margin-bottom: 12px; }
.blog-content p { color: var(--gray); font-size: 0.95rem; }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

/* ============ FOOTER ============ */
footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h4 {
  color: var(--yellow);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.footer-col p, .footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: block;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--yellow); }

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a { color: var(--yellow); }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }

  .nav-links.active { display: flex; }

  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img { height: 350px; }

  section { padding: 60px 0; }

  .hero { background-attachment: scroll; min-height: 90vh; }
}
