/* ═══════════════════════════════════════════════════════════════════
   GRAVÜR DÜNYASI - CLEAN STYLESHEET
   ═══════════════════════════════════════════════════════════════════ */

/* ───── Global Reset ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ───── Base Styles ───────────────────────────────────────── */
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #423c32;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════
   HEADER - DESKTOP
   ═══════════════════════════════════════════════════════════════════ */

header {
  width: 100%;
  background: #fff;
}

/* Top Links Row */
.header-links-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3vw;
  border-bottom: 1px solid #ece6de;
}

.header-links-row .header-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: #555;
  align-items: center;
}

.header-links-row .header-links a {
  text-decoration: none;
  color: #555;
  transition: color 0.2s ease;
}

.header-links-row .header-links a:hover {
  color: #000;
}

/* Language Selector - Desktop */
.lang-select {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-select span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  min-width: 70px;
  max-width: 70px;
  height: 30px;
  padding: 0;
  border-radius: 15px;
  border: 2px solid #d4c4a8;
  background: white;
  color: #6b5b4d;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

/* Style anchor inside span */
.lang-select span a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
}

.lang-select span.active {
  background: #bfa360;
  color: white;
  border-color: #bfa360;
}

.lang-select span:not(.active):hover {
  border-color: #bfa360;
  color: #bfa360;
}

/* Logo and Title Section */
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3vw;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.titles {
  display: flex;
  flex-direction: column;
}

.main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
}

.subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #bfa360;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Main Navigation - Desktop */
.main-nav {
  display: flex;
  justify-content: right;
  gap: 2rem;
  padding: 0 3vw;
  font-family: 'Playfair Display', serif;
}

.main-nav a {
  font-size: 1.3rem;
  font-weight: 400;
  color: #8e877a;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: #bfa360;
}

.main-nav a.active {
  color: #3a3832;
  font-weight: 600;
}

/* Hamburger Menu Button - Hidden on Desktop */
.mobile-menu-btn {
  display: none;
  background: #bfa360;
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════════
   HEADER - MOBILE (max-width: 768px)
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Top Links Row */
  .header-links-row {
    padding: 16px;
    background: #f8f6f2;
    border-bottom: 2px solid #e8e0d0;
  }
  
  .header-links-row .header-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  
  /* Language Selector - On Top, Full Width */
  .header-links-row .lang-select {
    order: -1;
    display: flex;
    justify-content: center;
    gap: 8px;
    width: 100%;
    flex-basis: 100%;
    padding-bottom: 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid #e0d6c8;
  }
  
  /* Language Buttons - EQUAL SIZE, SMALLER */
  .header-links-row .lang-select span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    min-width: 70px;
    max-width: 70px;
    height: 30px;
    min-height: 30px;
    max-height: 30px;
    padding: 0;
    font-size: 0.7rem;
    border-radius: 15px;
    border: 2px solid #d4c4a8;
    background: white;
    color: #6b5b4d;
    font-weight: 500;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease;
  }
  
  /* Anchor inside span */
  .header-links-row .lang-select span a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
  }
  
  .header-links-row .lang-select span.active {
    background: #bfa360;
    color: white;
    border-color: #bfa360;
  }
  
  .header-links-row .lang-select span:not(.active):hover {
    border-color: #bfa360;
    color: #bfa360;
  }
  
  /* Navigation Links - Row Below Language */
  .header-links-row .header-links a {
    padding: 10px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b5b4d;
    background: white;
    border: 2px solid #d4c4a8;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-align: center;
    transition: all 0.2s ease;
  }
  
  .header-links-row .header-links a:hover {
    background: #6b5b4d;
    color: white;
    border-color: #6b5b4d;
  }
  
  /* Logo Section */
  .header-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    position: relative;
  }
  
  .logo-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  
  .logo {
    width: 50px;
    height: 50px;
  }
  
  .titles {
    text-align: left;
  }
  
  .main-title {
    font-size: 1.2rem;
    line-height: 1.2;
  }
  
  .subtitle {
    font-size: 0.8rem;
  }
  
  /* Hamburger Menu - Visible on Mobile */
  .mobile-menu-btn {
    display: block;
    background: #bfa360;
    color: white;
    border: none;
    font-size: 1.4rem;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
  }
  
  /* Main Nav - Hidden, Dropdown on Mobile */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 0;
  }
  
  .main-nav.active {
    display: flex;
  }
  
  .main-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    color: #423c32;
  }
  
  .main-nav a:hover {
    background: #f8f6f2;
    color: #bfa360;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   HEADER - SMALL MOBILE (max-width: 480px)
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  .header-links-row .lang-select span {
    width: 65px;
    min-width: 65px;
    max-width: 65px;
    height: 26px;
    min-height: 26px;
    max-height: 26px;
    font-size: 0.65rem;
  }
  
  .header-links-row .header-links a {
    padding: 8px 12px;
    font-size: 0.7rem;
  }
  
  .main-title {
    font-size: 1rem;
  }
  
  .subtitle {
    font-size: 0.7rem;
  }
  
  .logo {
    width: 40px;
    height: 40px;
  }
  
  .mobile-menu-btn {
    font-size: 1.2rem;
    padding: 8px 12px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO IMAGE SECTION
   ═══════════════════════════════════════════════════════════════════ */

.header-image-container {
  display: flex;
  width: 100%;
  background-color: #f5f1eb;
  border-bottom: 3px solid #8b7355;
  min-height: 450px;
}

.header-image {
  width: 50%;
  overflow: hidden;
}

.header-image img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  object-position: left center;
  display: block;
}

.header-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 3rem;
  text-align: center;
  background-color: #f5f1eb;
}

