@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playwrite+TZ+Guides&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playwrite+TZ+Guides&display=swap');



html, body {
  width: 100vw !important;
  height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
  max-width: none !important;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body{
    margin: 0;
    padding: 0;
    font-family: "Kanit", sans-serif;
    font-weight: 200;
    font-style: normal;
    background: #1a1a1a;
    margin-bottom: 0 !important;
}

img{
    width: 100%;
}

section{
    padding: 100px 0;
    background: #1a1a1a;
}

.section_title{
    margin-bottom: 30px;
}

.section_title h2{
    position: relative;
    text-align: center;
    color: white;
    font-size: 30px;
    transition: all .5s ease-in-out;
}

.section_title h2:hover{
    background-color: #ff6600;
}

/* HEADER */

.sticky-header {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  min-height: 80px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.sticky-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 133, 51, 0.05), transparent);
  transition: left 0.8s ease;
}

.sticky-header:hover::before {
  left: 100%;
}

.sticky-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: 90%;
  max-width: 1400px;
  padding: 25px 0;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.logo-tagline {
  color: white;
  font-size: 0.8rem;
  margin: 2px 0 0 0;
  font-weight: 300;
  opacity: 0.9;
}

.nav_links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex: 1;
  margin: 0 40px;
}

.nav_links li {
  position: relative;
}

.nav_links li a {
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: fit-content;
}

.nav_links li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 133, 51, 0.15), transparent);
  transition: left 0.5s ease;
}

.nav_links li a:hover::before {
  left: 100%;
}

.nav_links li a:hover {
  color: #ff8533;
  background: rgba(255, 133, 51, 0.05);
  box-shadow: 0 2px 10px rgba(255, 133, 51, 0.1);
}

.social-icons {
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 20px;
  gap: 12px;
}

.social-icon {
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  color: #ff8533;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}



.logo h2 a{
    color: white;
    text-transform: uppercase;
}
#video {
    margin: 0;
    padding: 0;
    position: relative; /* Konumlandırmayı netleştirir */
}
#video video{
    height: 100vh;
    width: 100%;
    background-position: absolute;
    z-index: 10;
    object-fit: cover;
    display: block; /* Varsayılan boşlukları engeller */
    margin: 0; /* Varsayılan margin sıfırlanır */
    padding: 0;
}

#video .overlay-text h2 {
  color: rgb(233, 131, 48);
  position: absolute;
  top: 70%; /* Yükseklik hizalama */
  left: 5%; /* Soldan uzaklık */
  transform: translateY(-50%); /* Yatay hizalama olmadan dikey hizala */
  font-size: 32px; /* Yazı boyutu */
  font-family: 'Montserrat', sans-serif;
  background-color: rgba(0, 0, 0, 0.5); /* Arka plan */
  padding: 10px;
  border-radius: 5px;
  text-align: left; /* Metni sola hizala */
  width: 60%; /* Metnin genişliğini sınırla */
}

#video .overlay-text p {
  position: absolute;
  top: 80%; /* H2'nin altına hizala */
  left: 5%; /* Soldan uzaklık */
  transform: translateY(-50%); /* Yatay hizalama olmadan dikey hizala */
  color: white; /* Yazı rengi */
  font-size: 18px; /* Yazı boyutu */
  font-family: 'Montserrat', sans-serif;
  background-color: rgba(0, 0, 0, 0.5); /* Arka plan */
  padding: 10px;
  border-radius: 5px;
  text-align: left; /* Metni sola hizala */
  width: 60%; /* Metnin genişliğini sınırla */
  line-height: 1.5; /* Satır yüksekliği */
  word-wrap: break-word; /* Uzun kelimeleri alt satıra geçir */
}




.video-container,
.content-container {
    margin: 0; /* Dış boşluğu sıfırla */
    padding: 0; /* İç boşluğu sıfırla */
}

.logo img {
    height: 60px; /* Logonun yüksekliğini ayarlayın */
    width: auto; /* Oranını koruyarak genişliği ayarlayın */
    object-fit: contain; /* Logonun taşmasını önler */
}


/* ANASAYFA2 */

#haypark-konutlari {
  background-color: #122e44;
  color: white;
  padding: 0;
  margin: 0;
  position: relative;
  height: 600px; /* Yüksekliği sabit bir değere ayarla */
  overflow: hidden;
}

#haypark-konutlari .container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Konteynerin yüksekliğini tam yap */
  display: flex;
  align-items: center;
  justify-content: center;
}

#haypark-konutlari .slider {
  width: 100%;
  height: 100%; /* Slider yüksekliği sabit */
  position: relative;
}

#haypark-konutlari .slider img {
  width: 100%;
  height: 100%; /* Görseli slider alanına sığdır */
  object-fit: cover; /* Görselin kesilmesini sağla, alanı doldur */
}

#haypark-konutlari .buton {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 10;
}

#haypark-konutlari .dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

#haypark-konutlari .dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
}

#haypark-konutlari .dot.active {
  background: rgba(255, 255, 255, 1);
}



#doguyla-ic-ice {
    background-color: #fff;
    color: #295F52;
    padding: 40px 0;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
  }
  
  #doguyla-ic-ice .container {
    max-width: 1200px; /* Konteyner genişliği */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 sütun düzeni */
    grid-gap: 30px; /* Sütunlar arası boşluk */
}

#doguyla-ic-ice .box {
    padding: 20px;
    border-radius: 8px; /* Köşeleri yuvarlama */
    text-align: center; /* Metni ortalama */
    max-width: 300px; /* Kutuların genişliği */
    margin: 0 auto; /* Kutuları ortalama */
}

#doguyla-ic-ice h3 {
    font-size: 16px; /* Başlık boyutu */
    margin-bottom: 12px;
    color: #295F52;
}

#doguyla-ic-ice p {
    font-size: 14px; /* Paragraf boyutu */
    line-height: 1.4; /* Satır aralığı */
    margin: 0;
}

#doguyla-ic-ice h2 {
  text-align: center; /* Başlığı ortalar */
  font-size: 48px; /* Başlık boyutunu ayarlar */
  margin-bottom: 15px; /* Alt boşluk ekler */
  grid-column: 1 / -1; /* Grid'in tüm genişliğini kaplar */
  font-family: "Kanit", serif;
  font-weight: 250;
  font-style: normal;
}

#doguyla-ic-ice .icon {
  width: 50px; /* Resim genişliği */
  height: 50px; /* Resim yüksekliği */
  margin-bottom: 15px; /* Metinle arasındaki boşluk */
}

.doguyla-ic-ice-yasam,
.ozel-mimarisi,
.yasam-alanlari,
.kaliteli-yasam {
    background-color: #0c2538;
    padding: 32px;
    border-radius: 8px;
  }

  #contact {
    background: #295F52;
    border-top: none;
    color: white; /* Yazı rengi */
    padding: 40px 0; /* Üst ve alt boşluk */
    display: flex; /* Esnek düzen */
    justify-content: center; /* İçeriği ortala */
    align-items: center; /* Dikey hizalama */
}

#contact .navbar {
    max-width: 1200px; /* İçeriğin genişliği */
    margin: 0 auto; /* Ortaya hizalama */
    display: flex; /* Esnek düzen */
    justify-content: space-between; /* Sağ ve sol elemanların ayrılması */
    align-items: center; /* Dikey hizalama */
    gap: 20px; /* Elemanlar arası boşluk */
}

#contact .logo img {
    width: auto; /* Genişlik otomatik ayarlanır */
    height: 120px; /* Yükseklik artırıldı */
}

#contact .contact-info {
    text-align: left; /* Sol hizalama */
    display: flex; /* Esnek düzen */
    flex-direction: column; /* Elemanları dikey hizala */
    gap: 10px; /* Elemanlar arasına boşluk */
}

#contact .contact-info a, #contact .contact-info p {
    color: white; /* Yazı rengi */
    text-decoration: none; /* Alt çizgiyi kaldır */
    font-size: 16px; /* Yazı boyutu */
    display: flex; /* İkon ve metni yan yana hizala */
    align-items: center; /* Dikey hizalama */
    gap: 10px; /* İkon ile metin arasına boşluk */
}

#contact .contact-info i {
    font-size: 18px; /* İkon boyutu */
    margin-right: 8px; /* İkon ve metin arası boşluk */
}

  

.new-footer {
  background: #000000;
  color: white;
  position: relative;
  overflow: hidden;
}

.new-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 102, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 102, 0, 0.08) 0%, transparent 50%);
  animation: footerFloat 25s ease-in-out infinite;
  pointer-events: none;
}

@keyframes footerFloat {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.new-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
  pointer-events: none;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  padding: 60px 20px 40px;
  position: relative;
  z-index: 1;
}

.footer-main::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 32%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.footer-main::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 68%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-img img {
  max-width: 200px;
  height: auto;
  margin-bottom: 15px;
}

.footer-tagline {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #e5e7eb;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-description p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e5e7eb;
  max-width: 400px;
  text-align: center;
  margin: 0 auto;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.contact-item i {
  width: 20px;
  color: #ff6600;
}

.footer-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 16px;
  border-radius: 8px;
  overflow: hidden;
}

.footer-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.3), transparent);
  transition: left 0.5s ease;
}

.footer-nav a:hover::before {
  left: 100%;
}

