/* Base Styles */
:root {
            --primary-color: #a67c52;
            --primary-dark: #8a6642;
            --secondary-color: #2c3e50;
            --text-color: #333;
            --text-light: #666; 
            --light-color: #f8f9fa; 
            --border-color: #e1e1e1; 
            --success-color: #28a745; 
            --danger-color: #dc3545; 
            --primary-transparent: rgba(166, 124, 82, 0.1);
            --white: #ffffff;
            --off-white: #f8f9fa;
            --light-gray: #e9ecef;
            --gray: #6c757d;
            --dark: #212529;
            --gold: #d4af37;
            
            --transition: all 0.3s ease;
            --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
            --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
            --shadow-primary: 0 5px 15px rgba(166, 124, 82, 0.3);

            --max-width: 1200px; 
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
            --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.section-header.left-align {
  text-align: left;
}

.section-header.left-align h2::after {
  left: 0;
  transform: none;
}

.btn {
  display: inline-block;
  padding: 12px 48px;
  border-radius: 100px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  cursor: pointer;
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #1a2530;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}
.btn-outline-sec{
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}
.btn-outline-sec:hover {
  background-color: var(--secondary-color);
  color: white;
}
.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo img{
  width: 120px;
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  margin-right: 30px;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-icons {
  display: flex;
  align-items: center;
}

.nav-icons a {
  margin-left: 20px;
  font-size: 1.2rem;
  position: relative;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background-color: #f9f7f5;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  padding-right: 50px;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  text-align: right;
}

/* Features Section */
.features {
  padding: 60px 0;
  background-color: white;
}

.features .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.feature-item p {
  color: var(--text-light);
}

/* Products Section */
.products {
  padding: 80px 0;
  background-color: #f9f7f5;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.overlay-icon {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .overlay-icon {
  opacity: 1;
  transform: translateY(0);
}

.overlay-icon:hover {
  background-color: var(--primary-color);
  color: white;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.product-rating {
  margin-bottom: 10px;
  color: #ffc107;
}

.product-rating span {
  color: var(--text-light);
  margin-left: 5px;
}

.product-price {
  margin: 8px 0;
  display: grid;
  align-items: center;
}

.current-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.old-price {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: none;
}

.view-all {
  text-align: center;
  margin-top: 50px;
}

/* About Section 
.about {
  padding: 80px 0;
  background-color: #fff;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.about-stats {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.about-image{
  background-color: red;
  width: 1200px;
  height: 300px;
  right: -200px;
  position: absolute;
  flex: 1;
}

.about-image img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}
*/
.about-section {
  padding: 120px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><text x="10%" y="50%" font-family="Arial" font-size="120" opacity="0.05" transform="rotate(-30)">Hakkımızda Hakkımızda</text></svg>');
  background-repeat: repeat;
  opacity: 0.1;
  z-index: 1;
}

.container-abouts {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  padding: 46px;
  background-color: #f9f7f5;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.text-content {
  flex: 1;
  max-width: 550px;
}

.text-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.text-content p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
  line-height: 1.8;
}

.image-content {
  flex: 1;
  max-width: 500px;
}

.image-content img {
  width: 560px;
  height: 600px;
  margin-top: -96px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .content-wrapper {
      flex-direction: column;
  }
  
  .text-content, .image-content {
      max-width: 100%;
  }
  .image-content {
      margin-top: 120px;
  }
  .image-content img{
      width: 100%;
      height: auto;
  }
}

@media (max-width: 768px) {
  .about-section {
      padding: 60px 0;
  }
  
  .text-content h1 {
      font-size: 30px;
  }
  
  .text-content p {
      font-size: 15px;
  }
}
/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: #f9f7f5;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.testimonial-content {
  background-color: #f9f7f5;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.testimonial-rating {
  color: #ffc107;
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 30px;
  color: var(--text-color);
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.prev-btn, .next-btn {
  background-color: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary-color);
  cursor: pointer;
  transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
  color: var(--primary-color);
}

.testimonial-dots {
  display: flex;
  margin: 0 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
}

/*Newsletter Section*/
.newsletter {
  padding: 40px 0;
  background-color: var(--secondary-color);
  color: white;
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newsletter-text {
  flex: 1;
}

.newsletter-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.newsletter-text p {
  opacity: 0.8;
}

.newsletter-form {
  flex: 1;
  display: flex;
  max-width: 500px;
  margin-left: auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 1000px 0 0 1000px;
  font-size: 1rem;
}

.newsletter-form button {
  border-radius: 0 1000px 1000px 0;
  border: none;
  padding: 16px;
}


/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: #f9f7f5;
}

.contact-content {
  display: flex;
  gap: 50px;
}

.contact-info, .contact-form {
  flex: 1;
}

.contact-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 20px;
  width: 30px;
}

.contact-item h3 {
  margin-bottom: 5px;
}

.social-links {
  display: flex;
  margin-top: 30px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}




/* Footer */
footer {
  background-color: #2c3e50;
  color: white;
  padding: 80px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}
.footer-logo{
  margin: 10px 0px;
}
.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-column p {
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
}

.footer-social a {
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary-color);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-color);
  padding-left: 5px;
}

