/* --- VIP PAGES CSS (ilan-detay, hakkimizda, vb.) --- */

/* --- ILAN DETAY SAYFASI --- */
.property-detail-page {
  padding-top: 100px; /* Leave space for fixed header */
  background-color: var(--color-bg-light);
  padding-bottom: 80px;
}

.property-header {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.property-title-area h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-light);
  font-size: 1rem;
}

.property-price-area {
  text-align: right;
}

.property-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-accent-dark);
  line-height: 1;
}

.property-price span {
  font-size: 1.2rem;
  color: var(--color-text-light);
}

/* Gallery Grid (Airbnb Style) */
.property-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 15px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}

.property-gallery.has-3-images .gallery-thumb {
  grid-row: 1 / 3;
}

.property-gallery.has-4-images .gallery-thumb:nth-child(4) {
  grid-column: 2 / 4;
}

.gallery-item {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.gallery-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.gallery-wrapper {
  overflow: hidden;
  position: relative;
}

.view-all-photos {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--color-white);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  color: var(--color-primary);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2;
}

.view-all-photos:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Layout */
.property-layout {
  display: flex;
  gap: 40px;
}

.property-content {
  flex: 1;
}

.property-sidebar {
  width: 380px;
  flex-shrink: 0;
}

/* Overview Specs */
.property-specs {
  display: flex;
  gap: 30px;
  padding: 25px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  border: 1px solid rgba(0,0,0,0.03);
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.spec-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
}

.spec-label {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* Description */
.property-section {
  background: var(--color-white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  border: 1px solid rgba(0,0,0,0.03);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--color-bg-light);
}

.desc-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-main);
}


/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--color-text-main);
}

.feature-item svg {
  color: var(--color-accent-dark);
}

/* Sticky Agent Card */
.agent-card {
  background: var(--color-white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 100px;
}

.agent-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.agent-img {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-bg-light);
}

.agent-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.agent-badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.agent-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  border: none;
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-call {
  background: var(--color-primary);
  color: white;
  border: none;
}

.btn-call:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.3);
}

/* --- HAKKIMIZDA SAYFASI EFEKTLERİ --- */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80') center/cover;
  z-index: 0;
  animation: zoomSlow 20s infinite alternate;
}

@keyframes zoomSlow {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.about-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.85); /* VIP Dark Overlay */
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  animation: slideUpFade 1s ease-out;
}

.about-hero p {
  font-size: 1.3rem;
  line-height: 1.6;
  opacity: 0.9;
  animation: slideUpFade 1s ease-out 0.2s backwards;
}

@keyframes slideUpFade {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.about-content-section {
  padding: 100px 0;
  background: var(--color-white);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.mv-card {
  padding: 50px;
  background: var(--color-bg-light);
  border-radius: 20px;
  border-left: 5px solid var(--color-accent);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  background: var(--color-white);
}

.mv-card h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.mv-card p {
  font-size: 1.15rem;
  color: var(--color-text-main);
  line-height: 1.8;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background: var(--color-bg-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.team-member {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease;
  text-align: center;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 25px;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.team-role {
  color: var(--color-accent-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

/* --- ILETISIM SAYFASI --- */
.contact-page {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #f8f9fa;
}

.contact-layout {
  display: flex;
  gap: 50px;
  margin-top: 40px;
}

.contact-info-col {
  flex: 1;
}

.contact-form-col {
  flex: 1.5;
  background: var(--color-white);
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.15);
  position: relative;
}
.contact-form-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 6px;
  background: var(--color-gold-gradient);
}

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

.contact-icon {
  width: 70px; height: 70px;
  background: #f8fafc;
  color: var(--color-primary);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1.8rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-details h3 {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 10px;
  font-weight: 800;
}

.contact-details p {
  font-size: 1.1rem;
  color: var(--color-text-main);
  line-height: 1.6;
}

.form-group-c {
  margin-bottom: 25px;
}

.form-group-c label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.form-control {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  transition: all var(--transition-fast);
  background: var(--color-bg-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-normal);
  width: 100%;
}

.btn-submit:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .property-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 250px 250px;
  }
  .gallery-main {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }
  .property-layout {
    flex-direction: column;
  }
  .property-sidebar {
    width: 100%;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-layout {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .property-title-area h1 {
    font-size: 2rem;
  }
  .property-price {
    font-size: 2.2rem;
  }
  .property-header {
    flex-direction: column;
    gap: 15px;
  }
  .property-specs {
    flex-wrap: wrap;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  /* Iletisim Page Mobile Fixes */
  .contact-layout { gap: 30px; margin-top: 20px; }
  .contact-info-col { margin-bottom: 20px; }
  .contact-item { padding: 15px; margin-bottom: 15px; }
  .contact-icon { width: 50px; height: 50px; font-size: 24px; }
  .contact-details h3 { font-size: 1.1rem; }
  .contact-details p { font-size: 0.95rem; }
  .contact-form-col { padding: 25px 20px; border-radius: 16px; }
  .form-group-c { margin-bottom: 20px; }
  .contact-form-col h2 { font-size: 1.6rem !important; margin-bottom: 20px !important; }
  .contact-form-col > div[style*="display:flex"] { flex-direction: column; gap: 0 !important; }
}
