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

/* CSS variables for dark mode support */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-tertiary: #333;
  --border-color: #e5e7eb;
  --accent-color: #2563eb;
  --accent-hover: #1d4ed8;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-md: rgba(0, 0, 0, 0.15);
  --overlay: rgba(0, 0, 0, 0.5);
}

body.dark-mode {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-tertiary: #e2e8f0;
  --border-color: #475569;
  --accent-color: #3b82f6;
  --accent-hover: #2563eb;
  --shadow: rgba(0, 0, 0, 0.3);
  --shadow-md: rgba(0, 0, 0, 0.5);
  --overlay: rgba(0, 0, 0, 0.7);
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-tertiary);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dark mode toggle in header */
.header-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.dark-mode-toggle {
  background: var(--bg-tertiary);
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
  background: var(--accent-color);
}

.dark-mode-toggle:hover svg {
  color: white;
}

.dark-mode-toggle svg {
  color: var(--text-primary);
  transition: opacity 0.3s ease;
}

.dark-mode-toggle .moon-icon {
  display: none;
}

body.dark-mode .dark-mode-toggle .sun-icon {
  display: none;
}

body.dark-mode .dark-mode-toggle .moon-icon {
  display: block;
}

/* Header Styles */
.header {
  background-color: var(--bg-primary);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 1rem 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}



/* Brand wrapper: separates logo icon (clickable) and site name (text) */
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Site name next to header logo icon */
.brand .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

/* Footer brand wrapper: separates clickable icon and text */
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Footer site name text (was inside .footer-logo before) */
.footer-brand-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
}

.logo-img {
  height:100px;
  width:auto;
  display:block;
}

.header-center {
  flex: 1;
  max-width: 600px;
}

/* Dikdörtgen arama çubuğu styling */
.search-container {
  display: flex;
  align-items: center;
  background-color: var(--bg-tertiary);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  width: 100%;
}

.search-container:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-container input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 1rem;
  padding: 0.25rem;
  color: var(--text-primary);
}

.search-container input::placeholder {
  color: var(--text-secondary);
}

.search-box {
  display: flex;
  align-items: center;
  background-color: var(--bg-tertiary);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.search-box:focus-within {
  background-color: var(--bg-primary);
  box-shadow: 0 0 0 2px var(--accent-color);
}

.search-box input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 1rem;
  padding: 0.5rem;
  color: var(--text-primary);
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

/* Always show a search icon, even if the HTML has an empty button */
.search-btn::before {
  content: "🔍";
  line-height: 1;
}

/* If some pages already have a span icon, hide it to avoid double icons */
.search-btn .search-icon {
  display: none;
}

.search-btn:hover {
  background-color: var(--bg-secondary);
  transform: translateY(-1px);
}


/* Dikdörtgen auth butonlar */
.auth-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.signup-btn {
  background-color: var(--bg-primary);
  color: var(--accent-color);
}

.signup-btn:hover {
  background-color: var(--bg-tertiary);
}

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

.login-btn:hover {
  background-color: var(--accent-hover);
}

/* User area styling */
.user-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--bg-tertiary);
  border-radius: 25px;
  color: var(--text-primary);
  font-weight: 600;
}

.logout-btn {
  padding: 0.5rem 1rem;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.logout-btn:hover {
  background: var(--accent-hover);
}

/* Sidebar Styles */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -350px;
  width: 350px;
  height: 100vh;
  background-color: var(--bg-primary);
  box-shadow: 2px 0 15px var(--shadow);
  transition: left 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
}

.sidebar.active {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-header h2 {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-secondary);
  line-height: 1;
}

