/* Global Styles */
:root {
  --primary-color: #a2907c;
  --secondary-color: #19181a;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --text-color: #333333;
}

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

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



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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

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

.btn.secondary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.top-bar {
  background-color: var(--secondary-color);
  padding: 10px 0;
  color: var(--white);
}

.contact-info {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.contact-info a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
}

.contact-info i {
  margin-right: 5px;
}

/* Navigation Styles */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.logo {
  flex: 1;
  max-width: 200px;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  flex: 2;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 0px;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.contact-info a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.contact-info a i {
  margin-right: 5px;
  color: #8b0000;
}

.contact-info a:hover {
  color: #8b0000;
}

.main-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav .nav-links a {
  padding: 5px 0;
}

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

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

.mobile-menu {
  display: none;
  cursor: pointer;
  font-size: 20px;
  color: #333;
  transition: color 0.2s ease;
  padding: 5px;
}

.mobile-menu:hover {
  color: #c5a572;
}

/* Mobile Navigation */
@media (max-width: 1024px) {
  .mobile-menu {
    display: block;
  }

  .nav-links,
  .contact-info {
    display: none;
  }

  .main-nav.mobile-active .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border-radius: 0 0 8px 8px;
  }

  .main-nav.mobile-active .nav-links a {
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    border-bottom: 1px solid #f0f0f0;
  }

  .main-nav.mobile-active .nav-links a:last-child {
    border-bottom: none;
  }

  .main-nav.mobile-active .nav-links a:hover {
    background-color: #f8f8f8;
    color: #c5a572;
    padding-left: 2px;
  }

  .logo {
    max-width: 150px;
  }

  .main-nav .container {
    justify-content: space-between;
  }
}