.footer-nav a:hover {
  color: #ff6600;
  background: rgba(255, 102, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #d1d5db;
}

.footer-bottom a {
  color: #ff6600;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}



/* Floating Excavator */
.floating-excavator {
  position: absolute;
  left: -115px;
  top: -80px;
  z-index: 2;
  animation: excavatorFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2));
}

.excavator-image {
  width: 220px;
  height: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
  /* Normal yön - sola baksın */
}

.excavator-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.3) 0%, rgba(255, 102, 0, 0.1) 40%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes excavatorFloat {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) rotate(0deg);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2));
  }
  25% { 
    transform: translateY(-5px) translateX(5px) rotate(1deg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  }
  50% { 
    transform: translateY(-10px) translateX(0px) rotate(0deg);
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.25));
  }
  75% { 
    transform: translateY(-5px) translateX(-5px) rotate(-1deg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  }
}

@keyframes glowPulse {
  0%, 100% { 
    opacity: 0.6; 
    transform: translate(-50%, -50%) scale(1);
  }
  50% { 
    opacity: 0.9; 
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Hover efekti */
.innovation-section:hover .excavator-image {
  opacity: 1;
  transform: scale(1.1);
}

.innovation-section:hover .excavator-glow {
  opacity: 1;
  animation-duration: 2s;
}

/* Mobile'da gizle */
@media (max-width: 1024px) {
  .floating-excavator {
    display: none;
  }
}

/* Innovation Section */
.innovation-section {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.innovation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.innovation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}



@keyframes billboardGlow {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.innovation-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.decoration-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff6600, transparent);
  margin: 0 20px;
}

.decoration-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6600, #cc5200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6600;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3); }
  50% { transform: scale(1.1); box-shadow: 0 12px 35px rgba(255, 102, 0, 0.5); }
}

.subtitle-accent {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.accent-dot {
  width: 8px;
  height: 8px;
  background: #ff6600;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

.accent-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.accent-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.innovation-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ff6600;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.innovation-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.innovation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.innovation-card {
  background: #2a2a2a;
  border-radius: 18px;
  padding: 35px 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.construction-visual {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
}

.construction-icon {
  font-size: 1.2rem;
  color: rgba(255, 102, 0, 0.3);
  margin-left: 5px;
  animation: constructionFloat 4s ease-in-out infinite;
}

.construction-icon-small {
  font-size: 0.8rem;
  color: #ff6600;
  margin-left: 3px;
  animation: constructionFloat 4s ease-in-out infinite 0.5s;
}

.featured-visual .construction-icon,
.featured-visual .construction-icon-small {
  color: rgba(255, 255, 255, 0.2);
}

@keyframes constructionFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.15; }
  25% { transform: translateY(-3px) rotate(2deg); opacity: 0.25; }
  50% { transform: translateY(-2px) rotate(-1deg); opacity: 0.2; }
  75% { transform: translateY(-4px) rotate(1deg); opacity: 0.3; }
}

.innovation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6600, #ff8533);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.innovation-card:hover::before {
  transform: scaleX(1);
}

.innovation-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.innovation-card.featured {
  background: linear-gradient(135deg, #ff6600, #cc5200);
  color: white;
}

.innovation-card.featured h3,
.innovation-card.featured p {
  color: white;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6600, #cc5200);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
  color: white;
}

.innovation-card.featured .card-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.innovation-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ff6600;
  margin-bottom: 15px;
}

.innovation-card p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

.card-stats {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6600;
}

.innovation-card.featured .stat {
  color: white;
}

.stat-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.innovation-card.featured .stat-label {
  color: rgba(255, 255, 255, 0.8);
}

.innovation-bottom-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-top: 40px;
  padding: 0 20px;
}

.discover-projects {
  flex: 1;
  max-width: 500px;
}

.discover-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff6600;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.discover-content p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.discover-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #ff6600, #cc5200);
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.discover-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
  color: white;
}

.button-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.discover-button:hover .button-glow {
  left: 100%;
}

.discover-button i {
  transition: transform 0.3s ease;
}

.discover-button:hover i {
  transform: translateX(5px);
}

.billboard-showcase {
  flex: 0 0 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.billboard-container {
  position: relative;
  width: 100%;
  max-width: 350px;
  animation: billboardFloat 4s ease-in-out infinite;
}

.billboard-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  transition: all 0.4s ease;
}

.billboard-container:hover .billboard-image {
  transform: translateY(-10px) scale(1.05);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
}

.billboard-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.billboard-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  border-radius: 50%;
  animation: particleFloat 3s ease-in-out infinite;
}

.billboard-particles .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.billboard-particles .particle:nth-child(2) { top: 60%; right: 15%; animation-delay: 1s; }
.billboard-particles .particle:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 2s; }
.billboard-particles .particle:nth-child(4) { top: 40%; right: 25%; animation-delay: 0.5s; }
.billboard-particles .particle:nth-child(5) { bottom: 60%; right: 10%; animation-delay: 1.5s; }

.billboard-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: billboardGlow 3s ease-in-out infinite alternate;
}

@keyframes billboardFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
  50% { transform: translateY(-15px) scale(1.2); opacity: 1; }
}



.cta-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

.floating-elements {
  position: relative;
  width: 200px;
  height: 200px;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6600, #cc5200);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 50%;
  right: 0;
  animation-delay: 1s;
}

.floating-icon:nth-child(3) {
  bottom: 0;
  left: 50%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Innovation Section Responsive */
@media (max-width: 900px) {
  .innovation-section {
    padding: 80px 0;
  }
  
  .innovation-title {
    font-size: 2.5rem;
  }
  
  .innovation-subtitle {
    font-size: 1.1rem;
  }
  

  
  .innovation-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 60px;
  }
  
  .innovation-card {
    padding: 30px 25px;
  }
  
  .innovation-bottom-section {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .discover-projects {
    max-width: 100%;
  }
  
  .billboard-showcase {
    flex: none;
    order: -1;
  }
  
  .billboard-container {
    max-width: 280px;
  }
  
  .discover-content h3 {
    font-size: 1.8rem;
  }
  
  .discover-content p {
    font-size: 1rem;
  }
  
  .discover-button {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .innovation-section {
    padding: 60px 0;
  }
  
  .innovation-title {
    font-size: 2rem;
  }
  
  .innovation-subtitle {
    font-size: 1rem;
  }
  
  .innovation-card {
    padding: 25px 20px;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .innovation-card h3 {
    font-size: 1.3rem;
  }
  
  .stat {
    font-size: 1.5rem;
  }
  
  .innovation-bottom-section {
    padding: 0 15px;
  }
  
  .discover-content h3 {
    font-size: 1.5rem;
  }
  
  .floating-elements {
    width: 150px;
    height: 150px;
  }
  
  .floating-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Page Hero Section */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(255, 102, 0, 0.3));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6600;
  text-align: center;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #cccccc;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.7;
  text-wrap: balance;
}

/* About Section */
.about-section {
  background: #1a1a1a;
  padding: 100px 0;
}

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

.about-header {
  text-align: center;
  margin-bottom: 80px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 25px;
  text-align: justify;
  hyphens: auto;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6600;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

/* Mission Vision Section */
.mission-vision-section {
  padding: 100px 0;
  position: relative;
  min-height: 400px;
  z-index: 0;
  overflow: hidden;
}

.futuristic-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 102, 0, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 102, 0, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.futuristic-element {
  position: absolute;
  border: 2px solid rgba(255, 102, 0, 0.3);
  border-radius: 50%;
  animation: elementFloat 8s ease-in-out infinite;
}

.element-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.2) 0%, transparent 70%);
}

.element-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.2) 0%, transparent 70%);
  border-color: rgba(147, 51, 234, 0.3);
}

.element-3 {
  width: 60px;
  height: 60px;
  top: 30%;
  right: 30%;
  animation-delay: 4s;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  border-color: rgba(16, 185, 129, 0.3);
}

.element-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 6s;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  border-color: rgba(245, 158, 11, 0.3);
}

.element-5 {
  width: 70px;
  height: 70px;
  top: 70%;
  left: 60%;
  animation-delay: 1s;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, transparent 70%);
  border-color: rgba(239, 68, 68, 0.3);
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.8) 0%, 
    rgba(255, 102, 0, 0.6) 50%, 
    rgba(255, 102, 0, 0.4) 100%);
  z-index: 2;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

@keyframes elementFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  33% {
    transform: translateY(-20px) rotate(120deg) scale(1.1);
  }
  66% {
    transform: translateY(10px) rotate(240deg) scale(0.9);
  }
}

.mv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 3;
}

.mv-card {
  background: #2a2a2a;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6600, #cc5200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 2rem;
  color: white;
}

.mv-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ff6600;
  margin-bottom: 20px;
}

.mv-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #cccccc;
}

/* Certificates Section */
.certificates-section {
  background: #1a1a1a;
  padding: 100px 0;
}

.certificates-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.certificates-header {
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.certificate-item {
  position: relative;
  background: #2a2a2a;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.certificate-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.certificate-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.certificate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.certificate-item:hover .certificate-image img {
  transform: scale(1.1);
}

.certificate-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(255, 102, 0, 0.9));
  color: white;
  padding: 25px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.certificate-item:hover .certificate-overlay {
  transform: translateY(0);
}

.certificate-overlay h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.certificate-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* Projects Section */
.projects-section {
  background: #1a1a1a;
  padding: 100px 0;
}

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

