/* CoreSpaces Ana Stil Dosyası */
:root {
  --primary-color: #006039; /* Yeşil ana renk */
  --secondary-color: #FFFFFF; /* Beyaz */
  --text-color: #333333; /* Metin rengi */
  --light-color: #f8f9fa; /* Açık gri */
  --dark-color: #212529; /* Koyu gri */
  --accent-color: #e3e3e3; /* Vurgu rengi */
  --footer-color: #333333; /* Footer rengi */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.no-padding {
  padding: 0;
}

.services .container {
  max-width: 100%;
  width: 100%;
}

/* Header Styles */
header {
  background-color: var(--secondary-color);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  max-width: 125px;
}

.logo img {
  width: 100%;
  height: auto;
}

/* Menü Stilleri */
nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  width: 550px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  padding: 10px 8px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  white-space: nowrap;
  letter-spacing: -0.2px;
}

html[lang="en"] nav ul li a {
  padding: 10px 12px;
  letter-spacing: normal;
}

nav ul li a:hover, nav ul li a.active {
  color: var(--primary-color);
}

nav ul li a.active {
  font-weight: 700;
}

/* Dil Değiştirme */
.language-item {
  margin-left: 10px;
}

.language-item a {
  display: flex;
  align-items: center;
}

.flag-icon {
  width: 30px;
  height: auto;
  border-radius: 3px;
}

/* Social Header */
.social-header {
  display: flex;
  margin-left: 20px;
}

.social-header a {
  color: var(--text-color);
  margin-left: 15px;
  font-size: 18px;
  transition: color 0.3s;
}

.social-header a:hover {
  color: var(--primary-color);
}

/* Mobil Menü İçin */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-color);
}

/* Ana Bölüm Stilleri */
.hero {
  background: url('../assets/backgroud.jpg') center/cover no-repeat;
  color: var(--secondary-color);
  padding: 0;
  text-align: left;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  min-height: calc(100vh - 80px); /* Header yüksekliğini çıkardım */
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 96, 57, 0.7);
  z-index: 1;
  clip-path: polygon(0 0, 50% 0, 60% 100%, 0 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0;
  margin-left: 15px;
}

.small-hero {
  min-height: unset;
  padding: 60px 0;
  display: block;
  text-align: center;
}

.small-hero::before {
  clip-path: none;
}

.small-hero .container {
  margin: 0 auto;
  max-width: 1200px;
  text-align: center;
  width: 100%;
}

.small-hero .container h1 {
  text-align: center;
}

.small-hero .container p {
  font-size: 24px;
  font-style: italic;
  margin: 15px auto 0;
  text-align: center;
  width: 100%;
  display: block;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  font-weight: 700;
}

.hero p {
  font-size: 52px;
  max-width: 700px;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  font-weight: 700;
}

.hero-btn {
  display: inline-block;
  background-color: #a37e2c;
  color: var(--secondary-color);
  border: none;
  padding: 12px 24px;
  margin-top: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.hero-btn:hover {
  background-color: var(--secondary-color);
  color: #a37e2c;
}

/* Hero Shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.shape {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.shape-1 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: 10%;
}

.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 20%;
  background-color: rgba(255, 255, 255, 0.05);
}

.services {
  padding: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-size: 32px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: var(--light-color);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 20px;
}

.service-card p {
  margin-bottom: 20px;
  flex-grow: 1;
}

.btn-details {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
  align-self: flex-start;
}

.btn-details:hover {
  background-color: #004e30;
}

/* Hizmetler Sayfası Stilleri */
.service-search {
  background-color: var(--light-color);
  padding: 60px 0;
}

.search-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.search-container h2 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 32px;
}

.search-form {
  display: flex;
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 5px;
  overflow: hidden;
}

.search-form input {
  flex: 1;
  padding: 15px;
  border: none;
  font-size: 16px;
}

.search-form button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0 30px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.search-form button:hover {
  background-color: #004e30;
}

.example-text {
  color: #666;
  font-size: 14px;
  font-style: italic;
}

.services-detailed {
  padding: 80px 0;
}

.service-item {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--accent-color);
}

.service-item:last-child {
  border-bottom: none;
}

.service-item h3 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 15px;
}

.service-item p {
  font-size: 16px;
  line-height: 1.8;
}

.contact-cta {
  background-color: var(--light-color);
  text-align: center;
  padding: 60px 0;
  margin-top: 30px;
}

.contact-cta h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 28px;
}

.contact-cta p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #004e30;
}

/* Scroll Animasyonu */
.scroll-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animation.scrolled {
  opacity: 1;
  transform: translateY(0);
}