/* Scroll Effect */
.main-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hero Section Adjustment */
.hero {
  padding-top: 100px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background-image: url("../images/hero-2.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  text-align: left;
  color: #fff;
  /* Mobil için ek optimizasyonlar */
  min-height: 500px;
  /* Safari için hardware acceleration */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

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

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 600;
}

.btn.primary {
  background-color: #c5a572;
  color: #fff;
  border: 2px solid #c5a572;
}

.btn.secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn.primary:hover {
  background-color: #b39363;
  border-color: #b39363;
}

.btn.secondary:hover {
  background-color: #fff;
  color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    padding-top: 80px;
    /* Mobil için ek optimizasyonlar */
    min-height: 400px;
    max-height: 600px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    min-height: 350px;
    max-height: 500px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero p {
    font-size: 0.9rem;
  }
}

/* About Preview Section */
.about-preview {
  padding: 80px 0;
  text-align: center;
  background-color: var(--light-gray);
}

.about-preview h2 {
  color: var(--secondary-color);
  margin-bottom: 30px;
  font-size: 2rem;
}

.about-preview p {
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Services Preview */
.services-preview {
  padding: 80px 0;
  text-align: center;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  padding: 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

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

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial cite {
  color: var(--primary-color);
  font-weight: bold;
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

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

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

.social-links a:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Title */
.page-title {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 0px 0;
  text-align: center;
  margin-top: 100px;
}

.page-title h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.page-title p {
  font-size: 18px;
  opacity: 0.9;
}

/* About Content */
.about-content {
  padding: 80px 0;
}

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

.about-text h2 {
  color: var(--secondary-color);
  margin-bottom: 30px;
  font-size: 32px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Our Values */
.our-values {
  padding: 80px 0;
  background-color: var(--light-gray);
  text-align: center;
}

.our-values h2 {
  margin-bottom: 50px;
  color: var(--secondary-color);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.value-card i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.value-card h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 0;
  text-align: center;
}

.why-choose-us h2 {
  margin-bottom: 50px;
  color: var(--secondary-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature {
  padding: 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Team Section */
.team {
  padding: 80px 0;
  background-color: var(--light-gray);
  text-align: center;
}

.team h2 {
  margin-bottom: 50px;
  color: var(--secondary-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.team-member h3 {
  margin: 20px 0 5px;
  color: var(--secondary-color);
}

.team-member p {
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Product Categories */
.product-categories {
  padding: 15px 0;
  background-color: #fff;
}

.product-grid-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.product-grid-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #c5a572;
  pointer-events: none;
}

.product-grid-wrapper h2 {
  text-align: center;
  color: #333;
  margin: 0;
  padding: 20px 20px 20px 20px;
  font-size: 1.3rem;
  font-weight: 400;
  border-bottom: 1px solid #c5a572;
  background-color: #fff;
}

.product-grid-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 40px;
  gap: 0;
}

.product-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-height: 120px;
  text-decoration: none;
  color: inherit;
}

.product-icon::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background-color: #c5a572;
}

.product-icon:nth-child(3n)::after {
  display: none;
}

.product-icon::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background-color: #c5a572;
}

.product-icon:nth-last-child(-n + 3)::before {
  display: none;
}

.product-icon i {
  font-size: 3rem;
  color: #c5a572;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.product-icon span {
  font-size: 1rem;
  color: #333;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}

.product-icon:hover {
  background-color: rgba(197, 165, 114, 0.05);
  cursor: pointer;
}

.product-icon:hover i {
  color: #b39363;
  transform: translateY(-3px);
}

.product-icon:active {
  transform: scale(0.95);
}

/* Responsive Design */
@media (max-width: 992px) {
  .product-grid-wrapper {
    max-width: 700px;
  }

  .product-grid-icons {
    padding: 30px;
  }

  .product-icon {
    padding: 30px 15px;
    min-height: 100px;
  }

  .product-icon i {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .product-icon span {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .product-categories {
    padding: 60px 0;
  }

  .product-grid-wrapper {
    max-width: 500px;
  }

  .product-grid-wrapper h2 {
    font-size: 1.4rem;
    padding: 25px 30px;
  }

  .product-grid-icons {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }

  .product-icon {
    padding: 25px 15px;
    min-height: 90px;
  }

  .product-icon::after {
    display: none;
  }

  .product-icon::before {
    display: none;
  }

  .product-icon:nth-child(2n) {
    border-right: none;
  }

  .product-icon i {
    font-size: 2.2rem;
  }

  .product-icon span {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .product-grid-wrapper {
    max-width: 400px;
  }

  .product-grid-wrapper h2 {
    font-size: 0.5rem;
    padding: 20px 25px;
  }

  .product-grid-icons {
    padding: 15px;
  }

  .product-icon {
    padding: 20px 10px;
    min-height: 80px;
  }

  .product-icon i {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .product-icon span {
    font-size: 0.85rem;
  }
}

/* Product Details */
.product-details {
  padding: 80px 0;
  background-color: #fff;
}

.product-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}

.product-item.reverse {
  grid-template-columns: 1fr 1fr;
}

.product-item.reverse .product-image {
  order: 2;
}

.product-item.reverse .product-info {
  order: 1;
  padding-right: 0;
  padding-left: 40px;
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-info {
  padding-right: 40px;
}

.product-info h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.product-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.classifications {
  margin-top: 30px;
}

.classifications h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 15px;
}

.classifications p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* Responsive Design for Product Details */
@media (max-width: 992px) {
  .product-item {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-item.reverse .product-image {
    order: 1;
  }

  .product-item.reverse .product-info {
    order: 2;
    padding-left: 0;
  }

  .product-info {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .product-details {
    padding: 40px 0;
  }

  .product-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  /* Mobilde reverse sınıfını tamamen devre dışı bırak */
  .product-item.reverse {
    grid-template-columns: 1fr;
  }

  .product-item.reverse .product-image {
    grid-column: 1;
    grid-row: 1;
  }

  .product-item.reverse .product-info {
    grid-column: 1;
    grid-row: 2;
    padding-left: 0;
  }

  /* Normal product item'lar için de aynı düzeni uygula */
  .product-item .product-image {
    grid-column: 1;
    grid-row: 1;
  }

  .product-item .product-info {
    grid-column: 1;
    grid-row: 2;
    padding-right: 0;
    padding-left: 0;
  }

  .product-info {
    text-align: center;
  }

  .product-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .product-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .classifications {
    margin-top: 20px;
  }

  .classifications h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .classifications p {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
}

@media (max-width: 576px) {
  .product-details {
    padding: 0px 0;
  }

  .product-item {
    gap: 25px;
    margin-bottom: 40px;
  }

  .product-info h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .product-info p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .classifications {
    margin-top: 15px;
  }

  .classifications h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .classifications p {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }
}

@media (max-width: 768px) {
  .product-categories {
    padding: 60px 0;
  }

  .product-categories h2 {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }

  .product-icon {
    padding: 20px 10px;
  }

  .product-icon i {
    font-size: 2rem;
  }

  .product-icon span {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .product-categories {
    padding: 40px 0;
  }

  .product-grid-icons {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-icon {
    padding: 15px 10px;
  }

  .product-icon i {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .product-info h2 {
    font-size: 1.8rem;
  }

  .product-info p {
    font-size: 1rem;
  }
}

/* Featured Products */
.featured-products {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.featured-products h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--secondary-color);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card h3 {
  padding: 20px 20px 10px;
  color: var(--secondary-color);
}

.product-card p {
  padding: 0 20px 20px;
  color: var(--text-color);
}

/* Product Benefits */
.product-benefits {
  padding: 0px 0;
}

.product-benefits h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--secondary-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit {
  text-align: center;
  padding: 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.benefit h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 20px;
}

.cta-section p {
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .main-nav.mobile-active .nav-links a {
    padding: 6px 15px;
    font-size: 0.85rem;

  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    justify-content: center;
  }
}

  /* Responsive Design for About Page */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .page-title h1 {
    font-size: 32px;
  }

  .value-card,
  .feature,
  .team-member {
    padding: 20px;
  }

  .team-member img {
    height: 250px;
  }

  /* Responsive Design for Products Page */
  .category-card img {
    height: 250px;
  }

  .category-content {
    padding: 15px;
  }

  .category-content h3 {
    font-size: 20px;
  }

  .product-card img {
    height: 180px;
  }

  .benefit {
    padding: 20px;
  }
}

/* Main Services */
.main-services {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

.service-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.service-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.process-section h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--secondary-color);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.process-step {
  text-align: center;
  padding: 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.process-step h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

/* Service Areas */
.service-areas {
  padding: 80px 0;
}

.service-areas h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--secondary-color);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.area {
  text-align: center;
  padding: 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.area i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.area h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
  .service-item {
    padding: 30px;
  }

  .service-icon {
    font-size: 32px;
  }

  .service-content h3 {
    font-size: 20px;
  }

  .process-step {
    padding: 20px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .area {
    padding: 20px;
  }

  .area i {
    font-size: 32px;
  }
}

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

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

/* Contact Info Box */
.contact-info-box {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 40px;
  border-radius: 10px;
}

.contact-info-box h2 {
  margin-bottom: 30px;
  color: var(--white);
}

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

.info-item i {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.info-item h3 {
  margin-bottom: 5px;
  color: var(--primary-color);
}

.info-item p {
  margin: 0;
  line-height: 1.6;
}

.info-item a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: var(--primary-color);
}

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

/* Contact Form Box */
.contact-form-box {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-box h2 {
  margin-bottom: 30px;
  color: var(--secondary-color);
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

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

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

.form-group textarea {
  resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ff4444;
}

/* Form Messages */
.form-message {
  padding: 15px 20px;
  margin-bottom: 25px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  animation: slideInDown 0.5s ease;
}

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

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

.form-message i {
  font-size: 1.2rem;
}

/* Form Validation */
.error-message {
  color: #ff4444;
  font-size: 0.9rem;
  margin-top: 5px;
  display: block;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ff4444;
  box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.1);
}

/* Loading state for button */
.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn .fa-spinner {
  margin-right: 8px;
}

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

/* Map Section */
.map-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

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

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

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 30px;
  }

  .info-item {
    margin-bottom: 20px;
  }

  .info-item i {
    font-size: 20px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px;
  }
}

/* Page Hero */
.page-hero {
  height: 30vh;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 100px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.page-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* About Content */
.about-content {
  padding: 80px 0;
}

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

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #666;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.values h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
}

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

.value-card {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.value-card i {
  font-size: 2.5rem;
  color: #8b0000;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .about-image {
    order: -1;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.services-image {
  position: relative;
}

.services-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 10px solid #fff;
  box-shadow: 0 0 0 1px #c5a572;
}

.services-text {
  padding-right: 40px;
}

.services-text h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
  line-height: 1.2;
}

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

/* Services Content Responsive */
@media (max-width: 1200px) {
  .services-content {
    gap: 40px;
  }

  .services-text h2 {
    font-size: 2.2rem;
  }

  .services-image img {
    height: 400px;
  }
}

@media (max-width: 992px) {
  .services-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .services-text {
    padding-right: 0;
    order: -1; /* Metni üste alır */
  }

  .services-text h2 {
    font-size: 2rem;
  }

  .services-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .services-image img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .services-content {
    margin-bottom: 40px;
  }

  .services-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .services-text p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .services-image img {
    height: 300px;
    border-width: 5px;
  }
}

@media (max-width: 576px) {
  .services-content {
    gap: 20px;
  }

  .services-image img {
    height: 250px;
  }

  .services-text h2 {
    font-size: 1.6rem;
  }
}

/* Guarantee Section */
.guarantee-section {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
}

.guarantee-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.guarantee-text {
  position: relative;
  border: 1px solid #c5a572;
  padding: 60px;
  margin-right: -100px;
  background: #fff;
  z-index: 1;
}

.guarantee-badge {
  position: absolute;
  top: -20px;
  right: 60px;
  background: #fff;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.guarantee-badge i {
  color: #c5a572;
  font-size: 2rem;
}

.guarantee-badge span {
  color: #c5a572;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}

.guarantee-box {
  padding: 20px 0 0;
}

.guarantee-box h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  line-height: 1.2;
  color: #333;
}

.guarantee-box p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.guarantee-box .btn {
  display: inline-block;
  background: #c5a572;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
}

.guarantee-box .btn:hover {
  background: #b39363;
  transform: translateY(-3px);
}

.guarantee-image {
  position: relative;
  height: 100%;
}

.guarantee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 600px;
}

/* Guarantee Section Responsive */
@media (max-width: 1200px) {
  .guarantee-text {
    margin-right: -50px;
    padding: 40px;
  }

  .guarantee-box h2 {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .guarantee-section {
    padding: 60px 20px;
  }

  .guarantee-content {
    grid-template-columns: 1fr;
  }

  .guarantee-text {
    margin: -60px 20px 0;
    padding: 30px;
    order: 2;
  }

  .guarantee-image {
    order: 1;
  }

  .guarantee-badge {
    top: -15px;
    right: 30px;
    padding: 10px 20px;
  }

  .guarantee-badge i {
    font-size: 1.5rem;
  }

  .guarantee-box {
    padding: 10px 0 0;
  }

  .guarantee-box h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .guarantee-image img {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .guarantee-section {
    padding: 40px 15px;
  }

  .guarantee-text {
    margin: -40px 15px 0;
    padding: 25px;
  }

  .guarantee-box h2 {
    font-size: 1.6rem;
  }

  .guarantee-box p {
    font-size: 0.95rem;
  }

  .guarantee-image img {
    min-height: 350px;
  }
}

@media (max-width: 576px) {
  .guarantee-section {
    padding: 30px 10px;
  }

  .guarantee-text {
    margin: -30px 10px 0;
    padding: 20px;
  }

  .guarantee-badge {
    padding: 8px 15px;
  }

  .guarantee-badge span {
    font-size: 0.8rem;
  }

  .guarantee-box h2 {
    font-size: 1.4rem;
  }

  .guarantee-image img {
    min-height: 300px;
  }
}

/* Video Section */
.video-section {
  padding: 100px 0;
  background-color: #fff;
}

.video-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border: 1px solid #c5a572;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-text {
  padding-right: 20px;
}

.video-text h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  line-height: 1.2;
  color: #333;
}

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

.video-text .btn {
  display: inline-block;
  background: #c5a572;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
}

.video-text .btn:hover {
  background: #b39363;
  transform: translateY(-3px);
}

/* Video Section Responsive */
@media (max-width: 1200px) {
  .video-content {
    gap: 40px;
  }

  .video-text h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .video-section {
    padding: 60px 0;
  }

  .video-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .video-text {
    padding-right: 0;
    text-align: center;
    order: 1;
  }

  .video-wrapper {
    order: 2;
  }

  .video-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .video-section {
    padding: 40px 0;
  }

  .video-content {
    gap: 30px;
  }

  .video-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .video-text p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .video-section {
    padding: 30px 0;
  }

  .video-content {
    padding: 0 15px;
  }

  .video-text h2 {
    font-size: 1.6rem;
  }
}

/* Service Section Styles */
.service-section {
  padding: 80px 0;
  background-color: #fff;
}

.service-section.reverse {
  background-color: #f9f9f9;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.service-section.reverse .service-content {
  direction: rtl;
}

.service-section.reverse .service-text {
  direction: ltr;
}

.service-image {
  position: relative;
}

.service-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 10px solid #fff;
  box-shadow: 0 0 0 1px #c5a572;
}

.service-text h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
  line-height: 1.2;
}

.service-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.profile-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.profile-category {
  display: inline-block;
  padding: 10px 20px;
  background-color: #c5a572;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.profile-category:hover {
  background-color: #b39363;
  transform: translateY(-2px);
}

.stone-types {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.stone-types li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: #666;
  font-size: 1rem;
}

.stone-types li:last-child {
  border-bottom: none;
}

/* Affiliated Section */
.affiliated-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.affiliated-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.affiliated-logos {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: center;
}

.affiliated-logo {
  max-width: 200px;
}

.affiliated-logo img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.affiliated-logo img:hover {
  filter: grayscale(0%);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: #333;
  color: #fff;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-section .btn {
  display: inline-block;
  background: #c5a572;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  font-size: 1.1rem;
}

.cta-section .btn:hover {
  background: #b39363;
  transform: translateY(-3px);
}

/* Responsive Design for Service Sections */
@media (max-width: 1200px) {
  .service-content {
    gap: 40px;
  }

  .service-text h2 {
    font-size: 2.2rem;
  }

  .service-image img {
    height: 400px;
  }
}

@media (max-width: 992px) {
  .service-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .service-section.reverse .service-content {
    direction: ltr;
  }

  .service-text {
    order: -1;
  }

  .service-text h2 {
    font-size: 2rem;
  }

  .service-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .service-image img {
    height: 350px;
  }

  .affiliated-logos {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .service-section {
    padding: 40px 0;
  }

  .service-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .service-text p {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .service-image img {
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-width: 5px;
  }

  .profile-categories {
    justify-content: center;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .service-content {
    gap: 20px;
  }

  .service-image img {
    height: auto;
    max-height: 350px;
    object-fit: contain;
  }

  .service-text h2 {
    font-size: 1.6rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }
}

/* Portfolio Styles */
.portfolio-intro {
  padding: 80px 0;
  text-align: center;
  background-color: #fff;
}

.portfolio-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.portfolio-intro p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Portfolio Filter */
.portfolio-filter {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 24px;
  background-color: #fff;
  border: 2px solid #c5a572;
  color: #c5a572;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
  font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #c5a572;
  color: #fff;
}

/* Portfolio Gallery */
.portfolio-gallery {
  padding: 20px 0;
  background-color: #fff;
}

/* Responsive Design for Portfolio */
@media (max-width: 992px) {
  .portfolio-intro h2 {
    font-size: 2.2rem;
  }

  .portfolio-intro p {
    font-size: 1.1rem;
  }

  .filter-buttons {
    gap: 15px;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .portfolio-intro {
    padding: 60px 0;
  }

  .portfolio-intro h2 {
    font-size: 2rem;
  }

  .portfolio-intro p {
    font-size: 1rem;
  }

  .filter-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .filter-btn {
    width: auto;
    min-width: 80px;
    padding: 6px 10px;
    font-size: 11px;
    text-align: center;
    border-radius: 4px;
  }
}

@media (max-width: 576px) {
  .portfolio-intro h2 {
    font-size: 1.8rem;
  }

  .filter-buttons {
    gap: 4px;
  }

  .filter-btn {
    min-width: 70px;
    padding: 5px 8px;
    font-size: 10px;
  }
}

/* Partners Section */
.partners-section {
  padding: 40px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.partners-section h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
}

.partners-section p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-item {
  transition: transform 0.3s ease;
}

.partner-item:hover {
  transform: translateY(-3px);
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  color: #c5a572;
}

.partner-logo i {
  font-size: 2rem;
  color: #c5a572;
  transition: color 0.3s ease;
}

.partner-logo:hover i {
  color: #b39363;
}

.partner-logo span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  text-align: center;
}

/* Responsive Design for Partners */
@media (max-width: 768px) {
  .partners-section {
    padding: 30px 0;
  }

  .partners-section h2 {
    font-size: 1.6rem;
  }

  .partners-section p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .partners-grid {
    gap: 30px;
  }

  .partner-logo {
    padding: 15px;
    min-width: 140px;
  }

  .partner-logo i {
    font-size: 1.8rem;
  }

  .partner-logo span {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .partners-section {
    padding: 25px 0;
  }

  .partners-section h2 {
    font-size: 1.4rem;
  }

  .partners-section p {
    font-size: 0.9rem;
  }

  .partners-grid {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
  }

  .partner-logo {
    padding: 12px;
    min-width: 120px;
  }

  .partner-logo i {
    font-size: 1.4rem;
  }

  .partner-logo span {
    font-size: 0.75rem;
  }
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #c5a572;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  pointer-events: all;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: #c5a572;
  transform: scale(1.1);
}

.lightbox-prev {
  left: 0;
}

.lightbox-next {
  right: 0;
}

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

/* Remove gallery overlay styles */
.gallery-overlay {
  display: none;
}

/* Update gallery grid for masonry layout */
.gallery-grid {
  column-count: 3;
  column-gap: 20px;
  line-height: 0;
}

.gallery-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
  page-break-inside: avoid;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  /* Safari için ek optimizasyonlar */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  /* Safari uyumluluğu için object-fit kaldırıldı */
  max-width: 100%;
  vertical-align: middle;
  /* Safari için ek optimizasyonlar */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  /* Resim yükleme optimizasyonu */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Responsive adjustments for gallery */
@media (max-width: 1200px) {
  .gallery-grid {
    column-count: 2;
    column-gap: 15px;
  }
  
  .gallery-item {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    column-count: 2;
    column-gap: 10px;
  }
  
  .gallery-item {
    margin-bottom: 10px;
  }
  
  .lightbox-close {
    font-size: 2.5rem;
    top: 15px;
    right: 20px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    font-size: 1.5rem;
    padding: 10px 15px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    column-count: 1;
  }
  
  .lightbox-nav {
    padding: 0 10px;
  }
  
  .lightbox-close {
    font-size: 2rem;
    top: 10px;
    right: 15px;
  }
}

/* Thank You Page Styles */
.thank-you-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-icon {
  margin-bottom: 30px;
}

.thank-you-icon i {
  font-size: 5rem;
  color: #28a745;
  animation: bounceIn 1s ease;
}

.thank-you-section h1 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}

.thank-you-section h2 {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 30px;
  font-weight: 400;
}

.thank-you-section p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.response-time {
  background-color: #e3f2fd;
  border: 1px solid #bbdefb;
  border-radius: 25px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1976d2;
  font-weight: 500;
  margin-bottom: 40px;
}

.thank-you-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.thank-you-actions .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 25px;
  font-size: 1rem;
}

.quick-contact {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quick-contact h3 {
  color: #333;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.contact-methods {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c5a572;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid #c5a572;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-method:hover {
  background-color: #c5a572;
  color: #fff;
  transform: translateY(-2px);
}

/* Next Steps Section */
.next-steps {
  padding: 80px 0;
  background-color: #fff;
}

.next-steps h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 50px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 30px 20px;
  background-color: #f8f9fa;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #c5a572, #b39363);
}

.step-icon {
  margin-bottom: 20px;
}

.step-icon i {
  font-size: 2.5rem;
  color: #c5a572;
  margin-bottom: 15px;
}

.step h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

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

/* Animations */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design for Thank You Page */
@media (max-width: 768px) {
  .thank-you-section {
    padding: 100px 0 60px;
  }

  .thank-you-icon i {
    font-size: 4rem;
  }

  .thank-you-section h1 {
    font-size: 2.5rem;
  }

  .thank-you-section h2 {
    font-size: 1.3rem;
  }

  .thank-you-actions {
    flex-direction: column;
    align-items: center;
  }

  .thank-you-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .contact-method {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .next-steps h2 {
    font-size: 2rem;
  }

  .steps-grid {
    gap: 20px;
  }

  .step {
    padding: 20px 15px;
  }

  .step-icon i {
    font-size: 2rem;
  }

  .step h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .thank-you-section {
    padding: 80px 0 40px;
  }

  .thank-you-section h1 {
    font-size: 2rem;
  }

  .response-time {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .quick-contact {
    padding: 20px;
  }

  .next-steps {
    padding: 60px 0;
  }
}

/* Limestone Intro Section */
.limestone-intro {
  padding: 40px 0;
  background-color: var(--white);
  text-align: center;
}

.limestone-intro h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

/* Responsive tasarım için mobil optimizasyonları */
@media (max-width: 768px) {
  .limestone-intro {
    padding: 30px 0;
  }
  
  .limestone-intro h2 {
    font-size: 1.8rem;
    line-height: 1.1;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .limestone-intro {
    padding: 25px 0;
  }
  
  .limestone-intro h2 {
    font-size: 1rem;
    line-height: 1.1;
    padding: 0 10px;
  }
}

@media (max-width: 360px) {
  .limestone-intro h2 {
    font-size: 1.3rem;
  }
}