.projects-header {
  text-align: center;
  margin-bottom: 80px;
}

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

.project-card {
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #1a1a1a !important;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  background: #1a1a1a;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(255, 102, 0, 0.8));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-category {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 20px;
  align-self: flex-start;
}

.project-location {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}

.project-content {
  padding: 30px;
  background: #1a1a1a;
}

.project-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ff6600;
  margin-bottom: 15px;
}

.project-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

.project-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #cccccc;
  background: #333333;
  padding: 8px 12px;
  border-radius: 20px;
}

.feature i {
  color: #ff6600;
}

.project-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ff6600;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.project-button i {
  transition: transform 0.3s ease;
}

.project-card:hover .project-button i {
  transform: translateX(5px);
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  padding: 80px 0;
  color: white;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Contact Section */
.contact-section {
  background: #1a1a1a;
  padding: 100px 0;
}

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

.contact-header {
  text-align: center;
  margin-bottom: 80px;
}

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

.contact-info-card {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.contact-info-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-info-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ff6600;
  margin-bottom: 10px;
}

.contact-info-header p {
  color: #cccccc;
  font-size: 1rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6600, #cc5200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ff6600;
  margin-bottom: 8px;
}

.contact-details p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 5px;
}

.contact-form-card {
  background: #2a2a2a;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ff6600;
  margin-bottom: 10px;
}

.form-header p {
  color: #cccccc;
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  position: relative;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 15px;
  color: #64748b;
  font-size: 1.1rem;
  z-index: 2;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 15px 15px 15px 50px;
  border: 2px solid #444;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #333;
  color: #ffffff;
}

.input-wrapper textarea {
  padding-left: 50px;
  resize: vertical;
  min-height: 120px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: #ff6600;
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff6600, #cc5200);
  color: white;
  padding: 18px 35px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

/* Map Section */
.map-section {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 80px 0;
}

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

.map-header {
  text-align: center;
  margin-bottom: 50px;
}

.map-header h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #ff6600;
  margin-bottom: 10px;
}

.map-header p {
  color: #cccccc;
  font-size: 1.1rem;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for New Pages */
@media (max-width: 900px) {
  .page-hero {
    height: 50vh;
    min-height: 350px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mv-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .mv-card {
    padding: 40px 30px;
  }
  
  .certificates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .certificate-item {
    height: 220px;
  }
  
  .certificate-image {
    height: 220px;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 40px 30px;
  }
}

@media (max-width: 600px) {
  .page-hero {
    height: 40vh;
    min-height: 300px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
  }
  
  .about-section,
  .mission-vision-section,
  .company-values,
  .projects-section,
  .contact-section {
    padding: 60px 0;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .certificates-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .certificate-item {
    height: 200px;
  }
  
  .certificate-image {
    height: 200px;
  }
  
  .certificate-overlay {
    padding: 20px 15px;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .mv-card {
    padding: 30px 20px;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 30px 20px;
  }
  
  .project-card {
    margin: 0 10px;
  }
  
  .project-content {
    padding: 20px;
  }
  
  .project-features {
    flex-direction: column;
    gap: 10px;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .contact-icon {
    align-self: center;
  }
}

/* Values Section */
.values-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff6600" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ff6600" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ff6600" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ff6600" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ff6600" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.values-header {
  text-align: center;
  margin-bottom: 80px;
}

.values-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff6600, #cc5200);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
  animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.values-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.5rem;
  margin: 0 auto 15px;
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 35px rgba(255, 102, 0, 0.4);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff6600;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: #ccc;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.values-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ff6600;
  margin-bottom: 20px;
  position: relative;
}

.values-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6600, #cc5200);
  border-radius: 2px;
}

.values-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.values-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.values-visual {
  position: relative;
}

.visual-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.construction-equipment {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.equipment-icon {
  font-size: 1.8rem;
  color: rgba(255, 102, 0, 0.3);
  background: rgba(0, 0, 0, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: equipmentPulse 6s ease-in-out infinite;
}

.equipment-icon:nth-child(1) { animation-delay: 0s; }
.equipment-icon:nth-child(2) { animation-delay: 2s; }
.equipment-icon:nth-child(3) { animation-delay: 4s; }

.equipment-icon:hover {
  color: #ff6600;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
}

@keyframes equipmentPulse {
  0%, 100% { 
    transform: scale(1); 
    color: rgba(255, 102, 0, 0.3); 
  }
  50% { 
    transform: scale(1.05); 
    color: rgba(255, 102, 0, 0.6); 
  }
}

.values-image-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.values-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.values-slide.active {
  opacity: 1;
}

.values-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.visual-container:hover .values-slide img {
  transform: scale(1.02);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 102, 0, 0.8), rgba(255, 140, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.visual-container:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.overlay-content span {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card i {
  color: #ff6600;
  font-size: 1.2rem;
}

.floating-card span {
  color: #ff6600;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-1 {
  top: 20%;
  left: -20px;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: -20px;
  animation-delay: 2s;
}

.card-3 {
  bottom: 20%;
  left: 10%;
  animation-delay: 4s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) rotate(2deg);
  }
  66% {
    transform: translateY(10px) rotate(-2deg);
  }
}

.values-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.value-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 30px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 102, 0, 0.2);
}

.value-item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-color: #ff6600;
}

.value-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6600, #cc5200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.value-content h3 {
  color: #ff6600;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-content p {
  color: #cccccc;
  line-height: 1.7;
  font-size: 1rem;
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px 30px;
  }
  
  .footer-logo-content {
    align-items: center;
    text-align: center;
  }
  
  .footer-description p {
    text-align: center;
    max-width: 100%;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-nav {
    gap: 20px;
    padding: 20px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-main {
    padding: 30px 15px 20px;
  }
  
  .footer-nav {
    gap: 15px;
    padding: 15px;
  }
  
  .footer-nav a {
    font-size: 0.8rem;
  }
  
  .footer-social {
    gap: 8px;
  }
  
  .footer-social .social-icon {
    width: 35px;
    height: 35px;
  }
}

/* Responsive Values Section */
@media (max-width: 900px) {
  .values-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }
  
  .value-block {
    padding: 30px 20px;
  }
  
  .value-icon {
    width: 70px;
    height: 70px;
  }
  
  .value-icon i {
    font-size: 1.8rem;
  }
  
  .value-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  .values-section {
    padding: 60px 0;
  }
  
  .value-block {
    padding: 25px 15px;
  }
  
  .value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .value-icon i {
    font-size: 1.5rem;
  }
  
  .value-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .value-description {
    font-size: 0.9rem;
  }
}

  /* kurumsal */
  #kurumsal {
    margin: 0;
    padding: 0;
    position: relative; /* Konumlandırmayı netleştirir */
}
#kurumsal img{
    width: 100%;
    z-index: 10;
    object-fit: cover;
    display: block; /* Varsayılan boşlukları engeller */
    margin: 0; /* Varsayılan margin sıfırlanır */
    padding: 0;
}

.video-container,
.content-container {
    margin: 0; /* Dış boşluğu sıfırla */
    padding: 0; /* İç boşluğu sıfırla */
}

/* projelerimiz */

#projelerimiz {
    margin: 0;
    padding: 0;
    position: relative; /* Konumlandırmayı netleştirir */
}
#projelerimiz img{
    width: 100%;
    z-index: 10;
    object-fit: cover;
    display: block; /* Varsayılan boşlukları engeller */
    margin: 0; /* Varsayılan margin sıfırlanır */
    padding: 0;
}

/* iletisim */

#iletisim {
    margin: 0;
    padding: 0;
    position: relative; /* Konumlandırmayı netleştirir */
}
#iletisim img{
    width: 100%;
    z-index: 10;
    object-fit: cover;
    display: block; /* Varsayılan boşlukları engeller */
    margin: 0; /* Varsayılan margin sıfırlanır */
    padding: 0;
}

#bizeulas {
    background-color: #122e44;
    color: white;
    padding: 80px 0;
  }
  
#bizeulas .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
  }
  
#bizeulas h2 {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
  }
  
#bizeulas h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #ff6600;
  }
  
#bizeulas p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
  }

/*kurumsal */

#hakkimizda {
    background-color: #122e44; /* Arka plan rengi */
    color: white; /* Yazı rengi */
    padding: 30px 10px; /* Yukarı ve aşağı boşluk, sağ-sol için boşluk azaltıldı */
}

#hakkimizda .container {
    max-width: 1000px; /* Konteyner genişliği azaltıldı */
    margin: 0 auto; /* Ortalamak için */
    display: flex; /* Eleman düzeni için flex kullanıldı */
    flex-direction: column; /* Elemanları dikey hizala */
    align-items: center; /* İçeriği ortala */
}

#hakkimizda h2 {
    text-align: center; /* Başlığı ortala */
    font-size: 32px; /* Yazı boyutu */
    margin-bottom: 30px; /* Alt boşluk */
}

#hakkimizda h3 {
    font-size: 24px; /* Başlık boyutu */
    margin-bottom: 16px; /* Alt boşluk */
    color: #ff6600; /* Farklı bir vurgu rengi */
}

#hakkimizda p {
    font-size: 18px; /* Yazı boyutu */
    line-height: 1.8; /* Satır yüksekliği */
    text-align: justify; /* Yazıyı her iki tarafa yasla */
    max-width: 900px; /* Yazının genişliği biraz azaltıldı */
    margin: 0 auto; /* Ortala */
}

