/* Reset ve Temel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0056b3;
  --primary-dark: #003d82;
  --primary-light: #007bff;
  --secondary: #ff6b35;
  --accent: #00b4d8;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --instagram: #e1306c;
  --instagram-gradient: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --white: #ffffff;
  --black: #000000;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --gradient: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  --whatsapp-gradient: linear-gradient(
    135deg,
    var(--whatsapp) 0%,
    var(--whatsapp-dark) 100%
  );
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
  font-weight: 400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animasyonlar */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatRandom {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) translateX(20px) rotate(5deg);
  }
  50% {
    transform: translateY(10px) translateX(-15px) rotate(-5deg);
  }
  75% {
    transform: translateY(-20px) translateX(-10px) rotate(3deg);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(-10px);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* WhatsApp Butonları */
.btn-whatsapp {
  background: var(--whatsapp-gradient);
  color: var(--white) !important;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  background: var(--whatsapp-dark);
  animation: none;
}

.btn-whatsapp.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-call {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-call:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Telefon Linkleri */
.phone-link {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.phone-link:hover {
  color: var(--whatsapp);
  text-decoration: underline;
}

/* WhatsApp CTA Section */
.whatsapp-cta {
  padding: 80px 0;
  background: var(--whatsapp-gradient);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.whatsapp-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: cover;
  opacity: 0.1;
}

.whatsapp-cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.whatsapp-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
  display: inline-block;
}

.whatsapp-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.whatsapp-cta p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s both;
}

.whatsapp-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.whatsapp-stat {
  text-align: center;
  animation: fadeInUp 1s ease;
}

.whatsapp-stat:nth-child(1) {
  animation-delay: 0.3s;
}
.whatsapp-stat:nth-child(2) {
  animation-delay: 0.4s;
}
.whatsapp-stat:nth-child(3) {
  animation-delay: 0.5s;
}

.whatsapp-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.whatsapp-stat .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  animation: fadeInDown 0.5s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  padding: 0.8rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  animation: fadeInLeft 0.8s ease;
}

.navbar.scrolled .logo-img {
  height: 40px;
}

/* Logo yazısı stili - YAN YANA */
.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  animation: fadeInRight 0.8s ease;
  letter-spacing: -0.5px;
}

/* NAV-MENU - GENİŞ BOŞLUKLU */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
  align-items: center;
  animation: fadeInRight 0.8s ease;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
  padding: 0.5rem 0;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--whatsapp-gradient) !important;
  color: var(--white) !important;
  padding: 0.8rem 2rem !important;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 600;
  animation: pulse 2s infinite;
  white-space: nowrap;
  margin-left: 1rem;
  font-size: 0.95rem;
}

.nav-cta:hover {
  background: var(--whatsapp-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  animation: none;
}

.nav-cta::after {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border-left: 2px solid var(--light-gray);
  margin-left: 1rem;
}

.phone-number i {
  color: var(--whatsapp);
  font-size: 1.1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 1.5rem;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -7px);
}

/* WhatsApp Form */
.contact {
  padding: 100px 0;
  background: var(--light);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
  animation: fadeInLeft 1s ease;
}

.contact-info > p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 3rem;
  line-height: 1.6;
  animation: fadeInLeft 1s ease 0.2s both;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.contact-item.animated {
  opacity: 1;
  transform: translateX(0);
}

.contact-item:nth-child(1) {
  transition-delay: 0.1s;
}
.contact-item:nth-child(2) {
  transition-delay: 0.2s;
}
.contact-item:nth-child(3) {
  transition-delay: 0.3s;
}
.contact-item:nth-child(4) {
  transition-delay: 0.4s;
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: var(--whatsapp-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Instagram için özel stil */
.contact-item.instagram i {
  background: var(--instagram-gradient);
}

.contact-item .fab.fa-whatsapp {
  background: var(--whatsapp-gradient);
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--dark);
}

.contact-item p {
  color: var(--gray);
  margin-bottom: 0.2rem;
}

.contact-item small {
  color: var(--whatsapp);
  font-weight: 500;
}

.contact-item.instagram small {
  color: var(--instagram);
}

/* WhatsApp QR */
.whatsapp-qr {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.whatsapp-qr.animated {
  opacity: 1;
  transform: translateY(0);
}

.qr-code {
  flex-shrink: 0;
}

.qr-placeholder {
  width: 150px;
  height: 150px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--whatsapp);
  animation: pulse 3s infinite;
}

.qr-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.qr-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.qr-info p {
  color: var(--gray);
  line-height: 1.6;
}

/* Form */
.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.contact-form.animated {
  opacity: 1;
  transform: translateY(0);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--dark);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-form h3 i {
  color: var(--whatsapp);
  animation: pulse 2s infinite;
}

.form-group {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.5s ease;
}

.form-group:nth-child(1) {
  animation-delay: 0.1s;
}
.form-group:nth-child(2) {
  animation-delay: 0.2s;
}
.form-group:nth-child(3) {
  animation-delay: 0.3s;
}
.form-group:nth-child(4) {
  animation-delay: 0.4s;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--whatsapp);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
  transform: translateY(-2px);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #dc3545;
  animation: shake 0.5s ease;
}