.header-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #2c1810;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.header-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #8b7355;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.header-text p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  color: #5a5048;
  line-height: 1.6;
  max-width: 500px;
}

@media (max-width: 768px) {
  .header-image-container {
    flex-direction: column;
  }
  
  .header-image,
  .header-text {
    width: 100%;
  }
  
  .header-image img {
    height: 250px;
  }
  
  .header-text {
    padding: 2rem 1.5rem;
  }
  
  .header-text h1 {
    font-size: 1.8rem;
  }
  
  .header-text h2 {
    font-size: 2.2rem;
  }
  
  .header-text p {
    font-size: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PAGE TITLE
   ═══════════════════════════════════════════════════════════════════ */

.page-title {
  background: #f4ede3;
  text-align: center;
  padding: 2rem 0 1rem 0;
  margin-bottom: 10px;
}

.page-title h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin: 0;
  color: #423c32;
}

@media (max-width: 768px) {
  .page-title {
    padding: 1.5rem 1rem;
  }
  
  .page-title h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .page-title h1 {
    font-size: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   FILTER & SEARCH CONTROLS
   ═══════════════════════════════════════════════════════════════════ */

.controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 2rem;
  padding: 0;
  background: transparent;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}

.controls select,
.controls button,
.controls input {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.controls .search button {
  background: #bfa360;
  color: #fff;
  cursor: pointer;
}

/* Modern Filters */
.modern-filters {
  background: white;
  border-radius: 16px;
  padding: 24px;
  margin: 20px auto;
  max-width: 1400px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
}

.filter-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.filter-row:last-child {
  margin-bottom: 0;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
  flex: 1;
}

.filter-group label,
.filter-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 4px;
}

.modern-select {
  appearance: none;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #2d3748;
  transition: all 0.2s ease;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.modern-select:focus {
  outline: none;
  border-color: #bfa360;
  box-shadow: 0 0 0 3px rgba(191, 163, 96, 0.1);
}

.modern-select:hover {
  border-color: #bfa360;
}

/* Search Container */
.search-container {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 0;
  flex: 1;
}

.modern-search-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
  min-width: 250px;
}

.modern-search-input:focus {
  outline: none;
  border-color: #bfa360;
  box-shadow: 0 0 0 3px rgba(191, 163, 96, 0.1);
}

/* Buttons */
.modern-btn {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: none;
  white-space: nowrap;
}

.btn-primary {
  background: #bfa360;
  color: white;
}

.btn-primary:hover {
  background: #a89050;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(191, 163, 96, 0.3);
}

.btn-secondary {
  background: #f7fafc;
  color: #4a5568;
  border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
  background: #edf2f7;
  border-color: #cbd5e0;
  transform: translateY(-1px);
}

.clear-search-button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Roboto', sans-serif;
  background: #f7fafc;
  color: #4a5568;
  border: 2px solid #e2e8f0;
}

.clear-search-button:hover {
  background: #edf2f7;
  border-color: #cbd5e0;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .modern-filters {
    margin: 16px;
    padding: 16px;
  }
  
  .filter-row {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-group {
    min-width: 100%;
  }
  
  .search-container {
    flex-direction: column;
  }
  
  .modern-search-input {
    min-width: 100%;
  }
  
  .clear-search-button {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   GRID CONTAINER & ITEMS
   ═══════════════════════════════════════════════════════════════════ */

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 3em;
  padding: 2.5em 3vw;
  justify-items: center;
}

.grid-item {
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s, transform 0.2s;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.grid-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.grid-item .image-container {
  width: 100%;
  height: auto;
  margin-bottom: 1em;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  min-height: 210px;
  max-height: 250px;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  display: block;
}

/* Image Protection */
.grid-image img,
.detail-image img,
.image-container img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Caption */
.caption {
  padding: 0.8em 0.4em 0.5em 0.4em;
  min-height: 3.2em;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border-radius: 0 0 12px 12px;
}

.caption .title-tr,
.caption .title-en {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3em;
  max-height: 2.6em;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

.modern-caption {
  padding: 16px 20px;
  background: white;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modern-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #2d2d2d;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-tag {
  font-size: 0.75rem;
  color: #bfa360;
  background: rgba(191, 163, 96, 0.1);
  padding: 4px 8px;
  border-radius: 12px;
  align-self: flex-start;
  font-weight: 500;
}

/* Loading Animation */
@keyframes imagePlaceholderPulse {
  0% { background-color: #f2f2f2; }
  50% { background-color: #e8e8e8; }
  100% { background-color: #f2f2f2; }
}

.grid-item .image-loading {
  animation: imagePlaceholderPulse 1.5s infinite ease-in-out;
}

/* Mobile Grid */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 16px;
  }
}

@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px;
  }
  
  .grid-item {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  
  .grid-item .image-container {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    min-height: 200px;
    max-height: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════════════════════ */

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin: 2px auto;
}

.pagination-btn {
  padding: 10px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: white;
  color: #4a5568;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
  border-color: #bfa360;
  color: #bfa360;
  transform: translateY(-1px);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f8f9fa;
}

.page-info {
  padding: 10px 16px;
  font-weight: 600;
  color: #2d3748;
  background: #f8f6f2;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
}

@media (max-width: 768px) {
  .pagination-container {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .pagination-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   DETAIL PAGE (gravur-tek)
   ═══════════════════════════════════════════════════════════════════ */

.print-detail-container {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 2.5rem 3.5rem;
  display: flex;
  gap: 3.5rem;
  align-items: flex-start;
  background: #faf8f5;
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(180, 170, 140, 0.07);
  overflow: visible;
}

.print-info {
  flex: 0 0 38%;
  min-width: 320px;
  overflow: visible;
}

.print-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.8rem;
  line-height: 1.3;
  border-bottom: 3px solid #bfa360;
  padding-bottom: 1rem;
  color: #24211b;
  font-family: 'Playfair Display', serif;
  max-width: 100%;
  overflow-wrap: break-word;
}

.print-meta-list {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  font-size: 1.08rem;
  color: #312b1a;
}

.print-meta-list li {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.print-meta-list li strong {
  margin-bottom: 0.2rem;
  color: #805f20;
}

.print-meta-list li:not(:last-child) {
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(191, 163, 96, 0.15);
}

.meta-label {
  font-weight: bold;
  color: #000000;
}

.print-image-wrapper {
  flex: 0 0 58%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f5f4f2;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(120, 110, 80, 0.10);
  position: relative;
}

.print-image {
  width: 100%;
  max-width: 700px;
  min-width: 320px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.12);
}

/* More Info Section */
.more-info-link {
  display: inline-block;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  padding: 8px 16px;
  background: #f0e9db;
  border-radius: 4px;
  color: #9a7f3b;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
  cursor: pointer;
}

.more-info-link:hover {
  background: #e9dfc5;
  color: #805f20;
  transform: translateY(-1px);
}

html body #more-info-section {
  display: none;
  visibility: hidden;
  opacity: 0;
  height: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  box-sizing: border-box;
}

html body #more-info-section.show-info {
  display: block;
  visibility: visible;
  opacity: 1;
  height: auto;
  max-height: none;
  overflow: visible;
  padding: 1.8rem;
  margin: 1rem 0 0 0;
  background: #f7f3ea;
  border-left: 4px solid #bfa360;
  border-radius: 8px;
  line-height: 1.6;
  font-size: 1rem;
  color: #423c32;
  width: 100%;
  box-sizing: border-box;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 1000px;
  }
}

/* Detail Page Mobile */
@media (max-width: 992px) {
  .print-detail-container {
    flex-direction: column;
    padding: 2rem;
  }
  
  .print-info,
  .print-image-wrapper {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }
  
  .print-image-wrapper {
    margin-top: 2rem;
  }
  
  .print-title {
    font-size: 1.8rem;
  }
  
  .magnifier-glass {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   FULLSCREEN OVERLAY
   ═══════════════════════════════════════════════════════════════════ */

.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,32,29,0.93);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  cursor: zoom-out;
}

.fullscreen-overlay img {
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  cursor: zoom-out;
}

.fullscreen-overlay .close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: #fff;
  color: #333;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  z-index: 2100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Magnifier Glass */
.magnifier-glass {
  position: absolute;
  border: 2px solid #888;
  border-radius: 50%;
  cursor: none;
  width: 150px;
  height: 150px;
  box-shadow: 0 2px 18px rgba(60,60,60,0.25);
  z-index: 20;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 250% 250%;
  display: none;
}

/* ═══════════════════════════════════════════════════════════════════
   BILGI KÖŞESI (INFO CARDS)
   ═══════════════════════════════════════════════════════════════════ */

.bilgi-kosesi {
  max-width: 1160px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #423c32;
  margin-bottom: 1.5rem;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.thumbnail-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
}

.thumbnail-container img,
.thumbnail-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 40px;
  background: #FF0000;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.play-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
}

.card-content {
  padding: 1rem;
  flex-grow: 1;
}

.card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: #423c32;
}

.card-content p {
  font-size: 0.95rem;
  color: #575148;
  margin: 0;
}

.card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════════ */

.about-container {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 3rem;
  background-color: #faf8f5;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.about-container h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c1810;
  text-align: center;
  border-bottom: 3px solid #bfa360;
  padding-bottom: 1rem;
}

.about-container section {
  margin-bottom: 2.5rem;
}

.about-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: #423c32;
  border-left: 4px solid #bfa360;
  padding-left: 1rem;
}