.kutu {
  background-color: #183d5a; /* Kutu arka planı */
  border-radius: 12px; /* Köşeleri yumuşat */
  padding: 30px;
  margin: 20px 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* Hafif gölge */
}

.kutu:hover {
  background-color: #255b80; /* Üzerine gelince renk değişimi */
  transform: scale(1.02); /* Hafif büyüme efekti */
}



#projeler .container {
    max-width: 1000px; /* Konteyner genişliği azaltıldı */
    margin: 0 auto; /* Ortalamak için */
    flex-wrap: wrap;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    align-items: center;
  }
  
  #projeler  .card {
    flex: 1 1 calc(25% - 20px); /* Eni %25 olarak ayarlanır (4 tane yan yana) */
    max-width: calc(25% - 20px); /* Maksimum genişlik aynı tutulur */
    box-sizing: border-box; /* Padding ve border genişliğe dahil edilir */
    text-align: center; /* İçerik ortalanır */
    width: 300px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
  
  #projeler .card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
  }
  
  #projeler  .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  #projeler  .card-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 18px;
  }

#projeler .projelertext h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
    color: white;
}

#haypark-konutlari .content {
    display: flex;
    justify-content: center;
    align-items: center;
}

#haypark-konutlari .slider {
  width: 800px;
  height: 500px;
  position: relative;
  margin: auto;
}

#haypark-konutlari .slider img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
}

.buton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.buton i {
  display: flex; /* İçeriği esnek bir düzenle hizala */
  align-items: center; /* Dikeyde ortala */
  justify-content: center; /* Yatayda ortala */
  width: 50px; /* Butonun genişliği */
  height: 50px; /* Butonun yüksekliği */
  background-color: rgba(0, 0, 0, 0.5); /* Arka plan rengi */
  color: white; /* İkon rengi */
  border-radius: 5px; /* Köşeleri yuvarlak yapmak için */
  cursor: pointer; /* El işareti göstermek için */
}

.buton i:hover {
  color: gray; /* Hover durumunda ikon rengi */
  background-color: rgba(0, 0, 0, 0.5) /* Hover durumunda arka plan rengi */
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.dots .dot {
  width: 12px !important;
  height: 12px !important;
  margin: 0 6px !important;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dots .dot.active {
  background-color: #ff6600;
}
#bizeulas .message-form {
  width: 75%;
  margin-left: 75px;
}

#bizeulas .message-form .input-box {
  height: 50px;
  width: 100%;
  margin: 12px 0;
}

.input-box input,
.input-box textarea{
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
  color: #fff;
}

.message-box{
  min-height: 110px;

}

.input-box textarea{
  padding-top: 6px;

}

.message-form .button {
  display: inline-block;
  margin-top: 12px;
}

.button input{
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button input:hover{
  background: #ff6600;

}

/* PROJELER */

#omerli .container {
  max-width: 1000px; /* Konteyner genişliği azaltıldı */
  margin: 0 auto; /* Ortalamak için */
  flex-wrap: wrap;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  align-items: center;
}

#omerli  .card {
  flex: 1 1 calc(25% - 20px); /* Eni %25 olarak ayarlanır (4 tane yan yana) */
  max-width: calc(25% - 20px); /* Maksimum genişlik aynı tutulur */
  box-sizing: border-box; /* Padding ve border genişliğe dahil edilir */
  text-align: center; /* İçerik ortalanır */
  width: 300px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#omerli .card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

#omerli  .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#omerli  .card-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 18px;
}

#omerli .projelertext h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 60px;
  color: white;
}



/* Modern Modal Styles */
#imageModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  text-align: center;
  animation: fadeIn 0.3s ease;
}

#imageModal #modalImage {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

#imageModal .modal-content {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

#imageModal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

#imageModal .close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

#imageModal .prev,
#imageModal .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-weight: bold;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  z-index: 10000;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

#imageModal .prev {
  left: 30px;
}

#imageModal .next {
  right: 30px;
}

#imageModal .prev:hover,
#imageModal .next:hover {
  background-color: rgba(30, 58, 138, 0.8);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Modal Styles */
@media (max-width: 900px) {
  #imageModal #modalImage {
    max-width: 95vw;
    max-height: 85vh;
  }

  #imageModal .modal-content {
    max-width: 95%;
    max-height: 85%;
  }
  
  #imageModal .close {
    top: 15px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 30px;
  }
  
  #imageModal .prev,
  #imageModal .next {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  #imageModal .prev {
    left: 20px;
  }
  
  #imageModal .next {
    right: 20px;
  }
}

@media (max-width: 600px) {
  #imageModal #modalImage {
    max-width: 98vw;
    max-height: 80vh;
  }

  #imageModal .modal-content {
    max-width: 98%;
    max-height: 80%;
  }
  
  #imageModal .close {
    top: 10px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 25px;
  }
  
  #imageModal .prev,
  #imageModal .next {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  #imageModal .prev {
    left: 15px;
  }
  
  #imageModal .next {
    right: 15px;
  }
}

/* Tam ekran slider için */
#slider-giris {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: block;
  margin-top: 0;
}

/* Slider Logo Overlay */
.slider-logo-overlay {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 15;
  pointer-events: none;
}

.slider-logo {
  width: 300px;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.slider-fullscreen {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  z-index: 1;
  overflow: hidden;
}
.slider-fullscreen .slider {
  width: 100%;
  height: 100vh;
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  background: #122e44;
  border-radius: 0 !important;
  overflow: hidden;
  box-shadow: none;
  margin-top: 0;
}


.slider-fullscreen .slider img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
  transition: transform 8s ease-in-out;
  animation: kenBurns 15s ease-in-out infinite;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.slider-fullscreen .slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, transparent 50%, rgba(59, 130, 246, 0.05) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 10;
  padding: 80px 60px 60px 60px;
}

.slider-fullscreen .slider-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { opacity: 0.3; transform: translateY(0px); }
  50% { opacity: 0.6; transform: translateY(-10px); }
}

.slider-slogan {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(15px);
  padding: 35px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.3);
  max-width: 420px;
  transform: translateY(20px);
  opacity: 0;
  animation: slideInUp 0.8s ease-out 0.5s forwards;
  position: relative;
  overflow: hidden;
}

.slider-slogan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6600, #ff8533, #ff6600);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.slider-slogan::after {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 8px;
  height: 8px;
  background: #ff8533;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 133, 51, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

.slider-slogan h3 {
  color: #ff6600;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 12px 0;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.8px;
  position: relative;
  z-index: 2;
}

.slider-slogan p {
  color: #475569;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 1;
  }
  50% { 
    transform: scale(1.2);
    opacity: 0.7;
  }
}

/* Hover efekti */
.slider-slogan:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-slogan:hover::before {
  animation-duration: 1.5s;
}

.slider-slogan:hover::after {
  animation-duration: 1s;
}

.slider-fullscreen .dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}
@media (max-width: 900px) {
  #slider-giris, .slider-fullscreen .slider, .slider-fullscreen .slider img {
    height: 100vh;
    min-height: 400px;
  }
  
  .slider-fullscreen .slider-overlay {
    padding: 40px;
  }
  
  .slider-slogan {
    max-width: 320px;
    padding: 25px 30px;
  }
  
  .slider-slogan h3 {
    font-size: 1.5rem;
  }
  
  .slider-slogan p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .slider-fullscreen .slider-overlay {
    padding: 30px 20px;
    align-items: flex-end;
    justify-content: center;
  }
  
  .slider-slogan {
    max-width: 100%;
    padding: 22px 25px;
  }
  
  .slider-slogan h3 {
    font-size: 1.4rem;
  }
  
  .slider-slogan p {
    font-size: 0.95rem;
  }
}

/* Tam ekran video için */
#video-giris {
  position: relative !important;
  width: 100vw !important;
  height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  z-index: 1 !important;
  display: block !important;
  margin-top: 0 !important;
  max-width: none !important;
  left: 0 !important;
  right: 0 !important;
}

.video-fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  position: relative !important;
  display: block !important;
  z-index: 1 !important;
  overflow: hidden !important;
  max-width: none !important;
  left: 0 !important;
  right: 0 !important;
}

.video-fullscreen .video-container {
  width: 100vw !important;
  height: 100vh !important;
  position: relative !important;
  display: block !important;
  background: #122e44 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  box-shadow: none !important;
  margin-top: 0 !important;
  max-width: none !important;
  left: 0 !important;
  right: 0 !important;
}

.video-fullscreen .video-container::after {
  content: '';
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 123, 255, 0.3) !important; /* Saydam mavi katman */
  z-index: 2 !important;
  pointer-events: none !important;
}

.video-fullscreen .video-container video {
  width: 100vw !important;
  height: 100vh !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 0 !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  max-width: none !important;
  right: 0 !important;
  will-change: transform !important;
  transform: translateZ(0) !important;
  backface-visibility: hidden !important;
  perspective: 1000px !important;
}

@media (max-width: 900px) {
  #video-giris, .video-fullscreen, .video-fullscreen .video-container, .video-fullscreen .video-container video {
    height: 100vh;
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  #doguyla-ic-ice .container {
      grid-template-columns: repeat(2, 1fr); /* Mobilde 2 sütun */
  }
}

