* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.hero {
  position: relative;
  height: 100vh;
  background-image: url('/css/img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  overflow: hidden;
  transition: background-image 1s ease-in-out, opacity 1s ease-in-out;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
  border-radius: 12px;
}

.hero p {
  font-size: 2.4rem;
  opacity: 0;
  transform: translateY(100%);
  animation: slideInFromUp 1.5s forwards;
  animation-delay: 0.5s;
}

@keyframes slideInFromUp {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-btn {
  position: absolute;
  left: 0rem;
  bottom: 0.5rem;
  background-color: transparent;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border: 2px solid #ffffff;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  transition: background-color 0.3s, color 0.3s;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
  animation: fadeIn 1.5s forwards;
  animation-delay: 1s;
  opacity: 0;
}

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

.hero-btn:hover {
  transition: 1s;
  background-color: #ffffff;
  color: #000000;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0);
  z-index: 10;
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  height: 50px;
}

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

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #ccc;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ccc;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 25px;
  height: 20px;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
.hamburger {
  position: absolute; /* artık navbar ile birlikte gider */
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  background: transparent;
  width: 25px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}


  .nav-links {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding-top: 5rem;
    align-items: flex-start;
    padding-left: 1.5rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    z-index: 20;
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  .nav-links.active {
    right: 0;
  }
}
.hamburger.active{
  position: fixed;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .hero-content p {
    font-size: 1.5rem;
    text-align: center;
  }

  .hero-btn {
    position: static;
    margin: 1rem auto 0;
    display: block;
    font-size: 1rem;
    left: auto;
    bottom: auto;
  }
}

/* HAKKIMIZDA */
.about-section {
  padding: 60px 20px;
  opacity: 1;
}

.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;

  opacity: 0;
  transform: translateY(20px);
  transition: all 1.2s ease;
}

.about-content {
  flex: 1 1 45%;
}

.about-content h2,
.about-content .underline-custom,
.about-content p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.2s ease;
}

.about-section.visible .about-image img,
.about-section.visible .about-content h2,
.about-section.visible .about-content .underline-custom,
.about-section.visible .about-content p {
  opacity: 1;
  transform: translateY(0);
}

.about-content h2 {
  font-size: 36px;
  color: #1f2937;
  font-weight: bold;
  margin-bottom: 16px;
}

.underline-custom {
  height: 3px;
  width: 80px;
  background-color: #3b82f6;
  margin-bottom: 24px;
}

.about-content p {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .underline-custom {
    width: 60px;
    margin: 0 auto 24px auto;
  }

  .about-content,
  .about-image {
    flex: 1 1 100%;
  }
}