.form-notice {
  background: #f0f9ff;
  border-left: 4px solid var(--whatsapp);
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 5px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  animation: fadeInUp 0.5s ease 0.5s both;
}

.form-notice i {
  color: var(--whatsapp);
  font-size: 1.2rem;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.form-notice p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

.alternative-contact {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-gray);
  animation: fadeInUp 0.5s ease 0.6s both;
}

.alternative-contact p {
  color: var(--gray);
  margin-bottom: 1rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.mockup-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: var(--gradient);
}

.building-mockup {
  position: absolute;
  transition: all 0.5s ease;
}

.building-mockup.apartment {
  width: 120px;
  height: 200px;
  bottom: 50px;
  left: 10%;
  transform: translateY(0);
  animation: float 6s ease-in-out infinite;
}

.building-mockup.site {
  width: 180px;
  height: 250px;
  bottom: 40px;
  right: 15%;
  transform: translateY(0);
  animation: float 7s ease-in-out infinite 1s;
}

.building-mockup.villa {
  width: 100px;
  height: 150px;
  bottom: 60px;
  left: 25%;
  transform: translateY(0);
  animation: float 5s ease-in-out infinite 0.5s;
}

.building-mockup.office {
  width: 140px;
  height: 220px;
  bottom: 45px;
  right: 5%;
  transform: translateY(0);
  animation: float 8s ease-in-out infinite 1.5s;
}

.building-mockup .building-base {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: #333;
  border-radius: 2px;
}

.apartment .building-windows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 15px;
  height: 100%;
  background: linear-gradient(135deg, #8b7355 0%, #a52a2a 100%);
  border-radius: 8px 8px 0 0;
}