.about-container h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #574d39;
  font-weight: 600;
}

.about-container p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #423c32;
  margin-bottom: 1rem;
  text-align: justify;
}

.about-container ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  list-style: disc;
}

.about-container ul li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.about-container a {
  color: #bfa360;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.about-container a:hover {
  color: #8b7355;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .about-container {
    margin: 2rem 1rem;
    padding: 2rem 1.5rem;
  }
  
  .about-container h1 {
    font-size: 2rem;
  }
  
  .about-container h2 {
    font-size: 1.4rem;
  }
  
  .about-container p {
    text-align: left;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   REFERENCES PAGE
   ═══════════════════════════════════════════════════════════════════ */

.content-container {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.content-container section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #423c32;
  margin-bottom: 1rem;
  border-bottom: 2px solid #e5dbc3;
  padding-bottom: 0.3rem;
}

.content-container section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #423c32;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.content-container ul {
  list-style: disc inside;
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
}

.content-container li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
  color: #574d39;
  font-size: 1rem;
}

.content-container a {
  color: #bfa360;
  text-decoration: underline;
  transition: color 0.2s;
}

.content-container a:hover {
  color: #3a3832;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════════ */

.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #574d39;
  line-height: 1.8;
  padding: 1.5rem;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 100%);
  border-radius: 12px;
  border-left: 4px solid #bfa360;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.contact-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #bfa360 0%, #d4b976 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(191, 163, 96, 0.2);
  border-color: #bfa360;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #bfa360 0%, #d4b976 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(191, 163, 96, 0.3);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #423c32;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-card p {
  font-size: 1rem;
  color: #5a5048;
  line-height: 1.8;
  margin: 0;
}