@media (max-width: 480px) {
  #doguyla-ic-ice .container {
      grid-template-columns: 1fr; /* Küçük ekranlarda 1 sütun */
  }
}

.alt-menu {
  width: 100vw;
  min-height: 320px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
  background: #295F52;
  padding: 48px 0 48px 0;
  margin: 0;
  border-bottom: 4px solid #295F52;
  z-index: 2;
  box-sizing: border-box;
  overflow-x: hidden;
}
.alt-menu-item {
  background: #295F52;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 36px 48px 24px 48px;
  min-width: 180px;
  min-height: 180px;
  max-width: 100%;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  letter-spacing: 1px;
  margin: 0 8px;
  box-sizing: border-box;
}
.alt-menu-icon {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 18px;
}
.alt-menu-item:hover, .alt-menu-item.active {
  background: #ff6600;
  color: #fff;
  transform: translateY(-6px) scale(1.06);
}
@media (max-width: 1200px) {
  .alt-menu {
    gap: 24px;
    padding: 24px 0 16px 0;
    min-height: 140px;
  }
  .alt-menu-item {
    min-width: 120px;
    min-height: 120px;
    font-size: 1.1rem;
    padding: 18px 18px 12px 18px;
    border-radius: 14px;
  }
  .alt-menu-icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 700px) {
  .alt-menu {
    flex-direction: column;
    gap: 12px;
    padding: 8px 0 6px 0;
    min-height: unset;
  }
  .alt-menu-item {
    min-width: 90vw;
    min-height: 70px;
    font-size: 1rem;
    padding: 10px 0 6px 0;
    border-radius: 8px;
  }
  .alt-menu-icon {
    font-size: 1.3rem;
    margin-bottom: 4px;
  }
}

.hizmetler-bolumu {
  width: 100vw;
  background: #1a1a1a;
  padding: 64px 0 64px 0;
  display: flex;
  justify-content: center;
}
.hizmetler-icerik {
  width: 90vw;
  max-width: 1200px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.hizmetler-sol {
  flex: 1 1 50%;
}
.hizmetler-sol h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #ffffff;
}
.hizmetler-listesi {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.hizmetler-listesi li {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hizmetler-listesi i {
  color: #ff6600;
  font-size: 1.1em;
}
.hizmetler-aciklama {
  font-size: 1rem;
  color: #cccccc;
  margin-top: 18px;
}
.hizmetler-sag {
  flex: 1 1 50%;
  min-width: 320px;
}
.accordion {
  background: #2a2a2a;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  padding: 0;
}
.accordion-item {
  border-bottom: 1px solid #444;
}
.accordion-item:last-child {
  border-bottom: none;
}
.accordion-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  padding: 18px 24px;
  cursor: pointer;
  background: #2a2a2a;
  transition: color 0.2s, background 0.2s;
  position: relative;
  display: flex;
  align-items: center;
}
.accordion-title::before {
  content: '+';
  color: #ffffff;
  font-size: 1.3em;
  margin-right: 12px;
  transition: color 0.2s, transform 0.2s;
}
.accordion-item.active .accordion-title {
  color: #ff6600;
  background: #333333;
}
.accordion-item.active .accordion-title::before {
  content: '–';
  color: #ff6600;
  transform: rotate(180deg);
}
.accordion-title:hover {
  color: #ff6600;
}
.accordion-title:hover::before {
  color: #ff6600;
}
.accordion-content {
  display: none;
  padding: 0 24px 18px 48px;
  font-size: 1rem;
  color: #cccccc;
  background: #333333;
  border-radius: 0 0 10px 10px;
}
.accordion-item.active .accordion-content {
  display: block;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .hizmetler-icerik {
    flex-direction: column;
    gap: 32px;
  }
  .hizmetler-sol, .hizmetler-sag {
    min-width: unset;
  }
}

.luxury-villa-collection {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  padding: 40px 0;
  overflow: hidden;
}

/* Global Mouse Trail Effect */
.mouse-trail {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mouse-trail.active {
  opacity: 1;
}

/* Orange background sections - black trail */
.luxury-villa-collection .mouse-trail {
  background: #000000;
}

/* Black background sections - orange trail */
body .mouse-trail {
  background: #ff6600;
}

/* Exclude header from mouse trail */
.sticky-header .mouse-trail {
  display: none;
}

/* Trail particles */
.trail-particle {
  position: fixed;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  opacity: 0.8;
  animation: fadeOut 1s ease-out forwards;
}

.trail-particle.orange {
  background: #ff6600;
}

.trail-particle.black {
  background: #000000;
}

@keyframes fadeOut {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

/* Animated Background */
.villa-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.pattern-1 {
  background: radial-gradient(circle at 20% 80%, #ff6600 0%, transparent 50%);
  animation: patternMove 20s ease-in-out infinite;
}

.pattern-2 {
  background: radial-gradient(circle at 80% 20%, #ff6600 0%, transparent 50%);
  animation: patternMove 25s ease-in-out infinite reverse;
}

.pattern-3 {
  background: radial-gradient(circle at 50% 50%, #ff6600 0%, transparent 70%);
  animation: patternMove 30s ease-in-out infinite;
}

@keyframes patternMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -30px) scale(1.1);
  }
}

/* Floating Architectural Elements */
.architectural-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.arch-element {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.3), rgba(255, 102, 0, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6600;
  font-size: 28px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 102, 0, 0.5);
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
  animation: archFloat 8s ease-in-out infinite;
}

.arch-element:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.arch-element:nth-child(2) {
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

.arch-element:nth-child(3) {
  bottom: 15%;
  left: 15%;
  animation-delay: 4s;
}

.arch-element:nth-child(4) {
  bottom: 25%;
  right: 5%;
  animation-delay: 6s;
}

@keyframes archFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-30px) rotate(180deg) scale(1.1);
  }
}

/* Section Header */
.villa-header {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.villa-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: #000;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.villa-badge i {
  font-size: 16px;
}

.villa-title {
  font-size: 42px;
  font-weight: 800;
  color: #ff6600;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
  line-height: 1.2;
}

.villa-subtitle {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Villa Stats */
.villa-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 30px;
  padding: 30px 0;
}

.stat-item {
  text-align: center;
  padding: 20px 30px;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 102, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #ff6600;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(255, 102, 0, 0.3);
}

.stat-label {
  font-size: 14px;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Villa Showcase Container */
.villa-showcase-container {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 102, 0, 0.1);
}

.villa-sliders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
  align-items: center;
  justify-items: center;
}

.villa-slider-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

/* Villa Slider */
.villa-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 102, 0, 0.3);
  margin-bottom: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Villa Slide */
.villa-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}

.villa-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.villa-slide.prev {
  transform: translateX(-100%);
}

/* Villa Content */
.villa-content {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 20px;
}

/* Villa Image */
.villa-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  background: #000;
}

.villa-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.clickable-image {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.clickable-image:hover {
  transform: scale(1.02);
}

/* Gallery specific clickable styles */
.gallery-item img.clickable-image {
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Image Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

.modal-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #ff6600;
}

.villa-slide.active .villa-image img {
  transform: scale(1.05);
}

/* Villa Overlay */
.villa-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.villa-slide.active .villa-overlay {
  opacity: 1;
  transform: translateY(0);
}

.overlay-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.overlay-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.overlay-specs {
  font-size: 16px;
  color: #ccc;
  margin: 0;
}

/* Villa Details */
.villa-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 102, 0, 0.3);
}

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

.detail-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ff6600;
  margin: 0;
}

.villa-category {
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Villa Features */
.villa-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 102, 0, 0.2);
}

.feature-item i {
  color: #ff6600;
  font-size: 18px;
  width: 20px;
}

.feature-item span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.villa-description {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Villa Explore Button */
.villa-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: #000;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  align-self: flex-start;
}

.villa-explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

.villa-explore-btn i {
  transition: transform 0.3s ease;
}

.villa-explore-btn:hover i {
  transform: translateX(5px);
}

/* Villa Slider Navigation */
.villa-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  width: 100%;
}

.villa-nav-btn {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  border: none;
  border-radius: 50%;
  color: #000;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.villa-nav-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
}

/* Villa Navigation Dots */
.villa-nav-dots {
  display: flex;
  gap: 15px;
}

.villa-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 102, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.villa-dot.active {
  background: #ff6600;
  transform: scale(1.2);
}

.villa-dot:hover {
  background: #ff6600;
  transform: scale(1.1);
}

/* Villa Progress */
.villa-progress {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(255, 102, 0, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.villa-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff6600, #ff8533);
  width: 20%;
  transition: width 0.8s ease;
}



/* Responsive Design */
@media (max-width: 768px) {
  .villa-title {
    font-size: 32px;
  }
  
  .villa-stats {
    flex-direction: column;
    gap: 30px;
  }
  
  .villa-sliders-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .villa-slider {
    width: 100%;
    height: 350px;
  }
  
  .villa-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .villa-image {
    height: 300px;
  }
  
  .villa-features {
    grid-template-columns: 1fr;
  }
  
  .overlay-title {
    font-size: 24px;
  }
  
  .detail-header h3 {
    font-size: 22px;
  }
  
  .villa-slider-nav {
    width: 100%;
    justify-content: center;
  }
  
  .villa-progress {
    width: 100%;
  }
}

.slide.active .slide-info {
  transform: translateX(0);
  opacity: 1;
}

/* Slide Info Styles */
.info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 102, 0, 0.2);
}