.services {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.services-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-box {
  background-color: #eaeaea;
  padding: 30px 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 36px;
  margin-bottom: 15px;
  display: inline-block;
}

.service-box h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.service-box p {
  font-size: 14px;
  color: #555;
}

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

.service-box {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-box.visible {
  animation: fadeInUp 0.6s ease forwards;
}

.portfolio-section {
    padding: 80px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #c8a27e;
}

.section-subtitle {
    font-size: 1.125rem;
    max-width: 640px;
    margin: 0 auto;
    color: #666;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.portfolio-item {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1.4s ease, transform 1.4s ease;
}
.portfolio-item.visible {
    opacity: 1;
    transform: scale(1);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper {
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
    padding: 30px 20px 20px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-category {
    background-color: #c8a27e;
    color: white;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    display: inline-block;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.portfolio-description {
    font-size: 0.875rem;
    color: #ddd;
}

.view-all-container {
    text-align: center;
    margin-top: 64px;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 40px;
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 500;
    color: #2d2d2d;
    background-color: transparent;
    border: 1px solid #c8a27e;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    z-index: 1;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #c8a27e;
    transition: all 0.4s ease;
    z-index: -1;
}

.view-all-btn:hover {
    color: white;
}

.view-all-btn:hover::before {
    left: 0;
}

.contact-section {
  max-width: 1000px;
  margin: 0px auto;
  padding: 20px;
  padding-bottom: 100px;
  font-family: sans-serif;
}

.intro-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
}

.intro-box h3 {
  font-size: 20px;
  color: #2d3748;
  margin-bottom: 5px;
}

.intro-box p {
  color: #4a5568;
}

.form-area h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.subtext {
  color: #718096;
  margin-bottom: 20px;
}

.notice {
  background: #fefcbf;
  border-left: 4px solid #ecc94b;
  padding: 15px;
  margin-bottom: 25px;
  color: #975a16;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

.full-width {
  flex: 1 1 100%;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 500;
  color: #4a5568;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  font-size: 14px;
  outline: none;
}

.submit-btn {
  background: #4a5568;
  color: #fff;
  padding: 12px 25px;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #2d3748;
}

.footer {
    background-color: #18181b; /* zinc-900 */
    color: white;
    padding: 60px 20px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-title {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 4px;
}

.footer-text {
    color: #a1a1aa; /* zinc-400 */
    font-size: 14px;
    line-height: 1.6;
}

.footer-heading {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
}

.footer-info p {
    color: #a1a1aa;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.social-links a {
    color: #a1a1aa;
    font-size: 20px;
    margin-right: 16px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}

.footer-links {
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #a1a1aa;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #27272a; /* zinc-800 */
    margin-top: 40px;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #71717a; /* zinc-500 */
    font-size: 12px;
    margin: 0;
}

.section-bg {
  background-color: #f9f9f9;
 
    padding: 80px 20px;
}

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

.section-header {
    margin: 0 auto;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 16px;
}

.divider {
    width: 96px;
    height: 4px;
    background-color: #D4AF37;
    margin: 0 auto 24px auto;
}

.section-header p {
    color: #857575;
    max-width: 640px;
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.testimonial-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

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

.quote-mark {
    font-size: 6rem;
    line-height: 0;
    position: absolute;
    top: 20%;
    right: 20px;
    transform: translateY(-50%);
    color: #D4AF37;
    opacity: 0.8;
    font-family: 'Georgia', serif;
}

.testimonial-text {
    color: #444444;
    margin-bottom: 40px;
    line-height: 1.7;
    padding-top: 32px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
}

.avatar-border {
    background: #D4AF37;
    padding: 3px;
    border-radius: 50%;
    display: inline-block;
}

.avatar-icon {
    width: 56px;
    height: 56px;
    background: #f3f3f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-icon svg {
    width: 32px;
    height: 32px;
    color: #aaa;
}

.testimonial-info {
    margin-left: 16px;
}

.testimonial-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #222;
}

.testimonial-info p {
    margin: 2px 0 0 0;
    font-size: 0.875rem;
    color: #D4AF37;
    font-weight: 300;
}

    .whatsapp-btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1000;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }
        
        70% {
            transform: scale(1.05);
            box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        }
        
        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }

    .whatsapp-btn {
    background-color: #22c55e; /* Tailwind: bg-green-500 */
    color: white;
    border-radius: 9999px; /* fully rounded */
    padding: 16px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); /* shadow-lg */
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #16a34a; /* Tailwind: hover:bg-green-600 */
}

.whatsapp-content {
    display: flex;
    align-items: center;
}

.whatsapp-content i {
    font-size: 1.5rem; /* Tailwind: text-2xl */
    margin-right: 0.5rem; /* Tailwind: mr-2 */
}

.whatsapp-content span {
    font-weight: 500; /* Tailwind: font-medium */
}
/* Yeni yapı için: nav ve dil seçimi sağda hizalanır */
.right-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Dil seçimi butonu */
.language-selector {
  position: relative;
  font-family: 'Montserrat', sans-serif;
}

.lang-btn {
  background: none;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0;
}

.arrow {
  font-size: 0.8rem;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  padding: 0.4rem 0;
  border-radius: 4px;
  min-width: 60px;
  text-align: left;
  z-index: 100;
}

.lang-dropdown.show {
  display: block;
}

.lang-dropdown a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 0.3rem 0.8rem;
  font-size: 0.95rem;
}

.lang-dropdown a:hover {
  background-color: #444;
}

.language-selector:hover .lang-dropdown {
  display: block;
}

.language-selector.mobile-lang {
  display: none;
}

@media (max-width: 768px) {
  .language-selector.mobile-lang {
    display: block;
  }

  .language-selector.desktop-lang {
    display: none;
  }
  
}

@media (max-width: 768px) {
  .language-selector {
    width: 100%;
    text-align: center;
  }

  .lang-btn {
    display: inline-block;
    margin-left: -155px;
  }

  .lang-dropdown {
    left: 8%;
    transform: translateX(-50%);
    right: auto;
  }
}