.contact-card a {
  color: #bfa360;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-card a:hover {
  color: #8b7355;
  text-decoration: underline;
}

/* Contact Form */
.contact-form-section {
  margin: 4rem 0;
  padding: 3.5rem 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
}

.contact-form-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #423c32;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.contact-form-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #bfa360 0%, #d4b976 100%);
  border-radius: 2px;
}

.form-description {
  text-align: center;
  color: #5a5048;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #423c32;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  font-family: 'Roboto', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #2d3748;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #bfa360;
  box-shadow: 0 0 0 4px rgba(191, 163, 96, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  justify-content: center;
}

.submit-btn,
.reset-btn {
  padding: 16px 40px;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto', sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.submit-btn {
  background: linear-gradient(135deg, #bfa360 0%, #d4b976 100%);
  color: white;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #a89050 0%, #bfa360 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(191, 163, 96, 0.4);
}

.reset-btn {
  background: #f7fafc;
  color: #4a5568;
  border: 2px solid #e2e8f0;
}

.reset-btn:hover {
  background: #edf2f7;
  border-color: #cbd5e0;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 2.5rem 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .submit-btn,
  .reset-btn {
    width: 100%;
    justify-content: center;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Social Media Section */
.social-media-section {
  margin: 4rem 0 2rem;
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 100%);
  border-radius: 16px;
}

.social-media-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #423c32;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.8rem;
}

.social-media-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #bfa360 0%, #d4b976 100%);
  border-radius: 2px;
}

.social-links-contact {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  text-decoration: none;
  color: #423c32;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-5px);
}

.social-link.twitter:hover {
  background: #1DA1F2;
  color: white;
  border-color: transparent;
  transform: translateY(-5px);
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */

.footer {
  background: linear-gradient(135deg, #f4ede3 0%, #e8dcc6 100%);
  color: #423c32;
  padding: 3rem 0 1rem;
  margin-top: auto;
  border-top: 3px solid #bfa360;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #574d39;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #bfa360;
  border-radius: 1px;
}

.footer-brand {
  max-width: 350px;
}

.footer-brand .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #574d39;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  font-family: 'Playfair Display', serif;
}

.footer-brand p {
  line-height: 1.6;
  color: #5a5048;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #5a5048;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding: 0.3rem 0;
}

.footer-links a:hover {
  color: #bfa360;
  transform: translateX(5px);
}

/* ===========================================
   ABOUT PAGE STYLES
   =========================================== */

.about-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.about-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #3a3226;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 2px solid #bfa360;
  padding-bottom: 1rem;
}

.about-text section {
  margin-bottom: 2rem;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #574d39;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.about-text h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #6b5f4d;
  margin-bottom: 0.5rem;
  margin-top: 1.2rem;
  font-weight: 600;
}

.about-text p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #4a4235;
  margin-bottom: 1rem;
  text-align: justify;
}

