:root {
  --text-main: #1F1F1F;
  --text-muted: #6B6B6B;
  --accent: #ffffff;
  --nav-hover: #7b7b7b;
  --accent-light: #7b7b7b52;
  --highlight: #BFA694;
  --bg-light: #F5F5F5;
  --bg-section: #7b7b7b6e;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
}

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
  z-index: 1000;
  transition: background-color 0.3s ease, padding 0.3s ease;
}

.nav-menu.scrolled {
  padding: 0.6rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo {
  width: 70px;
  height: auto;
  transition: width 0.3s ease;
}

.nav-menu.scrolled .logo {
  width: 50px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 0.3rem 0.6rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--nav-hover);
  border-bottom: 2px solid #1F1F1F;
}

.hamburger-wrapper {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hamburger-wrapper:hover,
.hamburger-wrapper.active {
  border-color: var(--accent-light);
  background-color: rgba(0, 0, 0, 0.03);
}

.hamburger-label {
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 500;
  margin: 0;
}

.hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger-lines span {
  width: 25px;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 2rem;
    background-color: var(--bg-light);
    flex-direction: column;
    width: 200px;
    padding: 1rem;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .hamburger-wrapper {
    display: flex;
  }

  .nav-links.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links li {
    margin: 0.5rem 0;
  }
}

#hero-section {
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  position: relative;
}

.slider-overlay h2 {
  font-style: italic;
  font-weight: 700;
  font-size: 2.5rem;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  position: relative;
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.slider-overlay {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
  opacity: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
}

.slider-overlay.animate {
  animation: slideFadeUp 1.2s ease forwards;
}

@keyframes slideFadeUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 50px);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 1024px) {
  .slider-overlay {
    font-size: 1.1rem;
    padding: 0.8rem 1.2rem;
  }

  .slider-overlay h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .slider-container {
    height: 60vh;
  }

  .slider-overlay {
    font-size: 1rem;
    padding: 0.7rem 0.8rem;
    bottom: 8%;
  }

  .slider-overlay h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .slider-container {
    height: 40vh;
  }

  .slider-overlay {
    font-size: 0.95rem;
    padding: 0.5rem 0.4rem;
    bottom: 8%;
  }

  .slider-overlay h2 {
    font-size: 1rem;
  }
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #fff;
  background: rgb(0 0 0 / 0%);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.3s ease;
  z-index: 10;
  display: inline-block;
}