.sidebar-nav {
  padding: 1rem;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  text-decoration: none;
  color: var(--text-tertiary);
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.nav-item:hover {
  background-color: var(--bg-tertiary);
}

.nav-dropdown {
  margin-top: 0.5rem;
}

.dropdown-toggle {
  justify-content: space-between;
}

.arrow {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.dropdown-toggle.active .arrow {
  transform: rotate(90deg);
}

.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.dropdown-content.active {
  max-height: 1000px;
}

.continent-section {
  margin-left: 1rem;
  border-left: 2px solid var(--border-color);
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.continent-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-tertiary);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.continent-btn:hover {
  background-color: var(--bg-secondary);
}

.country-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-left: 1.5rem;
}

.country-list.active {
  max-height: 500px;
}

.country-item {
  display: block;
  padding: 0.6rem 1rem;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.country-item:hover {
  background-color: var(--bg-tertiary);
  color: var(--accent-color);
}

/* Slider Styles */
.slider-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  margin-top: 0;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Slider ve kartlar tıklanabilir cursor pointer */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.slide.active {
  opacity: 1;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.slide-content {
  position: relative;
  text-align: center;
  color: white;
  z-index: 10;
  padding: 2rem;
}

.slide-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.slider-btn:hover {
  background-color: rgba(255, 255, 255, 1);
}

.slider-btn.prev {
  left: 2rem;
}

.slider-btn.next {
  right: 2rem;
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 100;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: white;
  width: 30px;
  border-radius: 6px;
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 200px);
}

/* Featured Section */
.featured-section {
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  text-align: center;
}

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

.destination-card {
  background-color: var(--bg-primary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--shadow-md);
}

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

.card-content {
  padding: 1.5rem;
}

/* Added styling for destination country text */
.card-content h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.destination-country {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.card-content p {
  color: var(--text-secondary);
}

/* Added featured city section */
.featured-city {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-primary);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-md);
}

.city-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.city-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.city-image:hover img {
  transform: scale(1.05);
}

.city-info {
  padding: 2rem;
}

.city-info h3 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.city-subtitle {
  font-size: 1.2rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.city-description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.city-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.city-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-md);
}

/* Added continents explore section with hover zoom */
.continents-section {
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.continents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.continent-card {
  position: relative;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--shadow);
}

.continent-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.continent-card:hover img {
  transform: scale(1.15);
}

.continent-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem;
  color: white;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.continent-card:hover .continent-overlay {
  background: linear-gradient(to top, rgba(37, 99, 235, 0.9), transparent);
}

.continent-overlay h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.continent-overlay p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Ülke sayfası hero section styling eklendi */
.country-hero {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 0;
}

.country-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.country-hero-overlay {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 2rem;
}

.country-hero-overlay h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.country-hero-overlay p {
  font-size: 1.5rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.country-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.country-info h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.country-info h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.country-info p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.country-list-styled {
  list-style: none;
  padding-left: 0;
}

.country-list-styled li {
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--bg-secondary);
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
  color: var(--text-secondary);
  line-height: 1.6;
}

.country-list-styled li strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* Completely redesigned footer with white background and new sections */
/* Footer Styles */
.footer {
  background-color: var(--bg-primary);
  color: var(--text-tertiary);
  padding: 4rem 0 0;
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

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

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-weight: 700;
}

/* Footer Brand Section with Logo */
.footer-brand {
  max-width: 350px;
}

.footer-logo {
  height:100px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo .logo-icon {
  font-size: 2.5rem;
}

.footer-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
}

.footer-mission {
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.footer-contact svg {
  flex-shrink: 0;
}

.footer-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.footer-bottom {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-legal a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-legal span {
  color: var(--text-tertiary);
}

/* Added responsive styles for footer-bottom */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-legal {
    flex-direction: row;
  }
}

/* Added modal styling for login and signup */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1200;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--bg-primary);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px var(--shadow-md);
  max-width: 450px;
  width: 90%;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-content h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

/* Added modal button styling */
.modal-btn {
  width: 100%;
  padding: 1rem;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.modal-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-md);
}

.modal-footer-text {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.modal-footer-text a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.modal-footer-text a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* Notification styling - positioned at top right */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--accent-color);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 6px 20px var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100px);
  transition: all 0.3s ease;
  z-index: 2000;
  max-width: 350px;
  font-size: 0.95rem;
  font-weight: 500;
}

.notification.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.notification.success {
  background-color: #10b981;
}

.notification.error {
  background-color: #ef4444;
}

.notification.info {
  background-color: var(--accent-color);
}
.feedback-section{
  max-width: 1400px;
  margin: 4rem auto 0;
  padding: 0 2rem;
}

.feedback-container{
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px var(--shadow);
  border-radius: 16px;
  padding: 1.25rem;
}

.feedback-container h2{
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: .5rem;
}

.feedback-desc{
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.feedback-form{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feedback-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feedback-form label{
  display: flex;
  flex-direction: column;
  gap: .5rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: .95rem;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea{
  width: 100%;
  padding: .9rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  outline: none;
  transition: .2s ease;
  font-weight: 500;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus{
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}

.feedback-btn{
  align-self: flex-start;
  padding: .9rem 1.4rem;
  border: none;
  border-radius: 10px;
  background: var(--accent-color);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}

.feedback-btn:hover{
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.feedback-note{
  font-size: .95rem;
  color: var(--text-secondary);
  margin-top: .25rem;
}

/* Mobil */
@media (max-width: 768px){
  .feedback-row{ grid-template-columns: 1fr; }
  .feedback-btn{ width: 100%; text-align: center; }
}