.about-text .social-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
  align-items: center;
}

.about-text .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #574d39;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 0.6rem 1.2rem;
  background: #f5f0e6;
  border-radius: 25px;
  border: 1px solid #d4c9b5;
  white-space: nowrap;
}

.about-text .social-links a:hover {
  color: #bfa360;
  border-color: #bfa360;
  background: #fff;
}

.about-text .social-links a i {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 1.2rem;
  text-align: center;
}

/* Mobile adjustments for about page */
@media (max-width: 768px) {
  .about-container {
    padding: 2rem 1.5rem;
  }
  
  .about-text h1 {
    font-size: 1.6rem;
  }
  
  .about-text h2 {
    font-size: 1.2rem;
  }
  
  .about-text h3 {
    font-size: 1rem;
  }
  
  .about-text p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .about-text .social-links {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
  
  .about-text .social-links a {
    width: auto;
  }
}

/* ===========================================
   FOOTER STYLES
   =========================================== */

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.8rem;
  color: #5a5048;
  line-height: 1.4;
  font-size: 0.9rem;
}

.contact-info li i {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bfa360;
  font-size: 0.9rem;
  margin-top: 1px;
}

.contact-info li div {
  flex: 1;
}

.contact-info li div strong {
  color: #574d39;
  font-weight: 600;
  margin-right: 4px;
}