.info-header h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.price {
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: white;
  padding: 15px 25px;
  border-radius: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.info-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 12px;
  border-left: 4px solid #ff6600;
  transition: all 0.3s ease;
}

.feature:hover {
  background: rgba(255, 102, 0, 0.15);
  transform: translateX(5px);
}

.feature i {
  color: #ff6600;
  font-size: 1.3rem;
}

.feature span {
  font-weight: 600;
  color: #1a1a1a;
}

.description {
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.explore-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

.explore-btn i {
  transition: transform 0.3s ease;
}

.explore-btn:hover i {
  transform: translateX(5px);
}

/* Navigation Styles */
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 4;
}

.nav-btn {
  width: 60px;
  height: 60px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #ff6600;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 102, 0, 0.2);
  font-size: 1.2rem;
}

.nav-btn:hover {
  background: rgba(255, 102, 0, 0.2);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.nav-dots {
  display: flex;
  gap: 15px;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot.active {
  background: #ff6600;
  transform: scale(1.3);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.5);
}

.dot:hover {
  background: rgba(255, 102, 0, 0.5);
  transform: scale(1.2);
}

/* Progress Bar */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff6600, #ff8533);
  width: 33.33%;
  transition: width 0.8s ease;
  border-radius: 2px;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
  top: 10%;
  left: 10%;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation-delay: 0s;
}

.shape-2 {
  top: 20%;
  right: 15%;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation-delay: 2s;
}

.shape-3 {
  bottom: 30%;
  left: 20%;
  width: 80px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 20% 100%);
  animation-delay: 4s;
}

.shape-4 {
  top: 60%;
  right: 25%;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.12);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation-delay: 6s;
}

.shape-5 {
  bottom: 15%;
  right: 10%;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.08);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: 8s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.1;
  }
  25% {
    transform: translateY(-20px) rotate(90deg) scale(1.1);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-40px) rotate(180deg) scale(0.9);
    opacity: 0.15;
  }
  75% {
    transform: translateY(-20px) rotate(270deg) scale(1.05);
    opacity: 0.18;
  }
}

/* Floating Particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.particle:nth-child(2) { top: 20%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { top: 40%; left: 15%; animation-delay: 2s; }
.particle:nth-child(4) { top: 60%; left: 85%; animation-delay: 3s; }
.particle:nth-child(5) { top: 80%; left: 25%; animation-delay: 4s; }
.particle:nth-child(6) { top: 30%; left: 70%; animation-delay: 5s; }
.particle:nth-child(7) { top: 70%; left: 45%; animation-delay: 6s; }
.particle:nth-child(8) { top: 15%; left: 60%; animation-delay: 7s; }

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0;
  }
}

.villa-cards-left {
  flex: 1;
  position: relative;
  max-width: 600px;
  height: 400px;
  perspective: 1000px;
}

.villa-card {
  position: absolute;
  width: 280px;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transform-origin: center bottom;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 102, 0, 0.2);
  backdrop-filter: blur(10px);
}

.villa-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.villa-card:hover::before {
  opacity: 1;
}

.villa-card:nth-child(1) {
  top: 0;
  left: 0;
  transform: rotate(-8deg) translateY(0);
  z-index: 5;
}

.villa-card:nth-child(2) {
  top: 10px;
  left: 15px;
  transform: rotate(-6deg) translateY(5px);
  z-index: 4;
}

.villa-card:nth-child(3) {
  top: 20px;
  left: 30px;
  transform: rotate(-4deg) translateY(10px);
  z-index: 3;
}

.villa-card:nth-child(4) {
  top: 30px;
  left: 45px;
  transform: rotate(-2deg) translateY(15px);
  z-index: 2;
}

.villa-card:nth-child(5) {
  top: 40px;
  left: 60px;
  transform: rotate(0deg) translateY(20px);
  z-index: 1;
}

.villa-card:hover {
  transform: rotate(0deg) translateY(-25px) scale(1.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.villa-card.active {
  transform: rotate(0deg) translateY(-30px) scale(1.15);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  z-index: 10;
  border: 3px solid #ff6600;
}

.villa-card:hover ~ .villa-card {
  transform: translateY(-10px) scale(0.95);
  opacity: 0.7;
}

.villa-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.villa-card:hover .villa-card-img {
  transform: scale(1.05);
}

.villa-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 15px;
  transform: translateY(100%);
  transition: all 0.4s ease;
  z-index: 3;
  backdrop-filter: blur(5px);
}

.villa-card:hover .villa-card-overlay {
  transform: translateY(0);
}

.villa-card-overlay h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.villa-card-overlay p {
  font-size: 0.8rem;
  opacity: 0.9;
}

.villa-details-right {
  flex: 1;
  max-width: 600px;
  position: relative;
}

.villa-detail {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
  animation: fadeInUp 0.6s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.villa-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
  z-index: -1;
}

.villa-detail.active {
  display: block;
}

.villa-detail-image {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 25px;
}

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

.villa-detail-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #ff6600;
  margin-bottom: 10px;
}

.villa-specs {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
  font-weight: 600;
}

.villa-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 8px;
  border-left: 3px solid #ff6600;
}

.feature i {
  color: #ff6600;
  font-size: 1.1rem;
}

.feature span {
  font-weight: 600;
  color: #333;
}

.villa-description {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
  .villa-showcase-container {
    gap: 40px;
    padding: 0 30px;
  }
  
  .villa-cards-left {
    max-width: 500px;
  }
  
  .villa-details-right {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .villa-showcase-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }
  
  .villa-cards-left {
    max-width: 100%;
    height: 350px;
  }
  
  .floating-shapes {
    display: none;
  }
  
  .particles {
    display: none;
  }
  
  .villa-card {
    width: 240px;
    height: 160px;
  }
  
  .villa-card:nth-child(1) {
    top: 0;
    left: 0;
    transform: rotate(-6deg) translateY(0);
  }
  
  .villa-card:nth-child(2) {
    top: 8px;
    left: 12px;
    transform: rotate(-4deg) translateY(4px);
  }
  
  .villa-card:nth-child(3) {
    top: 16px;
    left: 24px;
    transform: rotate(-2deg) translateY(8px);
  }
  
  .villa-card:nth-child(4) {
    top: 24px;
    left: 36px;
    transform: rotate(0deg) translateY(12px);
  }
  
  .villa-card:nth-child(5) {
    top: 32px;
    left: 48px;
    transform: rotate(2deg) translateY(16px);
  }
  
  .villa-details-right {
    max-width: 100%;
  }
  
  .villa-detail {
    padding: 20px;
  }
  
  .villa-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .villa-cards-left {
    height: 300px;
  }
  
  .villa-card {
    width: 200px;
    height: 140px;
  }
  
  .villa-card:nth-child(1) {
    top: 0;
    left: 0;
    transform: rotate(-4deg) translateY(0);
  }
  
  .villa-card:nth-child(2) {
    top: 6px;
    left: 10px;
    transform: rotate(-2deg) translateY(3px);
  }
  
  .villa-card:nth-child(3) {
    top: 12px;
    left: 20px;
    transform: rotate(0deg) translateY(6px);
  }
  
  .villa-card:nth-child(4) {
    top: 18px;
    left: 30px;
    transform: rotate(2deg) translateY(9px);
  }
  
  .villa-card:nth-child(5) {
    top: 24px;
    left: 40px;
    transform: rotate(4deg) translateY(12px);
  }
  
  .villa-card-img {
    height: 100px;
  }
  
  .villa-card-overlay {
    padding: 10px;
  }
  
  .villa-card-overlay h3 {
    font-size: 0.9rem;
  }
  
  .villa-card-overlay p {
    font-size: 0.7rem;
  }
  
  .villa-detail-content h2 {
    font-size: 1.5rem;
  }
}

.animated-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%), 
    linear-gradient(-45deg, rgba(255,255,255,0.03) 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.03) 75%), 
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.03) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% { background-position: 0 0, 0 30px, 30px -30px, -30px 0px; }
  100% { background-position: 60px 60px, 60px 90px, 90px 30px, 30px 60px; }
}

.villa-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.villa-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7) contrast(1.1) saturate(1.2);
}

/* Villa Slider Styles */
.villa-slider {
  width: 100%;
  max-width: 500px;
  position: relative;
}

.villa-slider-container {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.villa-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.villa-slide.active {
  opacity: 1;
}

.villa-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.villa-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 20px;
  text-align: center;
}

.villa-slide-overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.villa-slide-overlay p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

.villa-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
}

.villa-prev, .villa-next {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.villa-prev:hover, .villa-next:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.villa-dots {
  display: flex;
  gap: 8px;
}

.villa-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.villa-dot.active {
  background: #ffd700;
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .premium-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .premium-left {
    text-align: center;
  }
  
  .villa-slider {
    max-width: 400px;
  }
  
  .villa-slider-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .premium-content {
    padding: 60px 20px;
  }
  
  .villa-slider {
    max-width: 350px;
  }
  
  .villa-slider-container {
    height: 350px;
  }
  
  .villa-slide-overlay h3 {
    font-size: 1.3rem;
  }
}

.villa-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.villa-image-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.villa-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.villa-container:hover .villa-showcase-img {
  transform: scale(1.05);
}

.villa-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.8) 0%, rgba(42, 82, 152, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.villa-container:hover .villa-overlay {
  opacity: 1;
}

.villa-info {
  text-align: center;
  color: white;
  padding: 20px;
}

.villa-info h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.villa-info p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.villa-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.villa-stat {
  text-align: center;
}

.villa-stat .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 5px;
}

