@import url('https://fonts.googleapis.com/css2?family=Gwendolyn:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

*{
    margin: 0;
    padding: 0;
}

:root {
  --navbar-height: 110px;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f9f5f1;
    padding-top: 90px;
  }

  html {
    scroll-behavior: smooth;
  }


  .logo img {
    height: auto;
    max-height: 54px; /* İstediğin boyuta göre ayarla */
    max-width: 160px;
    object-fit: contain;
    display: block;
  }
  
  
  /* Menü yapısı */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    background-color: #fff;
    padding: 1.2rem 3.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    max-width: 100%;
    box-sizing: border-box;
    gap: 2rem;
    overflow-x: auto; /* küçük ekranlar için güvenlik */
    overflow: hidden; /* Scroll'u engelle */
    flex-wrap: wrap;  /* Gerekirse alt satıra atar */
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .nav-links li {
    list-style: none;
  }
  
  .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
  }
  
  .nav-icon {
    height: 16px;
  vertical-align: middle;
  transform: translateY(1px);
  }
  
  .nav-text {
    position: relative;
  }
  
  .nav-text::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #c89b77;
    position: absolute;
    bottom: -4px;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  .nav-link.active .nav-text::after {
    transform: scaleX(1);
  }

  @media (max-width: 768px) {
    .nav-links li a.active::after {
      display: none;
      border-radius: 2px;
    }
    .navbar {
      padding: 1rem 2rem;
    }
  }

  @media (max-width: 768px) {
    .nav-icon {
      transform: translateY(-1px);
    }
  }

  .menu-toggle {
    width: 26px;
    height: 22px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .menu-toggle span {
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background-color: #111;
    border-radius: 3px;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  
  .menu-toggle span:nth-child(1) {
    transform: translateY(-8px);
  }
  
  .menu-toggle span:nth-child(2) {
    transform: translateY(0);
  }
  
  .menu-toggle span:nth-child(3) {
    transform: translateY(8px);
  }
  
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .hamburgerhr {
    display: none;
  }
  
  @media (max-width: 600px) {
    .nav-links {
      width: 100%;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin-top: 1rem;
      display: none;
      padding: 0;
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .nav-links li {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0.75rem 0;
    }
  
    .nav-links li a {
      display: block;
      width: 100%;
      text-align: center;
      font-weight: 500;
      font-size: 1rem;
    }
  
    .hamburgerhr {
        display: block;
        width: 60%;
        max-width: 300px;
        height: 1px;
        margin: 1px auto 0 auto;
        border: 0;
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
    }
  }
  
  @keyframes fadeScale {
    0% {
      opacity: 0;
      transform: scale(0.95);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .nav-links.show li {
    opacity: 0;
    animation: fadeScale 0.35s ease-out forwards;
  }
  
  .nav-links.show li:nth-child(1) { animation-delay: 0.05s; }
  .nav-links.show li:nth-child(2) { animation-delay: 0.1s; }
  .nav-links.show li:nth-child(3) { animation-delay: 0.15s; }
  .nav-links.show li:nth-child(4) { animation-delay: 0.2s; }
  .nav-links.show li:nth-child(5) { animation-delay: 0.25s; }

  .menu-toggle {
    display: none;
  }
  
  @media (max-width: 600px) {
    .menu-toggle {
      display: flex;
    }
  }

  .hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 90px);
    background-color: #fdfcfb;
  }
  
  .hero-container {
    display: flex;
    max-width: 1400px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: nowrap;
  }
  
  .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .hero-image img {
    max-width: 80%;
    height: auto;
    border-radius: 20px;
  }
  
  .hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #111;
    background: none;
    cursor: pointer;
    font-size: 1rem;
    color: #111;
    margin-top: 10px;
  }

  .hero-btn:hover {
    background-color: #111;
    color: #fff;
  }

  @media (max-width: 768px) {
    .hero-container {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-content {
      text-align: center;
    }
  
    .hero-content h1 {
      font-size: 2.2rem;
    }
  }

  .box-collection {
    background: #fff;
  }
  
  .box-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1800px;
    margin: auto;
    gap: 2.3rem;
  }
  
  .box-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    transition: box-shadow 0.3s ease;
    border-radius: 12px;
    padding: 1rem 0.5rem;
    flex: 1 1 230px;
    max-width: 300px;
  }
  
  .box-image img {
    width: clamp(230px, 9vw, 290px);
    height: auto;
    margin-bottom: 0.1rem;
  }
  
  .box-label {
    font-family: "Lora", serif;
    font-style: normal;
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
  }

  @media (max-width: 768px) {
    .box-wrapper {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .box-item {
      flex: 1 1 100%;
    }
  }

  .box-label span {
    display: block;
    /*background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;*/
  }

  .box-label.flame span {
    color: #db3b3b;
   /* background-image: linear-gradient(to bottom, #f26722, #de2d23);
    text-shadow: 0 0 6px rgba(242, 103, 34, 0.5); */
  }
  
  .box-label.serenity span {
      color: #2471A3;
   /* background-image: linear-gradient(to bottom, #214ea1, #3973b6);
    text-shadow: 0 0 6px rgba(33, 78, 161, 0.5); */
  }
  
  .box-label.phantom span {
      color: #424949;
   /* background-image: linear-gradient(to bottom, #444, #000);
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.4); */
  }
  
  .box-label.royal span {
      color: #7D3C98;
   /* background-image: linear-gradient(to bottom, #6b2672, #a14288);
    text-shadow: 0 0 6px rgba(107, 38, 114, 0.5); */
  }
  
  .box-label.blaom span {
      color: #239B56;
   /* background-image: linear-gradient(to bottom, #157d4d, #1bb67e);
    text-shadow: 0 0 6px rgba(21, 125, 77, 0.5); */
  }
  

  .box-item.flame {
    background-color: rgba(255, 93, 85, 0.07);
  }
  .box-item.flame:hover {
    box-shadow: 0 0 20px rgba(222, 45, 35, 0.4);
  }
  
  .box-item.serenity {
    background-color: rgba(33, 78, 161, 0.07);
  }
  .box-item.serenity:hover {
    box-shadow: 0 0 20px rgba(33, 78, 161, 0.4);
  }
  
  .box-item.phantom {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .box-item.phantom:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }
  
  .box-item.royal {
    background-color: rgba(107, 38, 114, 0.07);
  }
  .box-item.royal:hover {
    box-shadow: 0 0 20px rgba(107, 38, 114, 0.4);
  }
  
  .box-item.blaom {
    background-color: rgba(21, 125, 77, 0.07);
  }
  .box-item.blaom:hover {
    box-shadow: 0 0 20px rgba(21, 125, 77, 0.4);
  }

  .features-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem 1rem;
    background: #f9f5f1;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .feature {
    flex: 1 1 200px;
    max-width: 200px;
    padding: 3.2rem 1rem 1rem 1rem;
  }
  
  .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .highlight-orange {
    color: #ff9090;
    animation: pulseGlow 1.5s infinite ease-in-out;
    font-weight: bold;
  }
  
  @keyframes pulseGlow {
    0% {
      text-shadow: 0 0 0px #ffd0b0;
    }
    50% {
      text-shadow: 0 0 8px #ffd0b0, 0 0 16px #ffd0b0;
    }
    100% {
      text-shadow: 0 0 0px #ffd0b0;
    }
  }
  
  span.highlight-blue {
    color: #e7a36d;
    }
  
  .features-section p {
    font-size: 1rem;
    line-height: 1.4;
    color: #222;
  }

  .icon img {
    width: 64px;
    height: 64px;
    margin-bottom: 0.5rem;
  }

  .brands-section {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 2rem 1rem;
    background: #f9f5f1;
  }
  
  .brand {
    background-color: #3a3a3a;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: box-shadow 0.3s ease;
  }
  
  .brand img {
    height: 40px;
    max-height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
    opacity: 0.7;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .brand:hover img {
    transform: scale(1.08);
    opacity: 1;
  }
  
  .brand:hover {
    box-shadow: 0 0 12px rgb(255, 255, 255);
  }

  .brand-hepsiburada img {
    max-width: 110px;
  }
  .brand-trendyol img {
    max-width: 100px;
  }
  .brand-n11 img {
    max-width: 60px;
  }
  .brand-amazontr img {
    max-width: 120px;
  }
  .brand-ebay img {
    max-width: 70px;
  }
  .brand-etsy img {
    max-width: 60px;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-items: center;
    padding: 2rem 3rem;
    background-color: #f9f5f1;
    border-top: 1px solid #ddd;
    font-size: 0.95rem;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-left {
    justify-self: start;
    text-align: left;
  }
  
  .footer-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-left p {
    color: #444;
    line-height: 1.4;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
  }
  
  .footer-social a img {
    height: 20px;
    opacity: 0.6;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .footer-social a:hover img {
    transform: scale(1.15);
    opacity: 1;
  }
  
  .footer-lang {
    margin-left: auto;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
  }

  .language-switch {
    display: flex;
    gap: 0.4rem;
    align-items: center;
  }
  
  .footer-lang a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
  }
  
  .footer-lang a.active {
    font-weight: bold;
    text-decoration: underline;
  }

  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
  }
  
  @media (max-width: 768px) {
    .site-footer {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto;
      justify-items: center;
      text-align: center;
    }
  
    .footer-left,
    .footer-lang {
      justify-self: center;
      text-align: center;
    }
  
    .footer-lang {
        display: flex;
        flex-direction: column;
        align-items: center !important;
        text-align: center !important;
        justify-self: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }
    
      .footer-copyright {
        text-align: center !important;
        width: 100%;
      }
  }

  .footer-copyright {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 1.5rem;
  }

  .nav-links li a {
    position: relative;
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
  }
  
  .nav-links li a::after {
    display: none;
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: #c89b77;
    transition: width 0.3s ease;
    border-radius: 2px;
  }
  
  .nav-links li a.active::after {
    width: 100%;
  }

  @media (min-width: 768px) {
    .nav-links li a {
      position: relative;
    }
  
    .nav-links li a::after {
      display: block;
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0%;
      height: 2px;
      background-color: #c89b77;
      transition: width 0.3s ease;
    }
  
    .nav-links li a.active::after {
      width: 100%;
    }
  }

  @media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.2rem;
        background-color: #fff;
        z-index: 999;
      }
    
      .nav-links.show {
        display: flex;
      }
  }

  #scrollToTop {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    width: 45px;
    height: 45px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    border: none;
    font-size: 1.2rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  #scrollToTop.show {
    opacity: 1;
    pointer-events: auto;
  }
  
  
  #scrollToTop:hover {
    background-color: #c89b77;
    transform: scale(1.1);
  }

  #scrollToTop img {
    width: 20px;
    height: 20px;
    display: block;
    margin: auto;
    pointer-events: none;
  }
  
  .box-item .box-image img,
  .box-item .box-label {
    transition: transform 0.3s ease;
  }

  .box-item:hover .box-image img {
    transform: scale(1.05);
  }

  .box-item:hover .box-label {
    transform: scale(1.03);
  }

  .box-image {
    overflow: hidden;
    border-radius: 24px;
  }

  @media (max-width: 768px) {
    .hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      /* justify-content: flex-start;
      min-height: 100vh; */
      padding: 2rem;
      margin-top: -60px;
    }
  
    .hero-content {
      margin-top: 0;
      padding-top: 1rem;
      margin-top: 30px;
    }
  }

  .footer-copyright strong {
    font-weight: 600;
    color: #000000;
  }
  
  .footer-heart {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-top: -3px;
    margin-left: 4px;
  }

  .lang-switch.active {
    font-weight: bold;
  }

  .box-collection,
  .brands-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    color: #111;
    text-transform: uppercase;
  }

  .split-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    /*padding: 4rem 2rem;*/
    min-height: 100vh;
    background: #f9f5f1;
  }
  
  .split-left, .split-right {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: center;
  }
  
  .split-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .split-right {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  
  .section-title {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
  }
  
  .section-desc {
    font-size: 1rem;
    color: #555;
    max-width: 360px;
    margin-bottom: 2rem; 
  }
  
  .box-collection {
    min-height: 100vh;
    padding: 4rem 1rem 10rem 1rem;
    box-sizing: border-box;
  }

  .collection-title {
    text-align: center;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: #111;
    text-transform: uppercase;
  }
  
  .collection-desc {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-inline: auto;
  }
  
  section {
    scroll-margin-top: 90px;
  }

  #buy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    scroll-margin-top: 80px;
    min-height: calc(100vh - 150px);
    padding-top: 4rem;
  }

  @media (max-width: 768px) {
    #buy {
      scroll-margin-top: 140px;
    }
  }

  .scroll-down-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.7;
    cursor: pointer;
  }
  
  .scroll-down-indicator img {
    width: 32px;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .scroll-down-indicator:hover img {
    transform: scale(1.1);
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateX(-50%) translateY(0);
    }
    50% {
      transform: translateX(-50%) translateY(10px);
    }
  }

  .scroll-down-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 1;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  
  .scroll-down-indicator.hidden {
    opacity: 0;
    pointer-events: none;
  }

  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    justify-content: center;
    align-items: center;
  }
  
  .modal-overlay.show {
    display: flex;
  }
  
  .modal-content {
    background: #fff;
    padding: 2rem;
    max-width: 700px;
    width: 90%;
    border-radius: 10px;
    position: relative;
  }
  
  .modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .modal-box-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    animation: fadeInUp 0.4s ease;
  }
  
  .modal-box-img {
    width: 100%;
    max-width: 280px;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: block;
  }
  
  .modal-box-text h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #000;
    font-family: "Lora", serif;
  }
  
  .modal-box-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #333;
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .modal-overlay {
    backdrop-filter: blur(8px);
  }

  .modal-box-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  .modal-box-img {
    flex: 1;
  }
  .modal-box-text {
    flex: 2;
  }

  .modal-box-text h2 span {
    background: linear-gradient(to right, #b8860b, #e6c200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .modal-divider {
    height: 2px;
    border: none;
    width: 100%;
    margin: 1.5rem 0;
    background: linear-gradient(to right, #ccc, transparent);
  }

  @media (max-width: 768px) {
    .modal-content {
      margin-top: 5.5rem; /* veya 5rem */
    }
  }

    @media (max-width: 768px) {
  .scroll-down-indicator {
    display: none;
  }

}

@media (max-width: 768px) {
    .modal-content {
      max-width: 500px;
    }
    .modal-box-wrapper {
    flex-direction: column;
    }
}

.supportsection {
  min-height: 100vh;
  padding: 6rem 2rem 3rem;
  background-color: #fdfcfb;
}

.support-title-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.support-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  line-height: 1.4;
  color: #111;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.support-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  gap: 3rem;
  align-items: start;
}

.support-left {
  display: grid;
  grid-template-rows: auto 1fr;
  justify-content: start;
  gap: 1.5rem;
  height: 100%;
}

.map-wrapper {
  width: 100%;
  max-width: 550px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.support-left iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
}

.contact-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info i {
  color: #c89b77;
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.row {
  display: flex;
  gap: 1rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

input,
textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}

input:focus,
textarea:focus {
  border-color: #c89b77;
  outline: none;
}

label {
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: #333;
}

.submit-wrapper {
  text-align: right;
}

.submit-wrapper button {
  padding: 0.75rem 1.5rem;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-wrapper button:hover {
  background-color: #c89b77;
}

@media (max-width: 768px) {
  .support-title {
    text-align: center;
  }

  .support-grid-wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .support-left,
  .support-right {
    width: 100%;
  }

  .map-wrapper {
    width: 100%;
    height: 300px;
  }

  .support-form {
    width: 100%;
    padding: 0;
  }

  .support-form input,
  .support-form textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .row {
    flex-direction: column;
  }

  .submit-wrapper {
    text-align: center;
  }
}

.support-success-message {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #eafbe7;
  border: 1px solid #7cc27e;
  color: #2b662e;
  border-radius: 8px;
  font-size: 0.95rem;
  opacity: 1;
  transition: opacity 0.8s ease;
}
.support-success-message.fade-out {
  opacity: 0;
}

@media (max-width: 768px) {
  .support-grid-wrapper {
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  .support-form,
  .map-wrapper {
    width: 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
  }

  .support-form input,
  .support-form textarea {
    width: 100%;
    box-sizing: border-box;
  }

  iframe {
    width: 100% !important;
    box-sizing: border-box;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 1rem;
  color: #333;
}

.contact-info .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 9px;
}

.support-grid-wrapper {
  align-items: start;
}

.map-wrapper {
  height: 100%;
  min-height: 80%;
}

.support-right {
  height: 100%;
}

.support-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
/*
.contact-info {
  margin-top: -2rem;
}*/

.supportsection {
  min-height: calc(100vh - 320px);
}

@media (max-width: 768px) {
  .contact-info {
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .map-wrapper {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: unset;
  }

  .map-wrapper iframe {
    height: 100%;
    width: 100%;
    border: 0;
    display: block;
  }
}

.contact-info a {
  color: inherit;
  text-decoration: none;
  word-break: break-word;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* ========== TABLET ve daha küçük: 1024px ↓ ========== */
@media (max-width: 1024px) {
  .support-grid-wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
    padding: 0 1.5rem;
    box-sizing: border-box;
  }

  .support-left,
  .support-right {
    width: 100%;
  }

  .map-wrapper,
  .support-form {
    width: 100%;
    max-width: 100%;
  }

  iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
  }

  .row {
    flex-direction: column;
    gap: 1rem;
  }

  .submit-wrapper {
    text-align: center;
  }

  .contact-info {
    margin-top: 1rem !important;
  }
}

/* ========== Küçük ekran (600px ↓) ========== */
@media (max-width: 600px) {
  .support-title {
    font-size: 1.8rem;
  }

  .supportsection {
    padding: 4rem 1rem 2rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.9rem;
  }

  .contact-info .icon {
    width: 20px;
    height: 20px;
    margin-top: 6px;
  }

  .map-wrapper {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  iframe {
    height: 100%;
  }
}

@media (max-width: 768px) {
  .contact-info {
    align-items: center;
    text-align: center;
  }
}

.features-section {
  position: relative;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
}

.features-section .feature {
  z-index: 2;
  position: relative;
  width: 150px;
  height: 150px;
  background-color: white;
  border-radius: 25px;
}

/* === EFFECT WRAPPER === */
.features-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background-color: #f9f5f1;
}

.light {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(60px);
  animation: floatAndRotateGlow 4s ease-in-out infinite;
}

.light.orange {
  background: radial-gradient(circle at center, #ff9800 0%, transparent 80%);
  top: 30%;
  left: 20%;
  animation-delay: 0s;
}

.light.blue {
  background: radial-gradient(circle at center, #03a9f4 0%, transparent 80%);
  top: 50%;
  left: 55%;
  animation-delay: 2s;
}

.light.pink {
  background: radial-gradient(circle at center, #e91e63 0%, transparent 80%);
  top: 40%;
  left: 70%;
  animation-delay: 4s;
}

@keyframes floatAndRotateGlow {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translate(20px, -10px) scale(1.2) rotate(90deg);
    opacity: 0.4;
  }
  50% {
    transform: translate(-10px, 20px) scale(1.4) rotate(180deg);
    opacity: 0.6;
  }
  75% {
    transform: translate(10px, -15px) scale(1.2) rotate(270deg);
    opacity: 0.4;
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(360deg);
    opacity: 0.3;
  }
}

/* === DUMAN EFEKTI === */
.smoke {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 300%;
  height: 300%;
  background: url('/src/img/smoke.svg') center/cover no-repeat;
  opacity: 0.05;
  animation: driftSmoke 60s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
  mix-blend-mode: screen;
}

@keyframes driftSmoke {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.05; }
  25%  { transform: translate(-2%, -1%) scale(1.02); opacity: 0.1; }
  50%  { transform: translate(2%, -2%) scale(1.03); opacity: 0.08; }
  75%  { transform: translate(-3%, 1%) scale(1.01); opacity: 0.12; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.05; }
}

.submit-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 1.5rem;
}

#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

.splash-logo {
  width: 230px;
  height: auto;
  animation: scaleFade 1.2s ease-in-out forwards;
}

@keyframes scaleFade {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

#splash-screen.hide {
  opacity: 0;
  pointer-events: none;
}

.modal-overlay {
  display: none;
  justify-content: center;
  align-items: center; /* ✅ Masaüstünde ortala */
  padding: 2rem;
  box-sizing: border-box;
  overflow-y: auto;
}

.modal-content {
  width: 100%;
  max-width: 800px;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}

@media (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    padding: 1.5rem 1rem;
  }
  .modal-overlay {
    align-items: flex-start; /* ✅ Mobilde üstten başlasın */
    padding-top: calc(var(--navbar-height) + env(safe-area-inset-top, 16px));
  }
}

@media (max-width: 768px) {
  #buy {
    padding-top: 6rem;
  }
}

#buy {
  scroll-margin-top: 100px;
  padding-top: 5rem;
}

.support-success-message {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 12px 16px;
  border-radius: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
}

.support-error-message {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  padding: 12px 16px;
  border-radius: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
}