/* Keep label and first value on same line */
.contact-info li div br {
  display: none;
}

.contact-info li div a,
.contact-info li div span {
  display: block;
  margin-top: 2px;
}

.contact-info li div a:first-of-type {
  display: inline;
  margin-top: 0;
}

.contact-info a {
  color: #5a5048;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.contact-info a:hover {
  color: #bfa360;
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
  border-radius: 25px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #dcd6cc;
  box-shadow: 0 2px 8px rgba(180, 170, 140, 0.1);
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: #423c32;
  font-size: 1rem;
  outline: none;
}

.newsletter-form button {
  padding: 12px 25px;
  background: #bfa360;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #a68d4f;
}

.footer-social-links {
  display: flex;
  gap: 15px;
  margin-top: 1.5rem;
}

.footer-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.8);
  color: #bfa360;
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 2px solid #dcd6cc;
  box-shadow: 0 2px 8px rgba(180, 170, 140, 0.1);
}

.footer-social-links a:hover {
  background: #bfa360;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(191, 163, 96, 0.3);
  border-color: #bfa360;
}

.footer-bottom {
  border-top: 1px solid #dcd6cc;
  padding-top: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.3);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: #574d39;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom-links a {
  color: #574d39;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #bfa360;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-container {
    padding: 0 1rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
  
  .newsletter-form {
    flex-direction: column;
    border-radius: 10px;
  }
  
  .newsletter-form button {
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════ */

/* No Items Message */
.no-items-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #718096;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
}

.no-items-message h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #2d3748;
  font-weight: 600;
}

.no-items-message p {
  font-size: 1rem;
  margin: 0;
  opacity: 0.8;
}

/* Loading States */
.loading {
  text-align: center;
  padding: 60px 20px;
  color: #718096;
}

.loading .loading-spinner {
  margin: 0 auto 20px;
}

/* Error States */
.error-message {
  text-align: center;
  padding: 60px 20px;
  color: #e53e3e;
  background: #fed7d7;
  border-radius: 12px;
  margin: 20px;
}

.error-message h3 {
  color: #c53030;
  margin-bottom: 8px;
}

/* Form Messages */
.form-message {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  display: none;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message.success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border: 2px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  border: 2px solid #f5c6cb;
  display: block;
}

.form-message.loading {
  background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
  color: #0c5460;
  border: 2px solid #bee5eb;
  display: block;
}