/* Footer Stillleri */
footer {
  background-color: var(--footer-color);
  color: var(--secondary-color);
  padding: 50px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 0 0 calc(33.33% - 20px);
  margin-bottom: 20px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--accent-color);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: var(--secondary-color);
  font-size: 20px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer-bottom .bold {
  font-weight: 700;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
  .header-inner {
    flex-wrap: wrap;
  }
  
  .logo {
    margin-right: auto;
  }
  
  .header-right {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .header-inner {
    flex-wrap: nowrap;
  }
  
  .header-right {
    width: auto;
    margin-top: 0;
    display: flex;
    align-items: center;
  }
  
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    flex-direction: column;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  
  nav ul.active {
    display: flex;
  }
  
  nav ul li {
    margin: 0;
  }
  
  nav ul li a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid var(--accent-color);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .search-form {
    flex-direction: column;
  }
  
  .search-form input {
    width: 100%;
  }
  
  .search-form button {
    width: 100%;
    padding: 15px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .footer-column {
    flex: 0 0 100%;
  }
  
  .footer-column:nth-child(2) {
    display: none;
  }
  
  /* Projeler sayfası için özel stil - Contact Us ve sosyal butonları yan yana */
  html[lang="tr"] body:has(section.properties-coming-soon) .contact-options,
  html[lang="en"] body:has(section.properties-coming-soon) .contact-options {
    flex-direction: row;
    gap: 10px;
  }
}

/* Referanslar Bölümü */
.references {
  background-color: var(--light-color);
  padding: 60px 0;
  border-top: 1px solid var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.reference-item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
  background-color: white;
  height: 120px;
  transition: all 0.3s ease;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.reference-item img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

.reference-item:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .references-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .references-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .references-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Blog Coming Soon */
.blog-coming-soon {
  padding: 80px 0;
}

.blog-coming-soon .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.coming-soon-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.coming-soon-icon {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: block;
}

.coming-soon-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.coming-soon-content p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.6;
}

.social-follow {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--accent-color);
}

.social-follow p {
  margin-bottom: 15px;
  font-size: 16px;
}

.social-follow .social-links {
  display: flex;
  gap: 15px;
}

.social-follow .social-links a {
  background-color: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.social-follow .social-links a:hover {
  transform: scale(1.1);
  background-color: #004e30;
}

.coming-soon-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: center;
}

.coming-soon-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .blog-coming-soon .container {
    justify-content: center;
    text-align: center;
  }
  
  .coming-soon-icon {
    margin: 0 auto 20px;
  }
  
  .social-follow .social-links {
    justify-content: center;
  }
}

/* Properties Coming Soon */
.properties-coming-soon {
  padding: 80px 0;
}

.properties-coming-soon .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.properties-coming-soon .coming-soon-content,
.properties-coming-soon .coming-soon-image {
  flex: 1;
  min-width: 300px;
}

.properties-coming-soon .coming-soon-content {
  max-width: 600px;
}

.properties-coming-soon .coming-soon-image {
  max-width: 500px;
  text-align: center;
}

.properties-coming-soon .coming-soon-image img {
  max-width: 100%;
  height: auto;
}

.contact-options {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}

.contact-options .social-links {
  display: flex;
  gap: 10px;
}

@media (max-width: 992px) {
  .properties-coming-soon .container {
    justify-content: center;
    text-align: center;
  }
  
  /* .contact-options {
    flex-direction: column;
    align-items: center;
  } */
}

/* Team Page Styles */
.team-section {
  padding: 80px 0;
}

.team-intro {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.team-members {
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.member-image {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.member-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.member-info {
  flex: 2;
  min-width: 300px;
  padding: 30px;
}

.member-name {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.member-title {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
  font-weight: 500;
}

.member-bio {
  margin-bottom: 30px;
}

.member-bio p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.member-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.member-email {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.member-email:hover {
  color: #004e30;
}

.member-social {
  display: flex;
  gap: 15px;
}

.member-social a {
  color: var(--primary-color);
  font-size: 18px;
  transition: color 0.3s;
}

.member-social a:hover {
  color: #004e30;
}

@media (max-width: 768px) {
  .team-member {
    flex-direction: column;
  }
  
  .member-image {
    max-width: 100%;
  }
  
  .member-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2,
.contact-form-container h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 24px;
}

.info-item {
  display: flex;
  margin-bottom: 30px;
}

.info-item i {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 20px;
  width: 30px;
  text-align: center;
}

.info-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.info-item p {
  color: #666;
}

.social-links-contact {
  margin-top: 40px;
}

.social-links-contact h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.social-links-contact .social-links a {
  color: var(--primary-color);
  font-size: 24px;
}

.social-links-contact .social-links a:hover {
  color: #004e30;
}

.contact-form-container {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.map-section {
  padding: 60px 0 80px;
  background-color: var(--light-color);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form-container {
    order: 1;
  }
}

/* Temel hizmet satırı stili - normal sıralama */
.service-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
  gap: 0;
  padding: 40px;
  border-radius: 0;
  width: 100%;
  background-color: #FFFFFF;
}

.service-row:first-child {
  background-color: #FFFFFF;
  border-bottom: 1px solid #006039;
}

.service-row:nth-child(2) {
  background-color: #FFFFFF;
}

/* İkinci hizmet satırı için açık yeşil arka plan */
.service-row:nth-child(2n+4) {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  min-height: 300px;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  flex: 1;
  padding: 20px;
}

.service-content h3 {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.service-content h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.service-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #555;
  font-size: 17px;
}

.service-content h4 {
  color: var(--primary-color);
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 12px;
  font-weight: 600;
}

.service-content p + h4 {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .service-row {
    flex-direction: column;
    padding: 25px;
  }
  
  .service-row:nth-child(even) {
    flex-direction: column;
  }
  
  .service-image {
    width: 100%;
    min-height: 200px;
    margin-bottom: 20px;
  }
  
  .service-content {
    width: 100%;
  }
}

/* Akordeon Menü Stilleri */
.accordion {
  margin-top: 25px;
}

.accordion-item {
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
}

.accordion-header h4 {
  margin: 0;
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

.accordion-icon {
  font-size: 24px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  font-weight: bold;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-right: 10px;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

#stratejik-kiralama, #portfoy-yonetimi {
  scroll-margin-top: 80px;
}

/* İletişim Sayfası İki Kolonlu Düzen */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.contact-info-column h2,
.map-column h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-links-contact {
    margin-top: 40px;
}

.social-links-contact h3 {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* index.html ve en/index.html sayfaları için services bölümüne özel boşluk ayarı */
.homepage .services {
    padding-top: 80px;
    padding-bottom: 100px;
} 