.opening-hours li {
  margin-bottom: 10px;
  opacity: 0.8;
}

.opening-hours span {
  font-weight: 600;
  margin-right: 5px;
}

.payment-methods {
  margin-top: 20px;
}

.payment-methods i {
  font-size: 1.8rem;
  margin-right: 10px;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  opacity: 0.8;
}

.footer-bottom-links a {
  margin-left: 20px;
  opacity: 0.8;
  margin-top: 10px;
  text-align: center;
}

.footer-bottom-links a:hover {
  opacity: 1;
  color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  box-shadow: var(--box-shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .product-grid, .category-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero .container {
      flex-direction: column;
  }
  
  .hero-content {
      padding-right: 0;
      margin-bottom: 50px;
      text-align: center;
  }
  
  .hero-buttons {
      justify-content: center;
  }
  
  .features .container {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .product-grid, .category-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .about-content {
      flex-direction: column;
  }
  
  .about-text {
      margin-bottom: 50px;
  }
  
  .newsletter-content {
      flex-direction: column;
      text-align: center;
  }
  
  .newsletter-text {
      margin-bottom: 30px;
  }
  
  .newsletter-form {
      margin: 0 auto;
      width: 100%;
  }
  
  .contact-content {
      flex-direction: column;
  }
  
  .footer-content {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
      display: block;
  }
  
  .nav-links {
      position: fixed;
      left: -100%;
      top: 80px;
      flex-direction: column;
      background-color: white;
      width: 100%;
      text-align: center;
      transition: var(--transition);
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
      padding: 20px 0;
      margin: 0;
  }
  
  .nav-links.active {
      left: 0;
  }
  
  .nav-links li {
      margin: 15px 0;
  }
  
  .nav-icons {
      margin-right: 50px;
  }
  
  .hero-content h1 {
      font-size: 2.5rem;
  }
  
  .about-stats {
      flex-direction: column;
      gap: 20px;
  }
  
  .footer-bottom {
      flex-direction: column;
      gap: 15px;
      text-align: center;
  }
  
  .footer-bottom-links a {
      margin: 0 10px;
  }
}

@media (max-width: 576px) {
  .features .container, .product-grid, .category-grid {
      grid-template-columns: 1fr;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
  }
  
  .hero-buttons {
      flex-direction: column;
      gap: 15px;
  }
  
  .btn {
      width: 100%;
  }
  
  .section-header h2 {
      font-size: 2rem;
  }
  
  .testimonial-content {
      padding: 30px 20px;
  }
}

/*ÜRÜNLER SAYFASI*/

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    touch-action: pan-y;
}

.slide {
    min-width: 100%;
    aspect-ratio: 3 / 1; /* 1200x400 oranı */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    user-select: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide:nth-child(1) { background-image: url(resources/banner1.jpg); }
.slide:nth-child(2) { background-image: url(resources/banner2.jpg); }
.slide:nth-child(3) { background-image: url(resources/banner3.jpg); }

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.8rem;
    color: #333;
    border: none;
    outline: none;
    z-index: 10;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 10px;
    }
    .slide {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .slide {
        font-size: 2rem;
    }
    
    .nav-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .slide {
        font-size: 1.8rem;
    }
    
    .nav-button {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 576px) {
    .slide {
        font-size: 1.5rem;
    }
    
    .nav-button {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .prev {
        left: 10px;
    }
    
    .next {
        right: 10px;
    }
    
    .dots-container {
        bottom: 20px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

.breadcrumb-wrapper {
  background-color: #f9f7f5;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
}

.breadcrumb-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  margin: 2px 0;
}

.breadcrumb li a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.breadcrumb li a:hover {
  color: #333;
  text-decoration: underline;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: #888;
}

.home-icon {
  margin-right: 5px;
  color: #555;
}

.results-count {
  font-size: 14px;
  color: #777;
  white-space: nowrap;
}

/* Responsive styles */
@media (max-width: 768px) {
  .breadcrumb-container {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .results-count {
      margin-top: 8px;
      align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .breadcrumb li a {
      font-size: 13px;
  }
  
  .results-count {
      font-size: 13px;
  }
  
  .breadcrumb-container {
      padding: 10px 0;
  }
}









/*ALİNA-------------------ALİNA-------------------ALİNA*/
.mb-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Stilleri */
.mb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mb-logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #8b5a2b;
}

.mb-menu {
    display: flex;
    gap: 30px;
}

.mb-link {
    font-weight: 500;
    transition: color 0.3s;
}

.mb-link:hover {
    color: #8b5a2b;
}

.mb-contact-info {
    display: flex;
    align-items: center;
}

.mb-phone {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mb-phone i {
    color: #8b5a2b;
}

.mb-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mb-bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.4s;
}

/* Hero Bölümü Stilleri */
.mb-hero {
    padding: 40px 0;
}

.mb-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.mb-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mb-main-image {
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    background-color: #f9f7f5;
    width: 530px;
    height: 335px;
}

.mb-main-image img {
    object-fit: contain;
}

.mb-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.mb-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.mb-thumb.active {
    border-color: #8b5a2b;
}

.mb-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mb-category {
    color: #777;
    font-size: 14px;
}

.mb-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.mb-model {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.mb-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.mb-features ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.mb-features li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mb-features i {
    color: #8b5a2b;
}

.mb-colors h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.3s;
}

.color-option:hover {
    transform: scale(1.1);
}

.color-option.active {
    border-color: #333;
}

.color-option.beige {
    background-color: #e8e0d8;
}

.color-option.gray {
    background-color: #a0a0a0;
}

.color-option.darkgray {
    background-color: #202020;
}

.color-option.brown {
    background-color: #8b5a2b;
}

.color-option.darkblue {
    background-color: #1a365d;
}

.mb-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.mb-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mb-btn:hover {
    transform: translateY(-2px);
}

.call-now {
    background-color: #8b5a2b;
    color: white;
    flex: 1;
}

.call-now:hover {
    background-color: #704626;
}

.request-price {
    background-color: #333;
    color: white;
    flex: 1;
}

.request-price:hover {
    background-color: #222;
}

.wishlist {
    background-color: #f0f0f0;
    color: #333;
    width: 46px;
    padding: 0;
}

.wishlist:hover {
    background-color: #e0e0e0;
}

.mb-delivery {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.mb-delivery i {
    margin-right: 8px;
    color: #8b5a2b;
}

/* Ürün Detayları Bölümü */
.mb-details {
    margin: 40px 0;
}

.mb-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.mb-tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.mb-tab-btn.active {
    border-bottom-color: #8b5a2b;
    color: #8b5a2b;
}

.mb-tab-pane {
    display: none;
    padding: 20px;
    background-color: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mb-tab-pane.active {
    display: block;
}

.mb-tab-pane h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
}

.mb-tab-pane p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.mb-image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.mb-image-gallery img {
    border-radius: 5px;
    width: 100%;
    height: auto;
}

.mb-specs {
    width: 100%;
    border-collapse: collapse;
}

.mb-specs tr {
    border-bottom: 1px solid #eee;
}

.mb-specs td {
    padding: 12px;
}

.mb-specs tr td:first-child {
    font-weight: 600;
    width: 40%;
    background-color: #f9f7f5;
}

.mb-dimension-title {
    margin: 30px 0 15px;
    font-size: 18px;
}

.mb-dimensions {
    text-align: center;
    margin-top: 20px;
}

.mb-dimensions img {
    max-width: 100%;
    border-radius: 5px;
}

.mb-review-summary {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.mb-average-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.mb-bar{
  background-color: #ffc107;
  height: 10px;
  border-radius: 5px;
  margin: 0 10px 0 0;
}
.rating-number {
    font-size: 48px;
    font-weight: 700;
    color: #333;
}

.rating-stars {
    color: #ffc107;
    font-size: 20px;
}

.total-reviews {
    color: #777;
    font-size: 14px;
}

.mb-rating-bars {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.rating-label {
    width: 60px;
}

.bar-container {
    flex: 1;
    height: 10px;
    background-color: #eee;
    border-radius: 5px;
    margin: 0 10px;
}

.rating-count {
    width: 30px;
    text-align: right;
    color: #777;
}

.mb-user-reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mb-review {
    background-color: #f9f7f5;
    border-radius: 8px;
    padding: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background-color: #8b5a2b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.reviewer-details h4 {
    margin-bottom: 5px;
}

.review-rating {
    color: #ffc107;
}

.review-date {
    color: #777;
    font-size: 14px;
}

/* Benzer Ürünler Bölümü */
.mb-related {
    margin: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #333;
}

.mb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mb-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.mb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mb-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #8b5a2b;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.mb-badge.bestseller {
    background-color: #d4af37;
}

.mb-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.mb-card-content {
    padding: 15px;
}

.mb-card-title {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.mb-card-model {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
}

@media (max-width: 1024px) {
    .mb-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .mb-showcase {
        grid-template-columns: 1fr;
    }
    
    .mb-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mb-menu {
        display: none;
    }
    
    .mb-hamburger {
        display: flex;
    }
    
    .mb-review-summary {
        flex-direction: column;
    }
    
    .mb-image-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .mb-grid {
        grid-template-columns: 1fr;
    }
    
    .mb-actions {
        flex-direction: column;
    }
    
    .mb-tabs {
        flex-direction: column;
    }
    
    .mb-tab-btn {
        width: 100%;
        text-align: center;
    }
}








/*****----------ABOUT PAGE---------------------------------------ABOUT PAGE------------------------ABOUT PAGE-------------------------------------------------*/
.fm-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Stilleri */
        .fm-header {
            background-color: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            max-width: 1200px;
            margin: 0 auto;
        }

        .fm-header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .fm-brand {
            font-size: 26px;
            font-weight: 700;
            color: #34495e;
            text-decoration: none;
            letter-spacing: 1px;
        }

        .fm-brand-accent {
            color: #a67c52;
        }

        .fm-nav {
            display: flex;
            list-style: none;
        }

        .fm-nav-item {
            margin-left: 35px;
        }

        .fm-nav-link {
            text-decoration: none;
            color: #34495e;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            padding-bottom: 5px;
        }

        .fm-nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: #a67c52;
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }

        .fm-nav-link:hover {
            color: #a67c52;
        }

        .fm-nav-link:hover:after {
            width: 100%;
        }

        /* Hero Bölümü - 100% genişlikte */
        .fm-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1556228453-efd6c1ff04f6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            width: 100%;
        }

        .fm-hero-content {
            max-width: 800px;
            padding: 0 20px;
        }

        .fm-hero-title {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 25px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .fm-hero-subtitle {
            font-size: 22px;
            font-weight: 300;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .fm-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #a67c52;
            color: white;
            text-decoration: none;
            border-radius: 100px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #a67c52;
        }

        .fm-btn:hover {
            background-color: transparent;
            color: #a67c52;
        }

        /* Bölüm Stilleri */
        .fm-section {
            padding: 80px 0;
        }

        /* Değerlerimiz ve İletişim için 100% arkaplan */
        .fm-section-alt {
            background-color: #f9f7f5;
            width: 100%;
            padding: 64px;
        }

        .fm-section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .fm-section-title {
            font-size: 38px;
            color: #34495e;
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }

        .fm-section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background-color: #a67c52;
        }

        .fm-section-subtitle {
            font-size: 18px;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }

        .fm-about-container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: center;
        }

        .fm-about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
            height: auto;
        }

        .fm-about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .fm-about-image:hover img {
            transform: scale(1.03);
        }

        .fm-about-image:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid #a67c52;
            border-radius: 10px;
            top: 15px;
            left: 15px;
            z-index: -1;
        }

        .fm-about-content {
            flex: 1;
            min-width: 300px;
        }

        .fm-about-heading {
            font-size: 28px;
            margin-bottom: 25px;
            color: #2c3e50;
            position: relative;
            padding-bottom: 15px;
        }

        .fm-about-heading:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #a67c52;
        }

        .fm-about-text {
            margin-bottom: 20px;
            color: #5d6d7e;
        }

        /* Değerler Bölümü */
        .fm-values-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .fm-value-box {
            background-color: #fff;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            flex: 1;
            min-width: 280px;
            max-width: 380px;
            text-align: center;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }

        .fm-value-box:hover {
            transform: translateY(-10px);
            border-bottom: 3px solid #a67c52;
        }

        .fm-value-icon {
            font-size: 46px;
            color: #a67c52;
            margin-bottom: 25px;
        }

        .fm-value-title {
            font-size: 22px;
            margin-bottom: 20px;
            color: #2c3e50;
        }

        .fm-value-text {
            color: #7f8c8d;
        }

        /* Ekip Bölümü */
        .fm-team-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
        }

        .fm-team-member {
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            text-align: center;
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .fm-team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .fm-team-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .fm-team-info {
            padding: 25px 20px;
        }

        .fm-team-name {
            font-size: 22px;
            margin-bottom: 5px;
            color: #2c3e50;
        }

        .fm-team-position {
            color: #a67c52;
            font-weight: 500;
            margin-bottom: 15px;
            display: block;
        }

        .fm-team-bio {
            color: #7f8c8d;
            margin-bottom: 20px;
            font-size: 15px;
        }

        .fm-social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .fm-social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #f8f9fa;
            color: #2c3e50;
            border-radius: 50%;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 18px;
        }

        .fm-social-link:hover {
            background-color: #a67c52;
            color: white;
        }

        /* İletişim Bölümü */
        .fm-contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
        }

        .fm-contact-info {
            flex: 1;
            min-width: 300px;
        }

        .fm-contact-heading {
            font-size: 28px;
            margin-bottom: 30px;
            color: #2c3e50;
            position: relative;
            padding-bottom: 15px;
        }

        .fm-contact-heading:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #a67c52;
        }

        .fm-contact-item {
            display: flex;
            margin-bottom: 30px;
        }

        .fm-contact-icon {
            font-size: 24px;
            color: #a67c52;
            margin-right: 20px;
            min-width: 24px;
        }

        .fm-contact-content h4 {
            font-size: 18px;
            margin-bottom: 8px;
            color: #2c3e50;
        }

        .fm-contact-content p {
            color: #7f8c8d;
        }

        .fm-map {
            flex: 1;
            min-width: 300px;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .fm-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        .fm-footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 70px 0 20px;
            width: 100%;
        }

        .fm-footer-container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            margin-bottom: 50px;
        }

        .fm-footer-col {
            flex: 1;
            min-width: 200px;
        }

        .fm-footer-title {
            font-size: 20px;
            margin-bottom: 25px;
            color: #a67c52;
            position: relative;
            padding-bottom: 15px;
        }

        .fm-footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #a67c52;
        }

        .fm-footer-about {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .fm-footer-list {
            list-style: none;
        }

        .fm-footer-item {
            margin-bottom: 12px;
        }

        .fm-footer-link {
            color: #ecf0f1;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }

        .fm-footer-link:before {
            content: '→';
            margin-right: 8px;
            color: #a67c52;
            transition: all 0.3s ease;
        }

        .fm-footer-link:hover {
            color: #a67c52;
            padding-left: 5px;
        }

        .fm-footer-contact {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .fm-footer-contact-icon {
            color: #a67c52;
            margin-right: 15px;
            font-size: 18px;
        }

        .fm-footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(236, 240, 241, 0.1);
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .fm-hero-title {
                font-size: 42px;
            }
            
            .fm-section {
                padding: 60px 0;
            }
            
            .fm-section-title {
                font-size: 32px;
            }
            
            .fm-about-heading {
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .fm-header-inner {
                flex-direction: column;
            }
            
            .fm-nav {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .fm-nav-item {
                margin: 0 15px 10px;
            }
            
            .fm-hero {
                height: 450px;
            }
            
            .fm-hero-title {
                font-size: 36px;
            }
            
            .fm-hero-subtitle {
                font-size: 18px;
            }
            
            .fm-section-title {
                font-size: 28px;
            }
            
            .fm-about-image:before {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .fm-hero-title {
                font-size: 30px;
            }
            
            .fm-hero-subtitle {
                font-size: 16px;
            }
            
            .fm-section-title {
                font-size: 26px;
            }
            
            .fm-btn {
                padding: 10px 25px;
                font-size: 14px;
            }
        }




/**------CONTACT------CONTACT------CONTACT-----CONTACT------CONTACT**/
/* Ana Container */
.contact-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* İletişim Bilgileri Bölümü */
.contact-info {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), /* Renk katmanı */
    url('resources/about.jpg'); /* Fotoğraf */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.contact-info::before,
.contact-info::after {
    content: '';
    position: absolute;
    background-color: rgba(0,0,0, 0.2);
    border-radius: 50%;
    z-index: -98;
}

.contact-info::before {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
}

.contact-info::after {
    width: 150px;
    height: 150px;
    bottom: -50px;
    right: -50px;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.info-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.icon-container {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.social-links {
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #b08968;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #c69c7b;
    transform: translateY(-3px);
}

/* Form Bölümü */
.contact-form-container {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.contact-form-container::before,
.contact-form-container::after {
    content: '';
    position: absolute;
    background-color: rgba(255, 115, 0, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.contact-form-container::before {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
}

.contact-form-container::after {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
}

.contact-form {
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 1;
}

.form-subtitle {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b08968;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #b08968;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: auto;
    max-width: 100%;
}

.submit-btn:hover {
    background-color: #9a7859;
}

.submit-btn i {
    font-size: 0.9rem;
}

/* Responsive Tasarım */
@media (min-width: 768px) {
    .form-row {
        flex-direction: row;
    }
}

@media (min-width: 992px) {
    .contact-container {
        flex-direction: row;
        min-height: 600px;
    }
    
    .contact-info {
        width: 40%;
    }
    
    .contact-form-container {
        width: 60%;
    }
    
    .contact-form {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .contact-info, 
    .contact-form-container {
        width: 100%;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-info, 
    .contact-form {
        padding: 1.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .submit-btn {
        width: 100%;
        padding: 0.8rem 1rem;
    }
}