.apartment .window {
  background: linear-gradient(135deg, #87ceeb 0%, #4682b4 100%);
  border-radius: 4px;
  border: 2px solid #1a1a1a;
  transition: all 0.5s ease;
}

.site {
  display: flex;
  gap: 15px;
}

.site .tower {
  flex: 1;
  background: linear-gradient(135deg, #696969 0%, #2f4f4f 100%);
  border-radius: 8px 8px 0 0;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site .window {
  background: linear-gradient(135deg, #87ceeb 0%, #4682b4 100%);
  border-radius: 3px;
  border: 1px solid #1a1a1a;
  flex: 1;
  transition: all 0.5s ease;
}

.villa .roof {
  width: 100%;
  height: 30px;
  background: linear-gradient(135deg, #8b0000 0%, #b22222 100%);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.villa .villa-body {
  height: calc(100% - 30px);
  background: linear-gradient(135deg, #deb887 0%, #cd853f 100%);
  border-radius: 0 0 8px 8px;
  padding: 15px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 5px;
  align-items: end;
}

.villa .window {
  height: 25px;
  background: linear-gradient(135deg, #87ceeb 0%, #4682b4 100%);
  border-radius: 3px;
  border: 1px solid #1a1a1a;
  transition: all 0.5s ease;
}

.villa .door {
  height: 35px;
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
  border-radius: 3px 3px 0 0;
  border: 1px solid #1a1a1a;
}

.office .office-tower {
  height: 100%;
  background: linear-gradient(135deg, #2f4f4f 0%, #708090 100%);
  border-radius: 8px 8px 0 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.office .window-row {
  flex: 1;
  background: linear-gradient(135deg, #87ceeb 0%, #4682b4 100%);
  border-radius: 2px;
  border: 1px solid #1a1a1a;
  transition: all 0.5s ease;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  font-size: 2rem;
  opacity: 0.7;
  animation: floatRandom 15s ease-in-out infinite;
}

.element-1 {
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}
.element-2 {
  top: 15%;
  right: 10%;
  animation-delay: 2s;
}
.element-3 {
  top: 60%;
  left: 8%;
  animation-delay: 4s;
}
.element-4 {
  top: 70%;
  right: 15%;
  animation-delay: 6s;
}
.element-5 {
  top: 40%;
  right: 5%;
  animation-delay: 8s;
}

.mockup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  animation: fadeInUp 1s ease 0.2s both;
}

.title-highlight {
  background: linear-gradient(135deg, var(--secondary), #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease 0.6s both;
}

.btn {
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: #ff8c42;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  animation: fadeInUp 1s ease 0.8s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--secondary), #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeInUp 1s ease 1s both;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.section-header.animated {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid var(--light-gray);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.service-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.service-card:nth-child(1) {
  transition-delay: 0.1s;
}
.service-card:nth-child(2) {
  transition-delay: 0.2s;
}
.service-card:nth-child(3) {
  transition-delay: 0.3s;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--white);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-card p {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  text-align: left;
}

.service-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--light-gray);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--white);
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.features-text h2.animated {
  opacity: 1;
  transform: translateX(0);
}

.features-text > p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease 0.2s;
}

.features-text > p.animated {
  opacity: 1;
  transform: translateX(0);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.feature-item.animated {
  opacity: 1;
  transform: translateX(0);
}

.feature-item:nth-child(1) {
  transition-delay: 0.3s;
}
.feature-item:nth-child(2) {
  transition-delay: 0.4s;
}
.feature-item:nth-child(3) {
  transition-delay: 0.5s;
}

.feature-item i {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item:hover i {
  transform: rotate(15deg) scale(1.1);
}

/* Features Visual - Devices */
.features-visual {
  display: flex;
  justify-content: center;
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.features-visual.animated {
  opacity: 1;
  transform: translateX(0);
}

.devices-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 400px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.devices-container.animated {
  opacity: 1;
  transform: translateY(0);
}

.device {
  position: absolute;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform 0.5s ease;
  animation: float 6s ease-in-out infinite;
}

.device.iphone {
  width: 180px;
  height: 360px;
  top: 20px;
  left: 50px;
  border: 8px solid #1a1a1a;
  border-radius: 30px;
  animation-delay: 0s;
}

.device.samsung {
  width: 200px;
  height: 380px;
  top: 10px;
  right: 80px;
  border: 8px solid #1a1a1a;
  border-radius: 20px;
  animation-delay: 0.5s;
}

.device.tablet {
  width: 280px;
  height: 200px;
  bottom: 60px;
  left: 100px;
  border: 10px solid #1a1a1a;
  border-radius: 15px;
  animation-delay: 1s;
}

.device.laptop {
  width: 320px;
  height: 200px;
  bottom: 30px;
  right: 50px;
  border: 12px solid #1a1a1a;
  border-radius: 10px 10px 0 0;
  animation-delay: 1.5s;
}

.device:hover {
  transform: scale(1.05);
  z-index: 10;
  animation: none;
}

.device-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  padding: 15px;
}

.device.iphone .device-screen {
  border-radius: 22px;
}

.device.samsung .device-screen {
  border-radius: 12px;
}

.device.tablet .device-screen {
  border-radius: 5px;
}

.device.laptop .device-screen {
  border-radius: 0;
}

/* App Preview Styles */
.app-preview {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--dark);
}

.app-header {
  background: var(--gradient);
  color: var(--white);
  padding: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
}

.app-content {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-item {
  padding: 8px;
  background: var(--light-gray);
  border-radius: 5px;
  text-align: center;
  font-size: 10px;
  transition: all 0.3s ease;
}

.app-item.active {
  background: var(--primary);
  color: var(--white);
}

.stat-box {
  text-align: center;
  padding: 10px;
}

.stat-label {
  font-size: 9px;
  color: var(--gray);
  margin-bottom: 5px;
}

.stat-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--light-gray);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 5px;
}

.progress-fill {
  height: 100%;
  background: var(--secondary);
  border-radius: 3px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
}

.metric {
  background: var(--light);
  padding: 8px;
  border-radius: 5px;
  text-align: center;
  font-size: 9px;
  font-weight: 600;
}

.laptop-content {
  display: flex;
  height: 100%;
}

.sidebar {
  width: 80px;
  background: var(--light);
  padding: 10px 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-item {
  padding: 8px 5px;
  background: var(--white);
  border-radius: 3px;
  text-align: center;
  font-size: 8px;
  cursor: pointer;
}

.nav-item.active {
  background: var(--primary);
  color: var(--white);
}

.main-content {
  flex: 1;
  padding: 10px;
}

.chart-placeholder {
  width: 100%;
  height: 100%;
  background: var(--light);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gray);
}

/* Special Services Section */
.special-services {
  padding: 100px 0;
  background: var(--light);
}

.special-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.special-service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
  border-left: 4px solid var(--secondary);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.special-service-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.special-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--whatsapp);
}

.special-service-card:nth-child(1) {
  transition-delay: 0.1s;
}
.special-service-card:nth-child(2) {
  transition-delay: 0.2s;
}
.special-service-card:nth-child(3) {
  transition-delay: 0.3s;
}
.special-service-card:nth-child(4) {
  transition-delay: 0.4s;
}
.special-service-card:nth-child(5) {
  transition-delay: 0.5s;
}
.special-service-card:nth-child(6) {
  transition-delay: 0.6s;
}

.special-service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.special-service-card:hover .special-service-icon {
  background: var(--whatsapp-gradient);
  transform: scale(1.1);
}

.special-service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
}

.special-service-card p {
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Portfolio Section */
.portfolio {
  padding: 100px 0;
  background: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.portfolio-item.animated {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.portfolio-item:nth-child(1) {
  transition-delay: 0.1s;
}
.portfolio-item:nth-child(2) {
  transition-delay: 0.2s;
}
.portfolio-item:nth-child(3) {
  transition-delay: 0.3s;
}
.portfolio-item:nth-child(4) {
  transition-delay: 0.4s;
}
.portfolio-item:nth-child(5) {
  transition-delay: 0.5s;
}

.portfolio-image {
  height: 200px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.building-showcase {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.building-showcase.animated {
  opacity: 1;
  transform: translateY(0);
}

.luxury-apartment {
  width: 120px;
  height: 150px;
}

.luxury-apartment .showcase-windows {
  height: 100%;
  background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
  border-radius: 8px 8px 0 0;
  padding: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.luxury-apartment .showcase-window {
  background: linear-gradient(135deg, #87ceeb 0%, #4682b4 100%);
  border-radius: 4px;
  border: 2px solid #1a1a1a;
}

.business-center {
  width: 140px;
  height: 160px;
}

.business-center .showcase-tower {
  height: 100%;
  background: linear-gradient(135deg, #2f4f4f 0%, #708090 100%);
  border-radius: 8px 8px 0 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.business-center .showcase-window-row {
  flex: 1;
  background: linear-gradient(135deg, #87ceeb 0%, #4682b4 100%);
  border-radius: 2px;
  border: 1px solid #1a1a1a;
}

.villa-complex {
  width: 110px;
  height: 140px;
}

.villa-showcase {
  width: 100%;
  height: 100%;
}

.villa-showcase .villa-roof {
  width: 100%;
  height: 25px;
  background: linear-gradient(135deg, #8b0000 0%, #b22222 100%);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.villa-showcase .villa-body {
  height: calc(100% - 25px);
  background: linear-gradient(135deg, #deb887 0%, #cd853f 100%);
  border-radius: 0 0 8px 8px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 4px;
  align-items: end;
}

.villa-showcase .villa-window {
  height: 20px;
  background: linear-gradient(135deg, #87ceeb 0%, #4682b4 100%);
  border-radius: 3px;
  border: 1px solid #1a1a1a;
}

.villa-showcase .villa-door {
  height: 30px;
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
  border-radius: 3px 3px 0 0;
  border: 1px solid #1a1a1a;
}

/* Yeni Site Kompleksi Stili */
.site-complex {
  width: 160px;
  height: 140px;
}

.site-complex .complex-towers {
  display: flex;
  gap: 15px;
  height: 100%;
  align-items: flex-end;
}

.site-complex .complex-tower {
  flex: 1;
  background: linear-gradient(135deg, #2f4f4f 0%, #708090 100%);
  border-radius: 8px 8px 0 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  height: 100%;
}

.site-complex .complex-window {
  flex: 1;
  background: linear-gradient(135deg, #87ceeb 0%, #4682b4 100%);
  border-radius: 2px;
  border: 1px solid #1a1a1a;
}

.showcase-base {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: #333;
  border-radius: 2px;
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.portfolio-content p {
  color: var(--gray);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.portfolio-tag {
  background: var(--primary);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-img {
  height: 50px;
  width: auto;
}

.footer-logo .logo-text {
  color: var(--white);
  font-size: 1.2rem;
}

.footer-section p {
  color: var(--light-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--light-gray);
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  color: var(--whatsapp);
  transform: translateX(5px);
}

.footer-contact-item i {
  color: var(--whatsapp);
}

/* Sosyal Medya Linkleri - INSTAGRAM EKLENDİ */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link.whatsapp {
  background: var(--whatsapp-gradient);
}

/* Instagram için özel gradient */
.social-link.instagram {
  background: var(--instagram-gradient);
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
}

.social-link.whatsapp:hover {
  background: var(--whatsapp-dark);
  animation: pulse 1s infinite;
}

.social-link.instagram:hover {
  background: linear-gradient(
    45deg,
    #e1306c,
    #c13584,
    #833ab4,
    #5851db,
    #405de6
  );
  box-shadow: 0 10px 20px rgba(225, 48, 108, 0.3);
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul a {
  color: var(--light-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section ul a:hover {
  color: var(--whatsapp);
  transform: translateX(5px);
}

.work-hours li {
  color: var(--light-gray);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.work-hours .whatsapp-hour {
  color: var(--whatsapp);
  font-weight: 500;
  margin-top: 1rem;
  animation: pulse 2s infinite;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-gray);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--whatsapp-gradient);
  color: white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
  animation: none;
}

.whatsapp-float i {
  font-size: 1.5rem;
}

.float-text {
  font-weight: 600;
}

/* Loading Spinner */
.loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-spinner.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--light-gray);
  border-top: 5px solid var(--whatsapp);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Notification */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  padding: 1rem 2rem;
  border-radius: 5px;
  z-index: 10000;
  animation: slideIn 0.3s ease;
  color: white;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-lg);
}

.notification.success {
  background: #28a745;
}

.notification.error {
  background: #dc3545;
}

/* Responsive */
@media (max-width: 1200px) {
  .nav-container {
    max-width: 1200px;
    padding: 0 30px;
  }

  .nav-menu {
    gap: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: 2rem;
  }

  .nav-menu a {
    font-size: 0.95rem;
  }

  .nav-cta {
    padding: 0.7rem 1.5rem !important;
    font-size: 0.9rem;
  }

  .logo-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 900px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .whatsapp-qr {
    flex-direction: column;
    text-align: center;
  }

  /* NAV-MENU MOBİL */
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 3rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    gap: 2rem;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
  }

  .nav-cta {
    margin: 2rem auto;
    width: 80%;
    text-align: center;
    padding: 1rem 2rem !important;
    font-size: 1rem;
  }

  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .phone-number {
    border-left: none;
    margin-left: 0;
    padding: 0.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .whatsapp-stats {
    gap: 2rem;
  }

  .features-content {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .special-services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .building-mockup {
    transform: scale(0.7);
  }

  .building-mockup.apartment {
    left: 5%;
  }

  .building-mockup.site {
    right: 8%;
  }

  .building-mockup.villa {
    left: 20%;
  }

  .building-mockup.office {
    right: 2%;
  }

  .devices-container {
    height: 300px;
    margin-top: 2rem;
  }

  .device.iphone {
    width: 120px;
    height: 240px;
    top: 30px;
    left: 20px;
  }

  .device.samsung {
    width: 140px;
    height: 260px;
    top: 20px;
    right: 30px;
  }

  .device.tablet {
    width: 180px;
    height: 130px;
    bottom: 40px;
    left: 50px;
  }

  .device.laptop {
    width: 200px;
    height: 130px;
    bottom: 20px;
    right: 30px;
  }

  .logo-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .special-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
  }

  .logo-text {
    font-size: 0.9rem;
  }

  .logo-img {
    height: 40px;
  }

  .navbar.scrolled .logo-img {
    height: 35px;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    padding: 0.8rem 1rem;
  }

  .float-text {
    display: none;
  }

  .hero-title {
    font-size: 2rem;
  }

  .whatsapp-cta h2 {
    font-size: 2rem;
  }

  .floating-element {
    font-size: 1.5rem;
  }

  .special-services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