.villa-stat .stat-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .villa-image-wrapper {
    height: 300px;
  }
  
  .villa-info h3 {
    font-size: 1.5rem;
  }
  
  .villa-stats {
    gap: 20px;
  }
  
  .villa-stat .stat-number {
    font-size: 1.2rem;
  }
}

.floating-shapes {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 8s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.shape i {
  color: white;
  font-size: 1.5rem;
  animation: iconPulse 3s ease-in-out infinite;
}

.shape-1 {
  width: 90px;
  height: 90px;
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.shape-2 {
  width: 110px;
  height: 110px;
  top: 65%;
  right: 12%;
  animation-delay: 1.5s;
}

.shape-3 {
  width: 70px;
  height: 70px;
  top: 25%;
  right: 25%;
  animation-delay: 3s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 15%;
  left: 15%;
  animation-delay: 4.5s;
}

.shape-5 {
  width: 80px;
  height: 80px;
  top: 75%;
  left: 55%;
  animation-delay: 6s;
}

.shape-6 {
  width: 60px;
  height: 60px;
  top: 45%;
  left: 5%;
  animation-delay: 1s;
}

.shape-7 {
  width: 85px;
  height: 85px;
  bottom: 35%;
  right: 8%;
  animation-delay: 2.5s;
}

.shape-8 {
  width: 75px;
  height: 75px;
  top: 85%;
  right: 35%;
  animation-delay: 5s;
}

.shape-9 {
  width: 65px;
  height: 65px;
  top: 35%;
  left: 75%;
  animation-delay: 1.5s;
}

.shape-10 {
  width: 85px;
  height: 85px;
  bottom: 45%;
  left: 45%;
  animation-delay: 3.5s;
}

.shape-11 {
  width: 70px;
  height: 70px;
  top: 55%;
  right: 5%;
  animation-delay: 6.5s;
}

.shape-12 {
  width: 55px;
  height: 55px;
  top: 5%;
  right: 60%;
  animation-delay: 2s;
}

.shape-13 {
  width: 80px;
  height: 80px;
  bottom: 5%;
  right: 20%;
  animation-delay: 4s;
}

.shape-14 {
  width: 60px;
  height: 60px;
  top: 90%;
  left: 25%;
  animation-delay: 7s;
}

.shape-15 {
  width: 90px;
  height: 90px;
  top: 40%;
  left: 35%;
  animation-delay: 2.5s;
}

.particle-system {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particleFloat 12s linear infinite;
}

.particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 30%; left: 80%; animation-delay: 2s; }
.particle:nth-child(3) { top: 50%; left: 10%; animation-delay: 4s; }
.particle:nth-child(4) { top: 70%; left: 70%; animation-delay: 6s; }
.particle:nth-child(5) { top: 20%; left: 60%; animation-delay: 8s; }
.particle:nth-child(6) { top: 80%; left: 30%; animation-delay: 10s; }
.particle:nth-child(7) { top: 40%; left: 90%; animation-delay: 1s; }
.particle:nth-child(8) { top: 60%; left: 5%; animation-delay: 3s; }
.particle:nth-child(9) { top: 90%; left: 50%; animation-delay: 5s; }
.particle:nth-child(10) { top: 15%; left: 40%; animation-delay: 7s; }
.particle:nth-child(11) { top: 25%; left: 85%; animation-delay: 1.5s; }
.particle:nth-child(12) { top: 65%; left: 15%; animation-delay: 3.5s; }
.particle:nth-child(13) { top: 85%; left: 80%; animation-delay: 5.5s; }
.particle:nth-child(14) { top: 35%; left: 45%; animation-delay: 7.5s; }
.particle:nth-child(15) { top: 75%; left: 55%; animation-delay: 9s; }
.particle:nth-child(16) { top: 45%; left: 25%; animation-delay: 2.5s; }
.particle:nth-child(17) { top: 95%; left: 35%; animation-delay: 4.5s; }
.particle:nth-child(18) { top: 5%; left: 75%; animation-delay: 6.5s; }
.particle:nth-child(19) { top: 55%; left: 95%; animation-delay: 8.5s; }
.particle:nth-child(20) { top: 15%; left: 65%; animation-delay: 10.5s; }

.gradient-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(45deg, 
    rgba(30, 60, 114, 0.4) 0%, 
    rgba(42, 82, 152, 0.3) 50%, 
    rgba(74, 144, 226, 0.2) 100%);
  z-index: 2;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  33% {
    transform: translateY(-25px) rotate(120deg) scale(1.1);
  }
  66% {
    transform: translateY(15px) rotate(240deg) scale(0.9);
  }
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px);
    opacity: 0;
  }
}

.parallax-bg-kurumsal {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100%;
  background: url('img/boztas-2/IMG-20250721-WA0056.jpg') center center / cover no-repeat;
  opacity: 0.6;
  z-index: 1;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.premium-content {
  position: relative;
  z-index: 3;
  width: 100vw;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 40px;
  gap: 60px;
}

.premium-left {
  flex: 1;
  text-align: left;
  max-width: 600px;
  position: relative;
}

.construction-tools {
  position: absolute;
  top: -20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 1;
}

.tool-icon {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.15);
  animation: toolFloat 5s ease-in-out infinite;
}

.tool-icon:nth-child(1) { animation-delay: 0s; }
.tool-icon:nth-child(2) { animation-delay: 1s; }

@keyframes toolFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
    opacity: 0.15; 
  }
  25% { 
    transform: translateY(-5px) rotate(2deg); 
    opacity: 0.25; 
  }
  50% { 
    transform: translateY(-3px) rotate(-1deg); 
    opacity: 0.2; 
  }
  75% { 
    transform: translateY(-6px) rotate(1deg); 
    opacity: 0.3; 
  }
}

.premium-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slogan-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 8px 20px;
  margin-bottom: 30px;
  animation: badgeGlow 3s ease-in-out infinite;
}

.slogan-badge i {
  color: #ffd700;
  font-size: 1rem;
  animation: starTwinkle 2s ease-in-out infinite;
}

.slogan-badge span {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slogan-text {
  font-size: 4rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  line-height: 1.1;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

.slogan-text .highlight {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.slogan-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 40px auto;
  font-weight: 400;
  line-height: 1.5;
}

.slogan-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
  max-width: 800px;
  width: 100%;
}

.slogan-features .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.slogan-features .feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.slogan-features .feature-item:hover::before {
  left: 100%;
}

.slogan-features .feature-item:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.slogan-features .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.slogan-features .feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.slogan-features .feature-icon i {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.slogan-features .feature-content h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.slogan-features .feature-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.4;
}

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

.decoration-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  border-radius: 2px;
}

.decoration-icon {
  width: 50px;
  height: 50px;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(59, 130, 246, 0.4);
  animation: arrowBounce 2s ease-in-out infinite;
}

.decoration-icon i {
  color: #ff6600;
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

@keyframes badgeGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
  }
}

@keyframes starTwinkle {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(180deg);
  }
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 900px) {
  .parallax-slogan {
    min-height: 500px;
  }
  
  .slogan-icerik {
    padding: 60px 20px;
  }
  
  .slogan-text {
    font-size: 2.8rem;
  }
  
  .slogan-subtitle {
    font-size: 1.1rem;
  }
  
  .slogan-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .slogan-features .feature-item {
    padding: 20px 15px;
  }
  
  .slogan-features .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .slogan-features .feature-icon i {
    font-size: 1.3rem;
  }
  
  .slogan-features .feature-content h4 {
    font-size: 1rem;
  }
  
  .slogan-features .feature-content p {
    font-size: 0.8rem;
  }
  
  .shape {
    transform: scale(0.8);
  }
}
@media (max-width: 600px) {
  .parallax-slogan {
    min-height: 400px;
  }
  
  .slogan-icerik {
    padding: 40px 15px;
  }
  
  .slogan-text {
    font-size: 2.2rem;
  }
  
  .slogan-subtitle {
    font-size: 1rem;
  }
  
  .slogan-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .slogan-features .feature-item {
    padding: 20px 15px;
  }
  
  .slogan-features .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .slogan-features .feature-icon i {
    font-size: 1.2rem;
  }
  
  .slogan-features .feature-content h4 {
    font-size: 0.95rem;
  }
  
  .slogan-features .feature-content p {
    font-size: 0.8rem;
  }
  
  .slogan-badge {
    padding: 6px 15px;
  }
  
  .slogan-badge span {
    font-size: 0.8rem;
  }
  
  .shape {
    transform: scale(0.6);
  }
  
  .decoration-line {
    width: 50px;
  }
  
  .decoration-icon {
    width: 40px;
    height: 40px;
  }
}

.referanslar {
  background: #1a1a1a;
  padding: 64px 0 48px 0;
  width: 100vw;
}
.referanslar-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.referanslar-baslik {
  color: #ff6600;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.referanslar-logolar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.referans-logo {
  max-width: 160px;
  max-height: 90px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.2) brightness(0.95);
  transition: filter 0.2s, transform 0.2s;
}
.referans-logo:hover {
  filter: none;
  transform: scale(1.07);
}
@media (max-width: 900px) {
  .referanslar-logolar {
    gap: 24px;
  }
  .referans-logo {
    max-width: 110px;
    max-height: 60px;
  }
}