.arrow:hover {
  transform: translateY(-50%) scale(1.4);
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

main {
  margin: 0 auto;
}

main section {
  min-height: 800px;
  margin-bottom: 4rem;
}

main section h2 {
  color: var(--text-main);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  padding-bottom: 0.3rem;
  text-align: center;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

main section p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-section {
  background: var(--bg-section);
  color: var(--text-main);
  padding: 90px 5%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 48px;
  align-items: center;
}

.kicker {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #2c2c2c;
  position: relative;
  margin-bottom: 5rem;
}

.kicker::after {
  content: "";
  width: 25%;
  height: 3px;
  background: linear-gradient(91deg, #858585, #7d7d7d);
  display: block;
  margin: 8px auto 0;
  border-radius: 2px;
  box-shadow: 0 2px 4px #9E9E9E;
}

.about-text {
  margin-right: 3rem;
}

.about-text h2 {
  font-size: 2.6rem;
  line-height: 1.02;
  color: var(--text-main);
  max-width: 760px;
  margin-bottom: 3rem;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 760px;
  font-weight: 600;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-visual img {
  width: 100%;
  max-width: 600px;
  border-radius: 18px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-visual img:hover {
  transform: scale(1.04);
}

@media (max-width: 1100px) {
  .about-inner {
    grid-template-columns: 1fr 440px;
    gap: 36px;
  }

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

  .kicker {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }

}

@media (max-width: 880px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .kicker {
    font-size: 1.6rem;
    margin-top: 0;
    text-align: center;
    word-break: break-word;
    margin-bottom: 2rem;
  }

  .about-text {
    margin-right: 0;
  }

  .about-text h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .about-text p {
    margin: 0 auto 16px;
    font-size: 0.98rem;
  }

  .about-visual img {
    max-width: 86%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 40px 2%;
  }

  .about-inner {
    gap: 18px;
  }

  .kicker {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .about-text h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .about-text p {
    font-size: 0.92rem;
    margin-bottom: 10px;
  }

  .about-visual img {
    max-width: 98%;
    border-radius: 10px;
  }
}

.products-section {
  padding: 50px 5%;
  text-align: center;
}


.urun-info-pads {
  display: flex;
  justify-content: center; 
  align-items: center;     
  gap: 20px;
  margin-top: 30px;
}

.urun-info-pads.top-info {
  margin-bottom: 40px;
}

.urun-info-pads.bottom-info {
  margin-top: 40px;
}

.info-pad {
  background: var(--bg-section);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(77, 76, 76, 0.19);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 10rem;
  width: 100%;
  text-align: center;
}

.info-pad:hover {
  transform: translateY(-5px);
}

.info-pad h3 {
  color: #2c2c2c;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.info-pad p {
  color: #333;
  line-height: 1.5;
  font-size: 0.95rem;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: #ffffff !important;
  font-size: 24px;
  font-weight: bold;
}

.products-swiper {
  padding-right: 20px;
}


.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  aspect-ratio: 1 / 1;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.04);
}

.product-card p {
  display: none;
}

.product-card:hover p {
  display: block;
}

.product-card h3 {
  padding: 15px;
  font-size: 1.1rem;
  color: #333;
  text-align: center;
}

.product-img {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.fiyat-btn {
  background: #3a3a3a;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
}

.makine-gallery {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 4rem;
  margin-top: 30px;
  flex-wrap: wrap;
}

.makine-item {
  flex: 1 1 30%;
  max-width: 30rem;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  aspect-ratio: 1/1;
}

.makine-item img {
  width: 100%;
  height: 90%;
  object-fit: cover;
  display: block;
}

.makine-item:hover {
  transform: translateY(-5px) scale(1.03);
}

.makine-caption {
  background-color: #fff;
  padding-bottom: 1rem;
  text-align: center;
  
}

.makine-caption p {
  margin: 0;
  color:var(--text-main);
  font-size: 1rem;
}


@media (max-width: 768px) {
  .makine-caption {
    padding: 8px;
    font-size: 0.8rem;
  }
}



@media (max-width: 1024px) {
  .urun-info-pads {
    gap: 12px;
  }

  .info-pad {
    aspect-ratio: 1 / 1;
    padding: 10px;
    font-size: 0.90rem;
    border-radius: 10px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
}


@media (max-width: 768px) {
  .urun-info-pads {
    flex-direction: column;
    gap: 10px;
  }

  .info-pad {
    aspect-ratio: 1 / 1;
    padding: 4px;
    font-size: 0.75rem;
    border-radius: 6px;
    word-break: break-word;
    overflow-wrap: break-word;
    flex: unset !important;
  }

  .swiper-wrapper {
    display: flex;
    gap: 16px;
  }

  .swiper-slide {
    flex: 0 0 auto;
    width: 70%;
    min-width: 120px;
  }

  .product-card {
    margin-right: 0;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

  .makine-gallery {
    flex-direction: column;
    gap: 15px;
  }

  .makine-item {
    max-width: 100%;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .products-section {
    padding: 30px 2%;
  }

  .info-pad {
    font-size: 0.82rem;
    padding: 8px;
    border-radius: 6px;
    min-height: 200px;
    height: 200px;
    aspect-ratio: 1 / 1;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .swiper-slide {
    width: 80%;
    min-width: 90px;
  }

  .product-card h3 {
    font-size: 0.95rem;
    padding: 8px;
  }
}


#gallery {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background-color: var(--bg-section);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}


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


.gallery-item-wrapper:hover .gallery-item {
  transform: scale(1.05);
}

.gallery-item-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 49, 63, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-item-wrapper:hover::after {
  opacity: 1;
}

.gallery-filters {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 10px 25px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  gap: 1rem;
  z-index: 1000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-filters.visible {
  display: inline-block;
}

.filter-btn {
  position: relative;
  background: transparent;
  border: none;
  color: #333;
  font-weight: 600;
  padding: 11px 20px;
  cursor: pointer;
  z-index: 2;
  border-radius: 4px;
  user-select: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.filter-btn.active {
  color: white;
  font-weight: 700;
}

.filter-btn.visible {
  display: grid;
}

.filter-slider {
  position: absolute;
  height: 40px;
  background: black;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  will-change: left, width;
}



.gallery-intro {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-muted);
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

.gallery-intro {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-muted);
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .gallery-grid {
    column-count: 2;
  }

  .gallery-intro {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }
}

@media (max-width: 768px) {
  .gallery-intro {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    column-count: 1;
  }

  .gallery-intro {
    font-size: 0.92rem;
    margin-bottom: 0.7rem;
  }
}

.gallery-grid>* {
  overflow: hidden;
  cursor: pointer;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-grid video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.gallery-grid img:hover,
.gallery-grid video:hover {
  transform: scale(1.03);
}


@media (max-width: 768px) {
  .gallery-filters {
    display: none;
  }

  .gallery-filters.visible {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 90%;
    padding: 10px 0;
    box-shadow: none;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    left: 1rem;
    transform: none;
    overflow-x: auto;
    gap: 8px;
  }

  .filter-btn {
    flex: 0 0 auto;
    padding: 10px 16px;
    min-width: 70px;
    text-align: center;
    border-radius: 8px;
    white-space: nowrap;
  }
}

.gallery-item-wrapper {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 250px;
  transition: transform 0.3s ease;
}

.gallery-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.gallery-item-wrapper:hover .gallery-caption {
  opacity: 1;
}

.gallery-item-wrapper.hidden {
  display: none;
}

.hidden {
  display: none !important;
}

.gallery-more-section {
  text-align: center;
  margin-top: 5rem;
}

#show-more-btn {
  background: black;
  color: white;
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-bottom: 1rem;
}

#show-more-btn:hover {
  background: #333;
}

.gallery-description {
  color: #555;
  margin-bottom: 0.5rem;
}

#show-less-btn {
  background: black;
  color: white;
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-bottom: 1rem;
}

#show-less-btn:hover {
  background: #333;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: grid;
  place-items: center;
  z-index: 9999;
}

.lightbox.hidden {
  display: none;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  overflow: hidden;
  border-radius: 10px;
}

.lightbox-content img,
.lightbox-content video {
  width: 100%;
  height: auto;
  max-height: 90vh;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  font-size: 2.5rem;
  padding: 0.5rem 1rem;
  color: white;
  cursor: pointer;
  z-index: 10000;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.5);
}

.lightbox-arrow.left {
  left: 30px;
}

.lightbox-arrow.right {
  right: 30px;
}

.lightbox-arrow.hidden {
  display: none;
}

.contact-section {
  width: 100%;
  padding: 3rem 2rem;
  background-color: #2F2F2F;
  color: #f0f0f0;
  margin-top: 5rem;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form h2 {
  margin-bottom: 1.5rem;
  color: var(--accent);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  border-bottom: 2px solid var(--accent);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.2rem;
  border: none;
  background-color: #444;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background-color: #555;
  outline: none;
  box-shadow: 0 0 8px rgba(245, 215, 161, 0.6);
}

.contact-form button {
  width: 100%;
  padding: 1rem;
  background-color: var(--accent);
  color: var(--text-main);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(245, 215, 161, 0.4);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background-color: #eae3e3e4;
  transform: translateY(-2px);
}

.send-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #7b7b7b;
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 9999;
}

.send-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  width: 90%;
  max-width: 350px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.modal-content h3 {
  margin-bottom: 10px;
  color: #2c2c2c;
}

.modal-btn {
  display: block;
  margin: 10px auto;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  transition: background 0.3s;
}

.insta-btn {
  background: #C13584;
}

.insta-btn:hover {
  background: #9c2a6b;
}

.contact-btn {
  background: #CBA135;
}

.contact-btn:hover {
  background: #a78227;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}


.contact-info-map {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info h2 {
  margin-bottom: 1rem;
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.8rem;
  font-size: 1.1rem;
}

.contact-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.contact-item a {
  font-size: 1.1rem;
  color: var(--accent);
  transition: transform 0.3s ease, color 0.3s ease;
  -webkit-text-decoration-color: transparent;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

.contact-item a:hover {
  color: #eae3e3e4;
  transform: scale(1.2);
}

.contact-map {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(203, 161, 53, 0.2);
}

.social-media {
  display: flex;
  margin-bottom: 1rem;
  gap: 0.8rem;
  align-items: center;
}

.social-media a {
  color: var(--accent);
  font-size: 26px;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.social-media span {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.social-media a:hover {
  color: #eae3e3e4;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }

  .contact-form,
  .contact-info-map {
    min-width: unset;
    width: 100%;
  }

  .contact-map {
    height: 200px;
    margin-top: 1.5rem;
    border-radius: 6px;
  }

  .contact-section {
    padding: 2rem 1rem;
  }
}

footer {
  background-color: #262626;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.9rem;
  color: #aaa;
}