/* Project Pages Styles */
.project-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.project-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.project-hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(255, 102, 0, 0.2));
  z-index: 2;
}

.project-hero .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.project-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.project-hero .hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.project-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.project-stats .stat-item {
  text-align: center;
}

.project-stats .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.project-stats .stat-label {
  font-size: 1rem;
  opacity: 0.8;
}

/* Project Gallery */
.project-gallery {
  background: #1a1a1a;
  padding: 100px 0;
}

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

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(59, 130, 246, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
}

/* Project Video */
.project-video {
  background: #2a2a2a;
  padding: 100px 0;
}

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

.video-header {
  text-align: center;
  margin-bottom: 60px;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

/* Project Features */
.project-features {
  background: #1a1a1a;
  padding: 100px 0;
}

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

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #2a2a2a;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6600, #cc5200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ff6600;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  margin: 0;
}

/* Responsive Design for Project Pages */
@media (max-width: 900px) {
  .project-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .project-hero .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .project-stats {
    gap: 40px;
  }
  
  .project-stats .stat-number {
    font-size: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  .project-hero .hero-title {
    font-size: 2rem;
  }
  
  .project-hero .hero-subtitle {
    font-size: 1rem;
  }
  
  .project-stats {
    flex-direction: column;
    gap: 30px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px 15px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Values Section Responsive */
@media (max-width: 900px) {
  .values-section {
    padding: 80px 0;
  }
  
  .values-title {
    font-size: 2.5rem;
  }
  
  .values-subtitle {
    font-size: 1.1rem;
  }
  
  .values-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .main-image {
    height: 400px;
  }
  
  .floating-card {
    padding: 12px 16px;
  }
  
  .floating-card span {
    font-size: 0.8rem;
  }
  
  .value-item {
    padding: 25px;
    gap: 20px;
  }
  
  .value-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .value-content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .values-section {
    padding: 60px 0;
  }
  
  .values-title {
    font-size: 2rem;
  }
  
  .values-subtitle {
    font-size: 1rem;
  }
  
  .main-image {
    height: 300px;
  }
  
  .floating-card {
    padding: 10px 12px;
    font-size: 0.7rem;
  }
  
  .floating-card span {
    font-size: 0.7rem;
  }
  
  .value-item {
    padding: 20px;
    gap: 15px;
  }
  
  .value-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .value-content h3 {
    font-size: 1.1rem;
  }
  
  .value-content p {
    font-size: 0.9rem;
  }
}

.scroll-down-arrow {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 20;
  pointer-events: auto;
  animation: arrow-bounce 2s infinite;
  font-size: 48px;
  background: none;
  border-radius: 50%;
  box-shadow: 0 4px 24px 0 rgba(0, 123, 255, 0.15), 0 1.5px 8px 0 rgba(0,0,0,0.10);
  opacity: 0.92;
  transition: box-shadow 0.3s, transform 0.2s;
  cursor: pointer;
  user-select: none;
}

.scroll-down-arrow:hover {
  box-shadow: 0 8px 32px 0 rgba(0, 123, 255, 0.25), 0 3px 16px 0 rgba(0,0,0,0.18);
  transform: translateX(-50%) scale(1.12);
  opacity: 1;
}

.scroll-down-arrow:hover {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 0 30px rgba(255,255,255,1) !important;
  font-size: 46px !important;
}

.scroll-down-arrow {
  font-size: 42px !important;
  font-weight: 300 !important;
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5), 0 0 20px rgba(255,255,255,0.8) !important;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)) !important;
  transition: all 0.3s ease !important;
}

.scroll-down-arrow:active {
  transform: translateX(-50%) scale(0.96);
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(18px); }
}

#video-giris { position: relative !important; }



/* SECTION DIVIDER */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.1), transparent);
  animation: dividerShine 4s ease-in-out infinite;
}

@keyframes dividerShine {
  0% { left: -100%; }
  50% { left: 0%; }
  100% { left: 100%; }
}

.divider-line {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff6600, transparent);
  margin: 0 20px;
}

.divider-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6600, #cc5200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
  animation: dividerPulse 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes dividerPulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3); 
  }
  50% { 
    transform: scale(1.2); 
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.5); 
  }
}

/* GALLERY SECTION */
.gallery-section {
  padding: 100px 0;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(255, 102, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 102, 0, 0.03) 0%, transparent 50%);
  animation: galleryFloat 35s ease-in-out infinite;
  pointer-events: none;
}

@keyframes galleryFloat {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.5; }
}

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

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.gallery-title-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}



.title-underline {
  position: relative;
  margin-top: 15px;
}

.underline-main {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff6600, #cc5200);
  margin: 0 auto;
  border-radius: 2px;
}

.underline-accent {
  width: 40px;
  height: 2px;
  background: #ff6600;
  margin: 5px auto 0;
  border-radius: 1px;
  animation: accentPulse 3s ease-in-out infinite;
}

@keyframes accentPulse {
  0%, 100% { opacity: 0.6; width: 40px; }
  50% { opacity: 1; width: 60px; }
}

.gallery-nav-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #444;
  border: 2px solid #ff6600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: #ff6600;
  transform: scale(1.2);
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

.nav-dot:hover {
  background: #ff6600;
  transform: scale(1.1);
}

.gallery-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #ff6600;
  margin-bottom: 20px;
}

.gallery-header p {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 20px;
  margin-bottom: 60px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(255, 102, 0, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay .overlay-content {
  text-align: center;
  color: #ffffff;
}

.gallery-overlay h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.gallery-overlay p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.gallery-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gallery-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.gallery-footer {
  text-align: center;
  margin-top: 60px;
  position: relative;
}

.construction-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.construction-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 102, 0, 0.1);
  color: #ff6600;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255, 102, 0, 0.2);
  transition: all 0.3s ease;
  animation: badgeGlow 4s ease-in-out infinite;
}

.construction-badge:nth-child(1) { animation-delay: 0s; }
.construction-badge:nth-child(2) { animation-delay: 2s; }

.construction-badge:hover {
  background: rgba(255, 102, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
}

.construction-badge i {
  font-size: 1rem;
}

@keyframes badgeGlow {
  0%, 100% { 
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.1); 
  }
  50% { 
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3); 
  }
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff6600, #cc5200);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

/* GALLERY RESPONSIVE */
@media (max-width: 768px) {
  .gallery-header h2 {
    font-size: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Project Details Section */
.project-details {
  background: #2a2a2a;
  padding: 100px 0;
}

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

.details-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}

.details-left {
  background: #2a2a2a;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.details-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6600;
  margin-bottom: 20px;
}

.details-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 40px;
}

.features-list h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ff6600;
  margin-bottom: 20px;
}

.features-list ul {
  list-style: none;
  padding: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-size: 1rem;
  color: #cccccc;
}

.features-list li i {
  color: #ff6600;
  margin-right: 15px;
  font-size: 1.2rem;
}

.details-right {
  position: sticky;
  top: 100px;
}

.project-info-card {
  background: #2a2a2a;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid #444;
}

.project-info-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6600;
  margin-bottom: 30px;
  text-align: center;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #444;
}

.info-item:last-of-type {
  border-bottom: none;
}

.info-label {
  font-weight: 600;
  color: #cccccc;
}

.info-value {
  font-weight: 700;
  color: #ff6600;
}

.contact-button {
  margin-top: 30px;
  text-align: center;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff6600, #cc5200);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 102, 0, 0.4);
}

/* Responsive Design for Project Details */
@media (max-width: 1024px) {
  .details-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .details-right {
    position: static;
  }
  
  .details-left,
  .project-info-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .project-details {
    padding: 60px 0;
  }
  
  .details-title {
    font-size: 2rem;
  }
  
  .details-left,
  .project-info-card {
    padding: 25px;
  }
  
  .project-info-card h3 {
    font-size: 1.5rem;
  }
}

/* Language switch flags */
.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-sep {
  color: #888;
  font-weight: 600;
}

.flag-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flag-btn.active, .flag-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.15);
}

.flag {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  display: block;
}

/* Turkey flag */
.flag-tr {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3 2"><rect width="3" height="2" fill="%23e30a17"/><circle cx="1.05" cy="1" r="0.56" fill="%23fff"/><circle cx="1.20" cy="1" r="0.45" fill="%23e30a17"/><polygon fill="%23fff" points="1.58,0.92 1.52,1.04 1.38,1.04 1.50,1.12 1.46,1.26 1.58,1.18 1.70,1.26 1.66,1.12 1.78,1.04 1.64,1.04"/></svg>');
}

/* United Kingdom flag */
.flag-gb {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30"><clipPath id="a"><path d="M0 0v30h60V0z"/></clipPath><path d="M0 0h60v30H0z" fill="%2300123a"/><g clip-path="url(%23a)"><path d="m0 0 60 30m0-30L0 30" stroke="%23fff" stroke-width="6"/><path d="m0 0 60 30m0-30L0 30" stroke="%23c8102e" stroke-width="4"/><path d="M30 0v30M0 15h60" stroke="%23fff" stroke-width="10"/><path d="M30 0v30M0 15h60" stroke="%23c8102e" stroke-width="6"/></g></svg>');
}

/* Form Message Styles */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.loading {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

