/* CSS Custom Properties for dynamic viewport */
:root {
  --vh: 1vh;
}

/* Global Styles */
:root {
  --primary-color: #2a4d5f;
  --secondary-color: #4a90a4;
  --accent-color: #ff7e5f;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --text-color: #333;
  --text-light: #6c757d;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
  margin: 0;
  padding: 0;
    overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select {
  font-family: inherit;
  font-size: 1rem;
}

/* Header */
.main-header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1500;
}

.top-bar {
  background-color: var(--primary-color);
  color: white;
  padding: 6px 0;
  font-size: 13px;
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
    z-index: 2000;
  width: 100%;
  padding-right: 84px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-bar .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
    display: flex;
    justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 20px;
  margin-right: auto;
}

.contact-info a {
    display: flex;
    align-items: center;
  gap: 6px;
  transition: opacity 0.3s;
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.9);
}

.contact-info a {
  font-size: 0.7rem;
  gap: 4px;
}

.contact-info a span {
  display: none;
}

.contact-info .phone-number {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-info .email {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}

.phone-icon,
.email-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.contact-info a:hover {
  opacity: 0.8;
}

.top-bar-right {
  display: flex;
  gap: 6px;
  align-items: center;
  height: 40px;
  margin-left: auto;
  padding: 0 4px;
}

.language-selector,
.currency-selector {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  padding: 0 8px !important;
  border-radius: 15px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  font-size: 10px !important;
  height: 26px !important;
  min-width: 60px !important;
  margin: 0 1px !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  vertical-align: middle !important;
}

.language-selector:hover,
.currency-selector:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-selector:active,
.currency-selector:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.25);
}

.language-selector img,
.currency-selector img {
  width: 24px !important;
  height: 24px !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  top: -1px;
}

.language-selector span:not(.icon-translate, .icon-translate-2),
.currency-selector span:not(.icon-translate, .icon-translate-2) {
  display: inline-block;
  transform: scale(0.85);
  transform-origin: left center;
  white-space: nowrap;
}

/* Main Navigation */
.menu {
  padding: 15px 0;
  position: relative;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  padding-right: 84px;
  transition: all 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
}

.menu .container {
    display: flex;
    align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.main-logo {
  display: flex;
  align-items: center;
  z-index: 10;
}

.main-logo .logo-image {
  height: 40px;
  width: auto;
}

.main-header {
  position: relative;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.header-square-logo {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  height: 90px;
  transition: opacity 0.3s ease, transform 0.3s ease, pointer-events 0.3s ease;
  z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
  pointer-events: auto;
}

.header-square-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.header-square-logo:hover img {
  transform: scale(1.05);
}

.header-square-logo:hover {
  transform: translateY(-50%) scale(1.1);
}

.nav-content {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: space-between;
  gap: 20px;
  overflow: visible;
}

.buttons {
    display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 12px;
  flex-grow: 1;
  justify-content: center;
    align-items: center;
}

.buttons a {
    display: flex;
    align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.2s ease;
}

.buttons .account {
    display: flex;
    align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 25px;
  background-color: var(--primary-color);
  color: white;
    text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  height: 48px;
  min-width: 140px;
  box-sizing: border-box;
}

.account .button-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.buttons a:hover {
  background-color: #f5f5f5;
}

.buttons .rewards {
  background: linear-gradient(135deg, #6aa8ff, #b07cc9);
  color: white !important;
  padding: 8px 20px 8px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
  gap: 6px;
}

.buttons .rewards:hover {
  background: linear-gradient(135deg, #5c97e6, #9f6fb8);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.button-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.account-section {
  margin-left: auto;
}

.search-form {
  display: flex;
  align-items: center;
  position: relative;
  width: 260px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(106,168,255,0.10);
  padding: 0 8px 0 0;
}
.search-form input[type="search"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 12px 12px 38px;
  font-size: 1.05rem;
  border-radius: 22px;
  outline: none;
  color: #1a2a3a;
}
.search-form button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px 0 0;
}
.search-form .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #4a90a4;
  font-size: 1.25rem;
  pointer-events: none;
}

.search-form button:hover {
  background: var(--secondary-color);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
  z-index: 1050;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  z-index: 1200;
  overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-color);
    text-decoration: none;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

.dropdown-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.account-section .dropdown-menu {
  right: 0;
  left: auto;
  background: var(--primary-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.account-section .dropdown-item {
    color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.account-section .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.account-section .dropdown-icon {
  filter: brightness(0) invert(1);
}

.dropdown:hover .icon-down {
  transform: rotate(180deg);
}

.icon-down {
  transition: transform 0.3s ease;
}

.account-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.account-text span {
  font-size: 0.7em;
  white-space: nowrap;
}

.account-text strong {
  font-size: 0.9rem;
}

.account-text span {
  font-size: 0.8rem;
    opacity: 0.9;
}

/* Sticky Header */
.menu.sticky {
  position: fixed;
    top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu.sticky .container {
  padding: 10px 40px;
}

body.menu-sticky {
  padding-top: 80px;
}

.top-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.header-square-logo.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0.8);
}

/* Language Modal */
.language-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
  align-items: center;
}

.language-modal-content {
    background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
  max-height: 80vh;
    overflow-y: auto;
  animation: modalSlideIn 0.3s ease;
}

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

.language-modal-header {
    display: flex;
    justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}

.language-modal-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
}

.language-modal-header button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
  padding: 0;
  width: 30px;
  height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  transition: all 0.2s;
}

.language-modal-header button:hover {
  background: #f5f5f5;
    color: #333;
}

.language-options {
  padding: 16px 0;
}

.language-option {
    display: flex;
    align-items: center;
  padding: 12px 24px;
    cursor: pointer;
  transition: background-color 0.2s;
  gap: 12px;
}

.language-option:hover {
  background-color: #f8f9fa;
}

.language-option.selected {
  background-color: #e3f2fd;
}

.language-flag {
  width: 24px;
  height: 24px;
  border-radius: 4px;
    object-fit: cover;
}

.language-info {
  flex: 1;
}

.language-name {
  font-weight: 500;
  color: var(--text-color);
}

.language-native {
  font-size: 0.85rem;
    color: #666;
  margin-top: 2px;
}

.language-check {
  color: var(--primary-color);
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.2s;
}

.language-option.selected .language-check {
  opacity: 1;
}

.currency-options {
  padding: 16px 0;
}

.currency-option {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    cursor: pointer;
  transition: background-color 0.2s;
  gap: 12px;
}

.currency-option:hover {
  background-color: #f8f9fa;
}

.currency-option.selected {
  background-color: #e3f2fd;
}

.currency-symbol {
  width: 40px;
  height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  border-radius: 50%;
    display: flex;
    align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
}

.currency-info {
  flex: 1;
}

.currency-code {
  font-weight: 600;
  color: var(--text-color);
    font-size: 1rem;
}

.currency-name {
  font-size: 0.85rem;
    color: #666;
  margin-top: 2px;
}

.currency-check {
  color: var(--primary-color);
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.2s;
}

.currency-option.selected .currency-check {
  opacity: 1;
}

/* === HERO SONRASI ANA BÖLÜMLER, KARTLAR VE GRIDLER - SADELEŞTİRİLMİŞ === */
.section {
  width: 100%;
  padding: 32px 0 24px 0;
  background: #fff;
}
.section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.section-title {
    font-size: 1.5rem;
    font-weight: 600;
  color: #222;
  margin-bottom: 24px;
  text-align: left;
  letter-spacing: 0;
}
.grid {
    display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid #eee;
  padding: 18px 14px 14px 14px;
    display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 2px 8px rgba(46,82,102,0.07);
  transform: none;
}
.card-title {
  font-size: 1.08rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 8px;
}
.card-desc {
  color: #444;
  font-size: 0.97rem;
  margin-bottom: 12px;
}
.card-footer {
  margin-top: auto;
    display: flex;
  gap: 8px;
    align-items: center;
}
.card-btn {
  background: #f5f5f5;
    color: #333;
  border: 1px solid #ddd;
  border-radius: 7px;
  padding: 8px 16px;
  font-size: 0.97rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.card-btn:hover {
  background: #e9ecef;
  box-shadow: 0 2px 8px rgba(106,168,255,0.07);
}
.review-card, .blog-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid #eee;
  padding: 14px 10px 10px 10px;
    display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.review-card .reviewer {
  font-weight: 500;
  color: #4a90a4;
  font-size: 1rem;
}
.review-card .review-text {
  color: #444;
  font-size: 0.97rem;
  margin-bottom: 6px;
}
.blog-card .blog-title {
  font-size: 1.01rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 6px;
}
.blog-card .blog-excerpt {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 7px;
}
.stats-section {
  background: #fff;
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid #eee;
  padding: 18px 10px;
    display: flex;
    justify-content: center;
  gap: 18px;
  margin: 24px 0 0 0;
}
.stat {
    display: flex;
  flex-direction: column;
    align-items: center;
  gap: 4px;
}
.stat-value {
  font-size: 1.3rem;
  font-weight: 600;
  color: #4a90a4;
}
.stat-label {
  color: #555;
  font-size: 0.97rem;
}
@media (max-width: 900px) {
  .section { padding: 18px 0 10px 0; }
  .grid { gap: 10px; }
  .stats-section { flex-direction: column; gap: 10px; padding: 10px 4px; }
}
@media (max-width: 600px) {
  .section { padding: 10px 0 4px 0; }
  .section .container { padding: 0 4px; }
  .grid { flex-direction: column; gap: 6px; }
  .card, .review-card, .blog-card { padding: 7px 4px; }
  .stats-section { padding: 7px 2px; }
  .stat-value { font-size: 1rem; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .top-bar {
    padding-right: 0;
  }
  
  .top-bar .container {
    padding: 0 20px;
    flex-direction: column;
    gap: 8px;
    height: auto;
    min-height: 36px;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 4px;
    margin-right: 0;
    text-align: center;
  }
  
  .contact-info a {
    font-size: 0.75rem;
    justify-content: center;
  }
  
  .phone-icon,
  .email-icon {
    width: 12px;
    height: 12px;
  }
  
  .top-bar-right {
    margin-left: 0;
    justify-content: center;
  }
  
  .menu {
    padding-right: 0;
  }
  
  .menu.sticky {
    padding-right: 0;
  }
  
  .menu.sticky .container {
    padding: 10px 20px;
  }
  
  .menu .container {
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
  }
  
  .main-logo .logo-image {
    height: 35px;
  }
  
  .nav-content {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .search-form {
    order: 2;
    max-width: 100%;
    margin: 0;
  }
  
  .buttons {
    order: 3;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  
  .buttons a {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
  
  .button-icon {
    width: 20px;
    height: 20px;
  }
  
  .account-section {
    order: 4;
    margin-left: 0;
        width: 100%;
  }
  
  .account {
        width: 100%;
        justify-content: center;
    }
    
  .account .account-text,
  .account .button-icon {
    font-size: 0.9rem;
  }
  
  .account .button-icon {
    width: 20px;
    height: 20px;
  }
  
  .header-square-logo {
    display: none;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: #f8f9fa;
    margin-top: 8px;
    border-radius: 8px;
  }
  
  .dropdown:hover .dropdown-menu {
    transform: none;
  }
  
  .account-section .dropdown:not(.tab-dropdown):hover .dropdown-menu {
    position: static;
    background: #f8f9fa;
  }
  
  .dropdown-item {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .dropdown-icon {
    width: 16px;
    height: 16px;
  }
  
  .language-modal-content {
    width: 95%;
    max-width: 350px;
  }
  
  .language-modal-header {
    padding: 16px 20px;
  }
  
  .language-modal-header h3 {
    font-size: 1.1rem;
  }
  
  .language-option,
  .currency-option {
    padding: 10px 20px;
  }
  
  .currency-symbol {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .dropdown-menu {
    min-width: 100%;
  }
  
  .buttons .dropdown:last-child .dropdown-menu {
    right: 0;
    left: auto;
  }
  
  .dropdown-item {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  
  .dropdown-icon {
    width: 14px;
    height: 14px;
  }
  
  .top-bar .container {
        padding: 0 15px;
    }
    
  .language-selector,
  .currency-selector {
    font-size: 9px !important;
    min-width: 50px !important;
    height: 24px !important;
  }
  
  .language-selector img,
  .currency-selector img {
    width: 20px !important;
    height: 20px !important;
  }
  
  .contact-info {
    gap: 2px;
  }
  
  .contact-info a {
    font-size: 0.7rem;
  }
  
  .phone-icon,
  .email-icon {
    width: 10px;
    height: 10px;
  }
  
  .menu .container {
    padding: 10px 15px;
  }
  
  .main-logo .logo-image {
    height: 30px;
  }
  
  .search-form {
    order: 2;
  }
  
  .search-form input {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  
  .buttons {
    order: 3;
    gap: 6px;
  }
  
  .buttons a {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
  
  .account {
    order: 4;
  }
  
  .account .button-icon {
    width: 18px;
    height: 18px;
  }
  
  .language-modal-content {
        width: 98%;
        max-width: 320px;
    }
    
  .language-modal-header {
    padding: 12px 16px;
    }
    
  .language-modal-header h3 {
    font-size: 1rem;
    }
    
    .language-option,
    .currency-option {
    padding: 8px 16px;
    }
    
    .currency-symbol {
        width: 30px;
        height: 30px;
    font-size: 0.9rem;
  }
} 

/* Hero Section Styles */
.hero {
  position: relative;
  min-height: 100vh;
    display: flex;
    align-items: center;
  justify-content: center;
    overflow: hidden;
  background: linear-gradient(135deg, #1f329a 0%, #2e5266 100%);
  margin-top: 0;
  padding-top: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-content {
    position: relative;
  z-index: 3;
    width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
    display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-tabs-section {
    display: flex;
    justify-content: center;
  margin-bottom: 20px;
}

.hero-content-section {
    display: flex;
  justify-content: center;
    align-items: center;
}

.tab-content {
        width: 100%;
  max-width: 800px;
}

.tab-panel {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.tab-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6aa8ff, #b07cc9);
  border-radius: 20px 20px 0 0;
}

.tab-panel.active {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

.tab-panel h2 {
    color: #333;
  font-size: 1.8rem;
    font-weight: 600;
  margin-bottom: 30px;
    text-align: center;
  line-height: 1.3;
}

.hero-form {
    display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.form-input,
.form-select {
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 1rem;
  background: white;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-select:focus {
  border-color: #6aa8ff;
  box-shadow: 0 0 0 3px rgba(106, 168, 255, 0.1);
}

.form-input::placeholder {
    color: #999;
}

.hero-btn {
  background: linear-gradient(135deg, #6aa8ff 0%, #b07cc9 100%);
    color: white;
    border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-btn:hover {
    transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(106, 168, 255, 0.3);
}

.hero-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Hero Tabs */
.hero-tabs {
    display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hero-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
    display: flex;
    align-items: center;
  gap: 8px;
  padding: 12px 20px;
    background: transparent;
  border: none;
  border-radius: 25px;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
    overflow: hidden;
}

.tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  transform: scale(0);
    transition: transform 0.3s ease;
}

.tab-btn:hover::before {
  transform: scale(1);
}

.tab-btn:hover {
  transform: translateY(-1px);
}

.tab-btn.active {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tab-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.tab-btn.active .tab-icon {
  filter: brightness(0) invert(1);
}

/* Tab Dropdown */
/* Tab Dropdown Styles */
.tab-dropdown {
  position: relative;
}

.tab-dropdown .tab-btn {
  padding-right: 35px;
  position: relative;
}

.tab-dropdown .tab-btn .tab-icon {
  margin-right: 5px;
}

.tab-dropdown .tab-btn .icon-down {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.tab-dropdown .dropdown-menu {
  display: none;
  position: fixed !important;
  min-width: 220px;
  max-width: 320px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  border-radius: 15px;
  padding: 12px;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
}

.tab-dropdown:hover .dropdown-menu {
        opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.tab-dropdown:hover .icon-down {
  transform: translateY(-50%) rotate(180deg);
}

/* Dropdown menü item'ları için hover efekti */
.tab-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
  padding: 12px 16px;
    color: #333;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  margin-bottom: 2px;
  white-space: nowrap;
}

.tab-dropdown .dropdown-item:hover {
  background: rgba(106, 168, 255, 0.1);
  color: #6aa8ff;
  transform: translateX(5px);
}

.tab-dropdown .dropdown-item:last-child {
  margin-bottom: 0;
}

.tab-dropdown .dropdown-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.tab-dropdown .dropdown-item:hover .dropdown-icon {
  filter: brightness(0) saturate(100%) invert(45%) sepia(80%) saturate(1000%) hue-rotate(200deg) brightness(100%) contrast(100%);
}

/* Trip Type Toggle */
.trip-type-row {
    display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.trip-type {
    display: flex;
  align-items: center;
}

.trip-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
  cursor: pointer;
  user-select: none;
}

.trip-toggle input[type="checkbox"] {
  display: none;
}

.toggle-slider {
  position: relative;
  width: 60px;
  height: 30px;
  background: #e1e5e9;
  border-radius: 15px;
  transition: background 0.3s ease;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
    background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.trip-toggle input[type="checkbox"]:checked + .toggle-slider {
  background: #6aa8ff;
}

.trip-toggle input[type="checkbox"]:checked + .toggle-slider::before {
  transform: translateX(30px);
}

.toggle-text {
  font-weight: 500;
    color: #333;
}

/* Flight Form Containers */
.flight-form-container {
  display: block;
}

.flight-main-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.flight-secondary-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    padding: 0 20px;
    gap: 30px;
  }
  
  .hero-tabs {
    padding: 6px;
    gap: 8px;
  }
  
  .tab-btn {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
  
  .tab-icon {
    width: 18px;
    height: 18px;
  }
  
  .tab-panel {
    padding: 30px 20px;
    margin: 0 10px;
  }
  
  .tab-panel h2 {
    font-size: 1.5rem;
  }
  
  .form-row {
        grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .hero-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .trip-type-row {
    margin-bottom: 15px;
  }
  
  .toggle-text {
    font-size: 0.9rem;
  }
  
  .toggle-slider {
    width: 50px;
    height: 25px;
  }
  
  .toggle-slider::before {
    width: 19px;
    height: 19px;
  }
  
  .trip-toggle input[type="checkbox"]:checked + .toggle-slider::before {
    transform: translateX(25px);
  }
  
  .flight-main-row,
  .flight-secondary-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
  .hero-content {
        padding: 0 15px;
    gap: 20px;
  }
  
  .hero-tabs {
    padding: 5px;
    gap: 5px;
  }
  
  .tab-btn {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  
  .tab-icon {
    width: 16px;
    height: 16px;
  }
  
  .tab-panel {
    padding: 25px 15px;
    margin: 0 5px;
  }
  
  .tab-panel h2 {
    font-size: 1.3rem;
  }
  
  .form-input,
  .form-select {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  
  .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
    transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
  .dropdown .dropdown-menu {
    display: none !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: #fff !important;
    padding: 0 !important;
    z-index: auto !important;
    margin: 0 !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    width: 100% !important;
  }
  .dropdown.open .dropdown-menu {
    display: block !important;
  }
  .dropdown .dropdown-item {
    padding: 16px 18px;
    border-bottom: 1px solid #eee;
    color: #222;
    background: #fff;
    border-radius: 0;
    font-size: 1rem;
  }
  .dropdown .dropdown-item:last-child {
    border-bottom: none;
  }
}

/* === PERSONALIZER MODAL: KÜÇÜK, POPUP BENZERİ, ORTADA === */
.personalizer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.personalizer-modal.active {
  opacity: 1;
}

/* Personalizer Button Styles */
.personalizer-section {
  text-align: center;
  margin-top: 24px;
  padding: 0 16px;
}

.personalizer-btn {
  background: linear-gradient(135deg, #6aa8ff 0%, #4a90a4 100%);
  color: white;
    border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
    cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(106, 168, 255, 0.3);
}

.personalizer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 168, 255, 0.4);
  background: linear-gradient(135deg, #5a98ef 0%, #3a80a4 100%);
}

.personalizer-icon {
  font-size: 1.2rem;
}

.personalizer-text {
    font-size: 0.95rem;
}

.personalizer-content {
    background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(46,82,102,0.10);
  max-width: 480px;
  width: 100%;
  padding: 32px 24px 24px 24px;
  margin: 32px auto;
  position: relative;
}
.personalizer-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
    margin-bottom: 18px;
}
.personalizer-header h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2a4d5f;
  margin-bottom: 2px;
}
.personalizer-header p {
  color: #4a90a4;
    font-size: 1rem;
  margin-bottom: 0;
}
.close-personalizer {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
    border: none;
  font-size: 1.7rem;
  color: #aaa;
    cursor: pointer;
  transition: color 0.2s;
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.close-personalizer:hover { color: #2a4d5f; background: #f5f5f5; }
.personalizer-steps {
  margin-bottom: 18px;
}
.mood-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 10px;
}
.mood-card {
  background: #f8f9fa;
    border-radius: 10px;
  box-shadow: 0 2px 8px rgba(46,82,102,0.06);
  padding: 18px 10px 12px 10px;
    display: flex;
  flex-direction: column;
    align-items: center;
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.18s, transform 0.18s;
  border: 1.5px solid #e1e5e9;
}
.mood-card:hover, .mood-card.selected {
  background: #e3f2fd;
  box-shadow: 0 4px 16px rgba(106,168,255,0.13);
  border-color: #6aa8ff;
  transform: translateY(-2px) scale(1.03);
}
.mood-icon {
  font-size: 2.1rem;
  margin-bottom: 6px;
}
.mood-card h4 {
  font-size: 1.08rem;
    font-weight: 600;
  color: #2a4d5f;
  margin-bottom: 2px;
}
.mood-card p {
  color: #555;
    font-size: 0.97rem;
  margin-bottom: 0;
    text-align: center;
}
@media (max-width: 600px) {
  .personalizer-content { padding: 14px 2vw 10px 2vw; max-width: 99vw; }
  .mood-grid { grid-template-columns: 1fr; gap: 10px; }
}

/* Step Navigation Styles */
.personalizer-steps {
    position: relative;
  min-height: 300px;
}

.step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.step.active {
  display: block;
}

.step h3 {
  font-size: 1.2rem;
    font-weight: 600;
  color: #2a4d5f;
  margin-bottom: 16px;
  text-align: center;
}

/* Time Options */
.time-options {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.time-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 16px 8px;
  text-align: center;
    cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.time-card:hover, .time-card.selected {
  background: #e3f2fd;
  border-color: #6aa8ff;
    transform: translateY(-2px);
}

.time-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2a4d5f;
}

.time-label {
  font-size: 0.9rem;
  color: #4a90a4;
  margin-bottom: 4px;
}

.time-card p {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}

/* Budget Slider */
.budget-slider {
  margin: 20px 0;
}

.budget-range {
    width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e1e5e9;
  outline: none;
  -webkit-appearance: none;
}

.budget-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
    border-radius: 50%;
  background: #6aa8ff;
    cursor: pointer;
  box-shadow: 0 2px 6px rgba(106, 168, 255, 0.3);
}

.budget-display {
  text-align: center;
  margin: 12px 0;
}

.budget-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2a4d5f;
}

.budget-label {
  font-size: 0.9rem;
  color: #666;
  margin-left: 4px;
}

.budget-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #666;
}

/* Navigation Buttons */
.personalizer-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
  margin-top: 24px;
  gap: 12px;
}

.btn-prev, .btn-next {
  background: #6aa8ff;
    color: white;
  border: none;
    border-radius: 25px;
  padding: 10px 20px;
  font-size: 0.9rem;
    font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
    display: flex;
    align-items: center;
  gap: 6px;
}

.btn-prev:hover, .btn-next:hover {
  background: #5a98ef;
  transform: translateY(-1px);
}

.btn-prev {
  background: #f8f9fa;
    color: #666;
}

.btn-prev:hover {
  background: #e9ecef;
  color: #2a4d5f;
}

/* Results Step */
.results-header {
  text-align: center;
    margin-bottom: 20px;
}

.results-header h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.results-header p {
  color: #666;
  font-size: 0.9rem;
}

.recommended-tour {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
    display: flex;
        align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.recommended-tour:hover {
  background: #e3f2fd;
  transform: translateX(4px);
}

.recommended-tour img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.tour-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2a4d5f;
  margin-bottom: 4px;
}

.tour-info p {
  font-size: 0.8rem;
    color: #666;
  margin-bottom: 8px;
}

.tour-meta {
    display: flex;
  gap: 12px;
}

.tour-price {
    font-weight: 600;
  color: #6aa8ff;
}

.tour-match {
  font-size: 0.8rem;
  color: #28a745;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==================== FEATURES SECTION ==================== */
.features {
  padding: 60px 0;
  background: #ffffff;
}

.features .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.features .section-badge {
  display: inline-block;
  background: #f8f9fa;
  color: #6c757d;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 16px;
  border: 1px solid #e9ecef;
}

.features h2 {
  font-size: 2rem;
    font-weight: 600;
  color: #212529;
  margin-bottom: 16px;
  line-height: 1.3;
}

.features .highlight {
  color: #0d6efd;
}

.features .section-description {
  font-size: 1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

/* Feature Cards */
.feature-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 24px;
  transition: all 0.2s ease;
}

.feature-card:hover {
  border-color: #0d6efd;
  box-shadow: 0 2px 8px rgba(13, 110, 253, 0.1);
}

.feature-card.spotlight {
  border-color: #0d6efd;
  background: #f8f9ff;
}

.feature-card.special {
  border-color: #dc3545;
  background: #fff5f5;
}

/* Feature Icon */
.feature-icon {
  width: 48px;
  height: 48px;
  background: #f8f9fa;
  border-radius: 6px;
    display: flex;
    align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.25rem;
  color: #6c757d;
  transition: all 0.2s ease;
}

.feature-card:hover .feature-icon {
  background: #0d6efd;
  color: #ffffff;
}

.feature-card.spotlight .feature-icon {
  background: #0d6efd;
  color: #ffffff;
}

.feature-card.special .feature-icon {
  background: #dc3545;
  color: #ffffff;
}

/* Feature Content */
.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 12px;
  line-height: 1.4;
}

.feature-card p {
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 16px;
}

.feature-card strong {
  color: #212529;
  font-weight: 600;
}

/* Feature Highlight */
.feature-highlight {
  display: inline-flex;
    align-items: center;
  gap: 6px;
  background: #f8f9fa;
  color: #6c757d;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #e9ecef;
}

.feature-highlight i {
  font-size: 0.75rem;
}

/* Personal Commitment Section */
.personal-commitment {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 32px;
    display: flex;
    align-items: center;
  gap: 32px;
}

.commitment-avatar {
  position: relative;
  flex-shrink: 0;
}

.commitment-img {
  width: 80px;
  height: 80px;
    border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e9ecef;
}

.commitment-badge {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #dc3545;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
    display: flex;
    align-items: center;
  gap: 4px;
}

.commitment-content {
  flex: 1;
}

.commitment-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 16px;
  line-height: 1.4;
}

.commitment-content blockquote {
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
  border-left: 3px solid #0d6efd;
  padding-left: 16px;
}

.commitment-content blockquote strong {
  color: #212529;
  font-weight: 600;
}

.signature {
    display: flex;
    align-items: center;
  gap: 12px;
}

.signature-img {
  width: 40px;
  height: 20px;
  object-fit: contain;
}

.signature-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #212529;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features {
    padding: 40px 0;
  }
  
  .features h2 {
    font-size: 1.75rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .personal-commitment {
        flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 24px;
  }
  
  .commitment-img {
    width: 60px;
    height: 60px;
    }
}

@media (max-width: 480px) {
  .features {
    padding: 32px 0;
  }
  
  .features h2 {
    font-size: 1.5rem;
  }
  
  .feature-card {
    padding: 16px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .feature-card h3 {
    font-size: 1rem;
  }
  
  .personal-commitment {
    padding: 20px;
  }
  
  .commitment-content h3 {
    font-size: 1.125rem;
  }
  
  .commitment-content blockquote {
    font-size: 0.8125rem;
  }
}

/* Minimalist Özellikler Bölümü */
.features-mini {
  padding: 18px 0 0 0;
  background: #fff;
}
.features-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}
.feature-mini-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 7px;
  padding: 12px 8px 10px 8px;
    display: flex;
  flex-direction: column;
    align-items: center;
  min-width: 0;
  min-height: 80px;
  box-shadow: none;
  transition: border-color 0.18s;
}
.feature-mini-card:hover {
  border-color: #0d6efd;
}
.feature-mini-icon {
  font-size: 1.3rem;
  color: #0d6efd;
  background: #f5f8ff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
    display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.feature-mini-title {
  font-size: 0.98rem;
    font-weight: 600;
  color: #222;
  margin-bottom: 2px;
  text-align: center;
}
.feature-mini-desc {
  font-size: 0.82rem;
  color: #666;
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 700px) {
  .features-mini-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .feature-mini-card {
    padding: 10px 4px 8px 4px;
  }
  .feature-mini-title { font-size: 0.95rem; }
  .feature-mini-desc { font-size: 0.8rem; }
}

/* Göz Alıcı Featured Tours Section */
.featured-tours-new {
  padding: 48px 0 0 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f0ff 100%);
}
.featured-tours-new .container {
  display: block;
}
.smart-filters {
  display: block;
  width: 100%;
  margin-bottom: 28px;
}
.filter-tabs {
  display: block;
  width: 100%;
  margin-bottom: 10px;
    text-align: center;
}
.filter-tab {
  background: linear-gradient(90deg, #e3f0ff 0%, #f8f9fa 100%);
  border: none;
  color: #1a2a3a;
  border-radius: 22px;
  padding: 12px 28px;
  font-size: 1.08rem;
    font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  outline: none;
  box-shadow: 0 2px 12px rgba(106,168,255,0.10);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 8px 12px 8px;
  letter-spacing: 0.2px;
}
.filter-tab:hover {
  background: linear-gradient(90deg, #d0e6ff 0%, #e3f0ff 100%);
  color: #4a90a4;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 18px rgba(106,168,255,0.13);
}
.filter-tab.active, .filter-tab:focus {
  background: linear-gradient(90deg, #4a90a4 0%, #6aa8ff 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(76, 130, 255, 0.18);
  transform: scale(1.06);
}
.tab-icon {
  font-size: 1.25em;
  margin-right: 2px;
}
.tab-count {
  background: #fff;
  color: #4a90a4;
  border-radius: 10px;
  font-size: 0.98em;
  padding: 2px 10px;
  margin-left: 4px;
  font-weight: 700;
  box-shadow: 0 1px 4px rgba(106,168,255,0.10);
}
.live-search {
  display: block;
  width: 100%;
  margin-bottom: 0;
  text-align: center;
}
.search-input-wrapper {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}
.live-search-input {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  padding: 14px 18px 14px 48px;
  border: none;
  border-radius: 28px;
  font-size: 1.08rem;
  background: #fff;
  color: #1a2a3a;
  box-shadow: 0 2px 16px rgba(106,168,255,0.10);
  transition: box-shadow 0.18s;
  font-weight: 600;
}
.live-search-input:focus {
  box-shadow: 0 6px 24px rgba(106,168,255,0.18);
  outline: none;
}
.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #4a90a4;
  font-size: 1.45rem;
  pointer-events: none;
}
.tour-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 24px;
  width: 100%;
}
.tour-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(106,168,255,0.10);
  padding: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.22s;
}
.tour-card:hover {
  box-shadow: 0 12px 32px rgba(76, 130, 255, 0.18);
  transform: translateY(-8px) scale(1.025);
}
.tour-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(90deg, #ffb347 0%, #ffcc33 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(255, 204, 51, 0.13);
  z-index: 2;
}
.tour-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  margin-bottom: 0;
  display: block;
}
.tour-card-content {
  padding: 18px 18px 0 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tour-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 6px;
}
.tour-card-meta {
  font-size: 0.97rem;
  color: #4a90a4;
  margin-bottom: 10px;
  font-weight: 600;
}
.tour-card-desc {
  font-size: 0.97rem;
  color: #4a5a6a;
  margin-bottom: 14px;
  line-height: 1.5;
}
.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.tour-card-price {
  font-size: 1.18rem;
  font-weight: 800;
  color: #4a90a4;
}
.tour-card-btn {
  background: linear-gradient(90deg, #4a90a4 0%, #6aa8ff 100%);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(106,168,255,0.13);
}
.tour-card-btn:hover {
  background: linear-gradient(90deg, #6aa8ff 0%, #4a90a4 100%);
  box-shadow: 0 4px 16px rgba(106,168,255,0.18);
}
@media (max-width: 900px) {
  .tour-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .smart-filters {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .filter-tabs {
    flex-wrap: wrap;
    gap: 6px;
  }
  .search-input-wrapper { width: 100%; }
  .tour-card-img { height: 160px; }
  .tour-card-content { padding: 12px 10px 0 10px; }
}
@media (max-width: 600px) {
  .filter-tab {
    padding: 10px 16px;
    font-size: 1rem;
    margin: 0 4px 8px 4px;
  }
  .live-search-input {
    font-size: 1rem;
    padding: 12px 14px 12px 44px;
  }
  .search-icon {
    font-size: 1.2rem;
    left: 14px;
  }
}

/* Hızlı Rezervasyon Formu Modern */
.quick-res-form-section {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(106,168,255,0.10);
  padding: 38px 32px 32px 32px;
  max-width: 480px;
  margin: 36px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quick-res-form-header {
  text-align: center;
  margin-bottom: 24px;
}
.quick-res-form-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1a2a3a;
  margin-bottom: 8px;
}
.quick-res-form-desc {
  font-size: 1.02rem;
  color: #4a5a6a;
}
.quick-res-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quick-res-form input,
.quick-res-form select,
.quick-res-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 16px;
  background: #f8f9fa;
  font-size: 1.05rem;
  color: #1a2a3a;
  box-shadow: 0 2px 12px rgba(106,168,255,0.07);
  transition: box-shadow 0.18s;
  font-weight: 500;
}
.quick-res-form input:focus,
.quick-res-form select:focus,
.quick-res-form textarea:focus {
  box-shadow: 0 4px 18px rgba(106,168,255,0.13);
  outline: none;
  background: #fff;
}
.quick-res-form-btn {
  background: linear-gradient(90deg, #4a90a4 0%, #6aa8ff 100%);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 14px 0;
  font-size: 1.12rem;
  font-weight: 700;
    cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(106,168,255,0.13);
  width: 100%;
  margin-top: 8px;
}
.quick-res-form-btn:hover {
  background: linear-gradient(90deg, #6aa8ff 0%, #4a90a4 100%);
  box-shadow: 0 4px 16px rgba(106,168,255,0.18);
}
@media (max-width: 600px) {
  .quick-res-form-section {
    padding: 18px 6vw 18px 6vw;
    max-width: 99vw;
  }
  .quick-res-form-title { font-size: 1.12rem; }
  .quick-res-form input, .quick-res-form select, .quick-res-form textarea {
    font-size: 0.98rem;
    padding: 10px 10px;
  }
  .quick-res-form-btn { font-size: 1rem; padding: 12px 0; }
}

/* Hızlı Rezervasyon Mockup ve Zengin Form */
.reservation-mockup-section {
  width: 100%;
  min-height: 520px;
  background: url('assets/reservation/reservation-form-bg.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 40px 0;
  position: relative;
}
@media (max-width: 700px) {
  .reservation-mockup-section {
    background: url('assets/reservation/mobil-form-bg.webp') center/cover no-repeat;
    padding: 24px 0 18px 0;
  }
}
.reservation-mockup {
  background: #222;
  border-radius: 38px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  max-width: 370px;
  width: 100%;
  padding: 18px 0 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reservation-mockup-inner {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 16px rgba(106,168,255,0.10);
  padding: 32px 22px 18px 22px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.reservation-mockup-bottom {
  width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  margin-top: 0;
  margin-bottom: 12px;
}
.reservation-mockup-bottom img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
    object-fit: cover;
  margin-top: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.reservation-form label {
  font-size: 0.98rem;
  font-weight: 600;
  color: #1a2a3a;
    margin-bottom: 3px;
}
.reservation-form input,
.reservation-form select {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 14px;
  background: #f8f9fa;
  font-size: 1.05rem;
  color: #1a2a3a;
  box-shadow: 0 1px 8px rgba(106,168,255,0.07);
  transition: box-shadow 0.18s;
  font-weight: 500;
}
.reservation-form input:focus,
.reservation-form select:focus {
  box-shadow: 0 2px 12px rgba(106,168,255,0.13);
  outline: none;
  background: #fff;
}
.reservation-summary {
  background: #f8f9fa;
  border-radius: 14px;
  padding: 14px 14px 10px 14px;
  margin: 10px 0 0 0;
  font-size: 1.05rem;
  color: #1a2a3a;
  box-shadow: 0 1px 8px rgba(106,168,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reservation-summary .summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 600;
}
.reservation-btn {
  background: linear-gradient(90deg, #4a90a4 0%, #6aa8ff 100%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 14px 0;
  font-size: 1.12rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(106,168,255,0.13);
  width: 100%;
  margin-top: 10px;
}
.reservation-btn:hover {
  background: linear-gradient(90deg, #6aa8ff 0%, #4a90a4 100%);
  box-shadow: 0 4px 16px rgba(106,168,255,0.18);
}
@media (max-width: 600px) {
  .reservation-mockup {
    max-width: 99vw;
    border-radius: 18px;
    padding: 8px 0 0 0;
  }
  .reservation-mockup-inner {
    border-radius: 16px;
    padding: 16px 4vw 10px 4vw;
  }
  .reservation-mockup-bottom img {
    width: 60px; height: 60px;
  }
  .reservation-btn { font-size: 1rem; padding: 12px 0; }
}

/* Stroke (Kenarlıklı) Rezervasyon Formu */
.reservation-form-stroke {
  background: none !important;
  border: 2px solid #4a90a4;
  border-radius: 18px;
  padding: 28px 18px;
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.reservation-form-stroke label {
  font-size: 0.98rem;
  font-weight: 600;
  color: #1a2a3a;
  margin-bottom: 3px;
}
.reservation-form-stroke input,
.reservation-form-stroke select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #4a90a4;
  border-radius: 12px;
  background: none;
  font-size: 1.05rem;
  color: #1a2a3a;
  box-shadow: none;
  font-weight: 500;
  transition: border 0.18s;
}
.reservation-form-stroke input:focus,
.reservation-form-stroke select:focus {
  border: 2px solid #6aa8ff;
  outline: none;
  background: none;
}
.reservation-form-stroke .reservation-summary {
  background: none;
  border: 1.5px solid #4a90a4;
  border-radius: 12px;
  padding: 10px 12px 8px 12px;
  margin: 10px 0 0 0;
  font-size: 1.05rem;
  color: #1a2a3a;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reservation-form-stroke .summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 600;
}
@media (max-width: 900px) {
  .reservation-flex {
    flex-direction: column;
    gap: 28px !important;
  }
  .reservation-photo-col, .reservation-form-col {
    max-width: 99vw !important;
  }
}

/* Hızlı Rezervasyon Formu Geniş Grid */
.reservation-flex-wide {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
}
@media (max-width: 900px) {
  .reservation-flex-wide {
    flex-direction: column;
  }
}
.reservation-photo-col {
  flex: 0 0 65%;
  min-width: 260px;
  max-width: none;
  width: 65%;
  height: 520px;
  position: relative;
}
.reservation-photo-bg {
  background: url('../images/reservation/mobil-form-bg.webp') center/cover no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  min-height: 520px;
  width: 100%;
}
.reservation-form-col {
  flex: 0 0 35%;
  min-width: 260px;
  max-width: 520px;
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .reservation-flex-wide {
    flex-direction: column;
    gap: 28px;
  }
  .reservation-photo-col, .reservation-form-col {
    max-width: 99vw;
    width: 100%;
    height: 320px;
  }
  .reservation-form-col {
    height: auto;
    padding-bottom: 18px;
  }
  .reservation-photo-bg {
    min-height: 320px;
  }
}

.reservation-flex, .reservation-flex-wide {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.reservation-bg-all {
  background: url('../images/reservation/mobil-form-bg.webp') center/cover no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  min-height: 600px;
  width: 100%;
  position: relative;
}
.reservation-bg-wrapper {
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.reservation-form-col {
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .reservation-bg-all, .reservation-bg-wrapper {
    min-height: 400px;
  }
  .reservation-form-col {
    max-width: 99vw;
    width: 100%;
    padding-bottom: 18px;
  }
}

.reservation-form-white label {
  color: #fff !important;
}
.reservation-form-white input,
.reservation-form-white select {
  color: #fff !important;
  border: 1.5px solid #fff !important;
  background: rgba(255,255,255,0.08) !important;
}
.reservation-form-white input:focus,
.reservation-form-white select:focus {
  border: 2px solid #fff !important;
  background: rgba(255,255,255,0.13) !important;
}
.reservation-form-white input::placeholder {
  color: #fff !important;
  opacity: 0.7 !important;
}
.reservation-form-white select option {
  color: #222;
  background: #fff;
}
.reservation-form-white .reservation-summary {
  color: #fff !important;
  border-color: #fff !important;
}
.reservation-form-white .summary-row span {
  color: #fff !important;
}

/* HERO TAB DROPDOWN MENÜ TAM ALTA AÇILMA */
.tab-dropdown {
  position: relative;
}
.tab-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1000;
  min-width: 140px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  border-radius: 10px;
  padding: 8px 0;
  margin-top: 4px;
  transition: opacity 0.2s;
  opacity: 0;
}
.tab-dropdown .dropdown-menu.open {
  display: block;
  opacity: 1;
}
/* Hover ile açılmayı devre dışı bırak */
.tab-dropdown:hover .dropdown-menu {
  display: none !important;
}

/* --- Müşteri Yorumları Modern Stil --- */
.reviews {
  background: linear-gradient(120deg, #f8fafc 60%, #eaf6fa 100%);
  padding: 56px 0 48px 0;
}
.reviews .section-header h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #2a4d5f;
  margin-bottom: 8px;
}
.reviews .section-header p {
  color: #4a90a4;
  font-size: 1.08rem;
  margin-bottom: 32px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
  margin: 0 auto 24px auto;
  max-width: 1100px;
}
.review-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(74,144,164,0.10);
  border: none;
  padding: 28px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  transition: box-shadow 0.18s;
  position: relative;
}
.review-card:hover {
  box-shadow: 0 8px 36px rgba(74,144,164,0.18);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a90a4 60%, #2a4d5f 100%);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(74,144,164,0.10);
}
.reviewer-details h4 {
  font-size: 1.08rem;
  font-weight: 600;
  color: #2a4d5f;
  margin: 0 0 2px 0;
}
.review-rating {
  display: flex;
  gap: 2px;
}
.review-rating .star {
  color: #e0e0e0;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.review-rating .star.active {
  color: #ffb400;
  text-shadow: 0 2px 8px rgba(255,180,0,0.10);
}
.review-date {
  margin-left: auto;
  color: #7ba6b8;
  font-size: 0.98rem;
  font-weight: 500;
}
.review-content h5 {
  font-size: 1.08rem;
  font-weight: 600;
  color: #4a90a4;
  margin-bottom: 4px;
}
.review-content p {
  color: #333;
  font-size: 1.01rem;
  margin-bottom: 0;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: #4a90a4;
  margin-top: 2px;
}
.review-footer .btn {
  background: #eaf6fa;
  color: #2a4d5f;
  border: none;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s;
}
.review-footer .btn:hover {
  background: #4a90a4;
  color: #fff;
}
.review-photos {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.review-photo {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(74,144,164,0.10);
  border: 2px solid #eaf6fa;
}
@media (max-width: 700px) {
  .reviews {
    padding: 32px 0 18px 0;
  }
  .reviews-grid {
    gap: 14px;
  }
  .review-card {
    padding: 16px 8px 12px 8px;
    border-radius: 12px;
  }
  .review-photo {
    width: 38px;
    height: 38px;
  }
}

/* --- Visual Gallery Section Modern & Eye-catching --- */
.gallery-showcase {
  background: linear-gradient(120deg, #eaf6fa 60%, #f8fafc 100%);
  padding: 56px 0 48px 0;
}
.gallery-showcase .section-header h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #2a4d5f;
  margin-bottom: 8px;
}
.gallery-showcase .section-header p {
  color: #4a90a4;
  font-size: 1.08rem;
  margin-bottom: 32px;
}
.gallery-grid {
  display: grid;
  grid-template-areas:
    'large large medium1 medium2'
    'large large small1 small2'
    'video video small3 small4';
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(74,144,164,0.10);
  background: #fff;
  transition: box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.gallery-item:hover {
  box-shadow: 0 8px 36px rgba(74,144,164,0.18);
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}
.gallery-large { grid-area: large; min-height: 340px; }
.gallery-medium { min-height: 220px; }
.gallery-medium:first-of-type { grid-area: medium1; }
.gallery-medium:last-of-type { grid-area: medium2; }
.gallery-video { grid-area: video; min-height: 220px; }
.gallery-small:nth-of-type(1) { grid-area: small1; }
.gallery-small:nth-of-type(2) { grid-area: small2; }
.gallery-small:nth-of-type(3) { grid-area: small3; }
.gallery-small:nth-of-type(4) { grid-area: small4; }
.gallery-item img, .gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.18s;
}
.gallery-item:hover img, .gallery-item:hover video {
  filter: brightness(0.85) blur(1px) grayscale(0.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(42,77,95,0.10) 0%, rgba(74,144,164,0.22) 100%);
  opacity: 0;
  transition: opacity 0.22s;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 2;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-info {
  padding: 24px 22px 18px 22px;
  color: #fff;
  background: linear-gradient(0deg, rgba(42,77,95,0.82) 80%, rgba(74,144,164,0.18) 100%);
  border-radius: 0 0 18px 18px;
  width: 100%;
  box-shadow: 0 2px 12px rgba(42,77,95,0.10);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.gallery-info h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 2px 0;
  color: #fff;
  text-shadow: 0 2px 8px rgba(42,77,95,0.18);
}
.gallery-info p {
  font-size: 0.98rem;
  color: #eaf6fa;
  margin-bottom: 0;
}
.gallery-play-btn {
  margin-top: 8px;
  background: linear-gradient(90deg, #4a90a4 60%, #2a4d5f 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 2px 8px rgba(74,144,164,0.18);
  cursor: pointer;
  opacity: 0.92;
  transition: background 0.18s, transform 0.18s;
}
.gallery-play-btn:hover {
  background: linear-gradient(90deg, #2a4d5f 60%, #4a90a4 100%);
  transform: scale(1.12);
  opacity: 1;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      'large large'
      'medium1 medium2'
      'video video'
      'small1 small2'
      'small3 small4';
  }
  .gallery-large, .gallery-medium, .gallery-video, .gallery-small {
    min-height: 180px;
  }
}
@media (max-width: 600px) {
  .gallery-showcase {
    padding: 24px 0 12px 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      'large'
      'medium1'
      'medium2'
      'video'
      'small1'
      'small2'
      'small3'
      'small4';
    gap: 10px;
  }
  .gallery-item {
    border-radius: 10px;
  }
  .gallery-info {
    padding: 12px 10px 8px 10px;
    border-radius: 0 0 10px 10px;
  }
  .gallery-play-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}

/* --- Instagram-style Stories Section Modern & Kusursuz --- */
.stories-section {
  background: linear-gradient(120deg, #f8fafc 60%, #eaf6fa 100%);
  padding: 44px 0 32px 0;
}
.stories-section .section-header {
  text-align: center;
  margin-bottom: 18px;
}
.stories-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2a4d5f;
}
.stories-section .section-subtitle {
  color: #4a90a4;
  font-size: 1.08rem;
  margin-bottom: 18px;
}
.stories-container {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-end;
  overflow-x: auto;
  padding: 12px 0 4px 0;
  scrollbar-width: thin;
  scrollbar-color: #eaf6fa #fff;
}
.stories-container::-webkit-scrollbar {
  height: 7px;
  background: #fff;
}
.stories-container::-webkit-scrollbar-thumb {
  background: #eaf6fa;
  border-radius: 8px;
}
.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 92px;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
}
.story-item:hover {
  transform: scale(1.07) translateY(-4px);
  z-index: 2;
  box-shadow: 0 6px 24px rgba(74,144,164,0.13);
}
.story-avatar {
  position: relative;
  width: 68px;
  height: 68px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(74,144,164,0.10);
  z-index: 2;
}
.story-ring {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  z-index: 1;
  border: 0;
  background: conic-gradient(from 0deg, #ff7e5f 0%, #feb47b 30%, #4a90a4 70%, #2a4d5f 100%);
  filter: blur(0.5px);
  transition: box-shadow 0.18s;
}
.story-item:hover .story-ring {
  box-shadow: 0 0 0 4px #eaf6fa, 0 2px 12px #4a90a433;
}
.story-label {
  font-size: 1.01rem;
  font-weight: 600;
  color: #2a4d5f;
  margin-bottom: 2px;
  text-align: center;
  max-width: 90px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.story-time {
  font-size: 0.93rem;
  color: #7ba6b8;
  text-align: center;
}
@media (max-width: 700px) {
  .stories-section {
    padding: 22px 0 10px 0;
  }
  .stories-container {
    gap: 14px;
    padding: 6px 0 2px 0;
  }
  .story-avatar {
    width: 48px;
    height: 48px;
  }
  .story-avatar img {
    width: 42px;
    height: 42px;
  }
  .story-label {
    font-size: 0.93rem;
    max-width: 60px;
  }
}

/* --- Story Modal Modern Stil --- */
#story-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(30,40,60,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
}
#story-modal.active {
  display: flex;
  opacity: 1;
}
.story-modal-content {
  position: relative;
  background: none;
  border-radius: 18px;
  box-shadow: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 320px;
  max-width: 96vw;
  max-height: 92vh;
}
.story-modal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.story-modal-img {
  max-width: 60vw;
  max-height: 70vh;
  border-radius: 18px;
  box-shadow: 0 8px 36px rgba(42,77,95,0.22);
  background: #fff;
  object-fit: contain;
  margin-bottom: 12px;
}
.story-modal-label {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2px;
  text-shadow: 0 2px 8px #2228;
}
.story-modal-time {
  color: #eaf6fa;
  font-size: 0.98rem;
  text-align: center;
  margin-bottom: 8px;
}
.story-modal-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  opacity: 0.85;
  transition: color 0.15s;
}
.story-modal-close:hover {
  color: #ff7e5f;
  opacity: 1;
}
.story-modal-prev, .story-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #4a90a4 60%, #2a4d5f 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.92;
  box-shadow: 0 2px 8px rgba(74,144,164,0.18);
  transition: background 0.18s, transform 0.18s;
  z-index: 5;
}
.story-modal-prev {
  left: -64px;
}
.story-modal-next {
  right: -64px;
}
.story-modal-prev:hover, .story-modal-next:hover {
  background: linear-gradient(90deg, #2a4d5f 60%, #4a90a4 100%);
  transform: translateY(-50%) scale(1.12);
  opacity: 1;
}
@media (max-width: 900px) {
  .story-modal-img {
    max-width: 90vw;
    max-height: 60vh;
  }
  .story-modal-prev, .story-modal-next {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
    left: -38px;
    right: -38px;
  }
}
@media (max-width: 600px) {
  .story-modal-content {
    min-width: 0;
    min-height: 0;
    max-width: 100vw;
    max-height: 100vh;
  }
  .story-modal-img {
    max-width: 98vw;
    max-height: 48vh;
    border-radius: 10px;
  }
  .story-modal-prev, .story-modal-next {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
    left: -18px;
    right: -18px;
  }
  .story-modal-close {
    top: 8px;
    right: 10px;
    font-size: 1.5rem;
  }
}

/* --- AI Tur Önerileri Modern & Dikkat Çekici Stil --- */
.ai-recommendations {
  background: linear-gradient(120deg, #eaf6fa 60%, #f8fafc 100%);
  padding: 56px 0 48px 0;
}
.ai-recommendations .section-header h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #2a4d5f;
  margin-bottom: 8px;
}
.ai-recommendations .section-header p {
  color: #4a90a4;
  font-size: 1.08rem;
  margin-bottom: 32px;
}
.ai-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
.ai-chat-interface {
  background: linear-gradient(120deg, #fff 70%, #eaf6fa 100%);
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(74,144,164,0.10);
  padding: 36px 32px 28px 32px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.ai-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}
.ai-message {
  background: linear-gradient(90deg, #eaf6fa 60%, #f8fafc 100%);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(74,144,164,0.08);
  padding: 18px 18px 14px 18px;
  color: #2a4d5f;
  font-size: 1.08rem;
  font-weight: 500;
  position: relative;
  animation: fadeInUp 0.5s;
}
.ai-message.bot {
  background: linear-gradient(90deg, #4a90a4 60%, #2a4d5f 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(74,144,164,0.13);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.ai-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 8px;
  justify-content: center;
}
.ai-option {
  background: linear-gradient(90deg, #4a90a4 60%, #2a4d5f 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 22px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(74,144,164,0.10);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  outline: none;
}
.ai-option:hover, .ai-option:focus {
  background: linear-gradient(90deg, #2a4d5f 60%, #4a90a4 100%);
  transform: scale(1.07);
  box-shadow: 0 4px 18px rgba(74,144,164,0.18);
}
.ai-recommendations-result {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(74,144,164,0.10);
  padding: 18px 18px 14px 18px;
  color: #2a4d5f;
  font-size: 1.05rem;
  margin-top: 10px;
  animation: fadeInUp 0.5s;
}
@media (max-width: 700px) {
  .ai-recommendations {
    padding: 24px 0 12px 0;
  }
  .ai-chat-interface {
    padding: 16px 6px 10px 6px;
    border-radius: 12px;
    max-width: 99vw;
  }
  .ai-option {
    padding: 10px 10px;
    font-size: 0.98rem;
    border-radius: 8px;
  }
}

/* --- Blog ve Haberler Minimalist Stil --- */
.blog-news {
  background: linear-gradient(135deg, #f8fafc 0%, #eaf6fa 100%);
  padding: 48px 0;
}

.blog-news .container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-news .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.blog-news .section-header h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2a4d5f;
  margin-bottom: 8px;
}

.blog-news .section-header p {
  color: #4a90a4;
  font-size: 1rem;
  margin-bottom: 24px;
}

/* Haberler Listesi */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(74,144,164,0.08);
  border: 1px solid #eaf6fa;
  transition: all 0.2s ease;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.news-item:hover {
  box-shadow: 0 4px 20px rgba(74,144,164,0.12);
  transform: translateY(-2px);
}

.news-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

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

.news-content {
  flex: 1;
  min-width: 0;
}

.news-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2a4d5f;
  margin-bottom: 6px;
  line-height: 1.4;
}

.news-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.news-content h3 a:hover {
  color: #4a90a4;
}

.news-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.news-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: #7ba6b8;
}

/* Blog Promo */
.blog-promo {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(74,144,164,0.10);
  border: 1px solid #eaf6fa;
  text-align: center;
}

.blog-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid #eaf6fa;
}

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

.blog-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a4d5f;
  margin-bottom: 12px;
}

.blog-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.feature {
  font-size: 0.9rem;
  color: #4a90a4;
  padding: 6px 12px;
  background: #eaf6fa;
  border-radius: 6px;
  text-align: center;
}

/* --- Referans Programı Minimalist Stil --- */
.referral-program {
  background: linear-gradient(135deg, #2a4d5f 0%, #4a90a4 100%);
  padding: 48px 0;
  color: #fff;
}

.referral-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
  color: #2a4d5f;
}

.referral-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  color: #2a4d5f;
}

.referral-content > p {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.referral-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #eaf6fa;
}

.benefit-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf6fa;
  border-radius: 8px;
}

.benefit strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #2a4d5f;
  margin-bottom: 2px;
}

.benefit p {
  font-size: 0.9rem;
  color: #7ba6b8;
  margin: 0;
}

.referral-code {
  margin-bottom: 24px;
}

.referral-code label {
  display: block;
  font-weight: 600;
  color: #2a4d5f;
  margin-bottom: 8px;
}

.code-container {
  display: flex;
  gap: 8px;
}

.code-container input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #eaf6fa;
  border-radius: 8px;
  font-family: monospace;
  font-size: 1rem;
  background: #f8fafc;
  color: #2a4d5f;
}

.share-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-buttons .btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

/* --- Son Çağrı Bölümü Minimalist Stil --- */
.final-cta {
  background: linear-gradient(135deg, #eaf6fa 0%, #f8fafc 100%);
  padding: 48px 0;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-text h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2a4d5f;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-text .highlight {
  color: #4a90a4;
  font-weight: 700;
}

.cta-text p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4a90a4;
  font-weight: 500;
}

.cta-feature i {
  color: #4a90a4;
  font-size: 1.1rem;
}

.cta-action {
  display: flex;
  justify-content: center;
}

.cta-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(74,144,164,0.12);
  border: 1px solid #eaf6fa;
  text-align: center;
  max-width: 320px;
}

.cta-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a4d5f;
  margin-bottom: 8px;
}

.cta-card p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 24px;
}

.whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.whatsapp-cta:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

.cta-note {
  display: block;
  font-size: 0.9rem;
  color: #7ba6b8;
  margin-top: 12px;
  font-style: italic;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .blog-news .row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .cta-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .referral-benefits {
    grid-template-columns: 1fr;
  }
  
  .share-buttons {
    flex-direction: column;
  }
  
  .news-item {
    flex-direction: column;
    text-align: center;
  }
  
  .news-image {
    width: 100%;
    height: 120px;
  }
}

/* --- Modern Footer Stil --- */
.site-footer {
  background: linear-gradient(120deg, #f8fafc 60%, #eaf6fa 100%);
  color: #2a4d5f;
  font-size: 1rem;
  margin-top: 48px;
  border-top: 1.5px solid #eaf6fa;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr 1.5fr;
  gap: 36px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 48px 24px 24px 24px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand {
  gap: 18px;
}
.footer-logo img {
  height: 44px;
  width: auto;
  margin-bottom: 8px;
}
.footer-desc {
  color: #4a90a4;
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.footer-social a {
  color: #4a90a4;
  font-size: 1.35rem;
  background: #eaf6fa;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
}
.footer-social a:hover {
  background: #4a90a4;
  color: #fff;
}
.footer-col h4 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2a4d5f;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-col ul li a {
  color: #4a90a4;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.18s;
}
.footer-col ul li a:hover {
  color: #2a4d5f;
  text-decoration: underline;
}
.footer-apps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.app-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a90a4;
  background: #eaf6fa;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.app-link:hover {
  background: #4a90a4;
  color: #fff;
}
.footer-bottom {
  border-top: 1.5px solid #eaf6fa;
  margin-top: 18px;
  padding: 18px 24px 12px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  color: #7ba6b8;
  font-size: 0.98rem;
}
.footer-legal {
  display: flex;
  gap: 18px;
}
.footer-legal a {
  color: #7ba6b8;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.18s;
}
.footer-legal a:hover {
  color: #4a90a4;
  text-decoration: underline;
}
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 32px 8px 12px 8px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding: 12px 8px 8px 8px;
    text-align: center;
  }
  .footer-social {
    justify-content: flex-start;
  }
}

/* --- Çerez Onay Bildirimi Stilleri --- */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2a4d5f 0%, #1a3a4a 100%);
  color: #fff;
  padding: 16px 24px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.cookie-text i {
  font-size: 1.2rem;
  color: #4a90a4;
}

.cookie-text span {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #eaf6fa;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn.secondary {
  background: transparent;
  color: #eaf6fa;
  border: 1px solid #4a90a4;
}

.cookie-btn.secondary:hover {
  background: #4a90a4;
  color: #fff;
}

.cookie-btn.primary {
  background: #4a90a4;
  color: #fff;
}

.cookie-btn.primary:hover {
  background: #3a7a8a;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cookie-consent {
    padding: 12px 16px;
  }
  
  .cookie-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .cookie-text {
    flex-direction: column;
    gap: 8px;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .cookie-consent {
    padding: 10px 12px;
  }
  
  .cookie-text span {
    font-size: 0.9rem;
  }
  
  .cookie-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
}

/* --- Müşteri Yorumları Kompakt Stil --- */
.reviews {
  background: linear-gradient(120deg, #f8fafc 60%, #eaf6fa 100%);
  padding: 28px 0 18px 0;
}
.reviews .section-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2a4d5f;
  margin-bottom: 4px;
}
.reviews .section-header p {
  color: #4a90a4;
  font-size: 0.98rem;
  margin-bottom: 12px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin: 0 auto 8px auto;
  max-width: 900px;
}
.review-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(74,144,164,0.07);
  border: none;
  padding: 12px 10px 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  min-height: 120px;
  transition: box-shadow 0.18s;
  position: relative;
}
.review-card:hover {
  box-shadow: 0 4px 16px rgba(74,144,164,0.13);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.reviewer-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a90a4 60%, #2a4d5f 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(74,144,164,0.08);
}
.reviewer-details h4 {
  font-size: 0.98rem;
  font-weight: 600;
  color: #2a4d5f;
  margin: 0 0 1px 0;
}
.review-rating {
  display: flex;
  gap: 1px;
}
.review-rating .star {
  color: #e0e0e0;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.review-rating .star.active {
  color: #ffb400;
  text-shadow: 0 1px 4px rgba(255,180,0,0.08);
}
.review-date {
  margin-left: auto;
  color: #7ba6b8;
  font-size: 0.85rem;
  font-weight: 500;
}
.review-content h5 {
  font-size: 0.98rem;
  font-weight: 600;
  color: #4a90a4;
  margin-bottom: 2px;
}
.review-content p {
  color: #333;
  font-size: 0.93rem;
  margin-bottom: 0;
  line-height: 1.35;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
@media (max-width: 700px) {
  .reviews {
    padding: 14px 0 8px 0;
  }
  .reviews-grid {
    gap: 7px;
    max-width: 99vw;
  }
  .review-card {
    padding: 7px 4px 4px 4px;
    min-height: 80px;
  }
  .review-content p {
    font-size: 0.89rem;
  }
}

/* --- Visual Gallery Section Modern & Eye-catching --- */
.gallery-showcase {
  background: linear-gradient(120deg, #eaf6fa 60%, #f8fafc 100%);
  padding: 56px 0 48px 0;
}
.gallery-showcase .section-header h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #2a4d5f;
  margin-bottom: 8px;
}
.gallery-showcase .section-header p {
  color: #4a90a4;
  font-size: 1.08rem;
  margin-bottom: 32px;
}
.gallery-grid {
  display: grid;
  grid-template-areas:
    'large large medium1 medium2'
    'large large small1 small2'
    'video video small3 small4';
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(74,144,164,0.10);
  background: #fff;
  transition: box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.gallery-item:hover {
  box-shadow: 0 8px 36px rgba(74,144,164,0.18);
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}
.gallery-large { grid-area: large; min-height: 340px; }
.gallery-medium { min-height: 220px; }
.gallery-medium:first-of-type { grid-area: medium1; }
.gallery-medium:last-of-type { grid-area: medium2; }
.gallery-video { grid-area: video; min-height: 220px; }
.gallery-small:nth-of-type(1) { grid-area: small1; }
.gallery-small:nth-of-type(2) { grid-area: small2; }
.gallery-small:nth-of-type(3) { grid-area: small3; }
.gallery-small:nth-of-type(4) { grid-area: small4; }
.gallery-item img, .gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.18s;
}
.gallery-item:hover img, .gallery-item:hover video {
  filter: brightness(0.85) blur(1px) grayscale(0.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(42,77,95,0.10) 0%, rgba(74,144,164,0.22) 100%);
  opacity: 0;
  transition: opacity 0.22s;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 2;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-info {
  padding: 24px 22px 18px 22px;
  color: #fff;
  background: linear-gradient(0deg, rgba(42,77,95,0.82) 80%, rgba(74,144,164,0.18) 100%);
  border-radius: 0 0 18px 18px;
  width: 100%;
  box-shadow: 0 2px 12px rgba(42,77,95,0.10);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.gallery-info h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 2px 0;
  color: #fff;
  text-shadow: 0 2px 8px rgba(42,77,95,0.18);
}
.gallery-info p {
  font-size: 0.98rem;
  color: #eaf6fa;
  margin-bottom: 0;
}
.gallery-play-btn {
  margin-top: 8px;
  background: linear-gradient(90deg, #4a90a4 60%, #2a4d5f 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 2px 8px rgba(74,144,164,0.18);
  cursor: pointer;
  opacity: 0.92;
  transition: background 0.18s, transform 0.18s;
}
.gallery-play-btn:hover {
  background: linear-gradient(90deg, #2a4d5f 60%, #4a90a4 100%);
  transform: scale(1.12);
  opacity: 1;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      'large large'
      'medium1 medium2'
      'video video'
      'small1 small2'
      'small3 small4';
  }
  .gallery-large, .gallery-medium, .gallery-video, .gallery-small {
    min-height: 180px;
  }
}
@media (max-width: 600px) {
  .gallery-showcase {
    padding: 24px 0 12px 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      'large'
      'medium1'
      'medium2'
      'video'
      'small1'
      'small2'
      'small3'
      'small4';
    gap: 10px;
  }
  .gallery-item {
    border-radius: 10px;
  }
  .gallery-info {
    padding: 12px 10px 8px 10px;
    border-radius: 0 0 10px 10px;
  }
  .gallery-play-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}

/* --- Instagram-style Stories Section Modern & Kusursuz --- */
.stories-section {
  background: linear-gradient(120deg, #f8fafc 60%, #eaf6fa 100%);
  padding: 44px 0 32px 0;
}
.stories-section .section-header {
  text-align: center;
  margin-bottom: 18px;
}
.stories-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2a4d5f;
}
.stories-section .section-subtitle {
  color: #4a90a4;
  font-size: 1.08rem;
  margin-bottom: 18px;
}
.stories-container {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-end;
  overflow-x: auto;
  padding: 12px 0 4px 0;
  scrollbar-width: thin;
  scrollbar-color: #eaf6fa #fff;
}
.stories-container::-webkit-scrollbar {
  height: 7px;
  background: #fff;
}
.stories-container::-webkit-scrollbar-thumb {
  background: #eaf6fa;
  border-radius: 8px;
}
.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 92px;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
}
.story-item:hover {
  transform: scale(1.07) translateY(-4px);
  z-index: 2;
  box-shadow: 0 6px 24px rgba(74,144,164,0.13);
}
.story-avatar {
  position: relative;
  width: 68px;
  height: 68px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(74,144,164,0.10);
  z-index: 2;
}
.story-ring {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  z-index: 1;
  border: 0;
  background: conic-gradient(from 0deg, #ff7e5f 0%, #feb47b 30%, #4a90a4 70%, #2a4d5f 100%);
  filter: blur(0.5px);
  transition: box-shadow 0.18s;
}
.story-item:hover .story-ring {
  box-shadow: 0 0 0 4px #eaf6fa, 0 2px 12px #4a90a433;
}
.story-label {
  font-size: 1.01rem;
  font-weight: 600;
  color: #2a4d5f;
  margin-bottom: 2px;
  text-align: center;
  max-width: 90px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.story-time {
  font-size: 0.93rem;
  color: #7ba6b8;
  text-align: center;
}
@media (max-width: 700px) {
  .stories-section {
    padding: 22px 0 10px 0;
  }
  .stories-container {
    gap: 14px;
    padding: 6px 0 2px 0;
  }
  .story-avatar {
    width: 48px;
    height: 48px;
  }
  .story-avatar img {
    width: 42px;
    height: 42px;
  }
  .story-label {
    font-size: 0.93rem;
    max-width: 60px;
  }
}

/* --- Story Modal Modern Stil --- */
#story-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(30,40,60,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
}
#story-modal.active {
  display: flex;
  opacity: 1;
}
.story-modal-content {
  position: relative;
  background: none;
  border-radius: 18px;
  box-shadow: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 320px;
  max-width: 96vw;
  max-height: 92vh;
}
.story-modal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.story-modal-img {
  max-width: 60vw;
  max-height: 70vh;
  border-radius: 18px;
  box-shadow: 0 8px 36px rgba(42,77,95,0.22);
  background: #fff;
  object-fit: contain;
  margin-bottom: 12px;
}
.story-modal-label {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2px;
  text-shadow: 0 2px 8px #2228;
}
.story-modal-time {
  color: #eaf6fa;
  font-size: 0.98rem;
  text-align: center;
  margin-bottom: 8px;
}
.story-modal-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  opacity: 0.85;
  transition: color 0.15s;
}
.story-modal-close:hover {
  color: #ff7e5f;
  opacity: 1;
}
.story-modal-prev, .story-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #4a90a4 60%, #2a4d5f 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.92;
  box-shadow: 0 2px 8px rgba(74,144,164,0.18);
  transition: background 0.18s, transform 0.18s;
  z-index: 5;
}
.story-modal-prev {
  left: -64px;
}
.story-modal-next {
  right: -64px;
}
.story-modal-prev:hover, .story-modal-next:hover {
  background: linear-gradient(90deg, #2a4d5f 60%, #4a90a4 100%);
  transform: translateY(-50%) scale(1.12);
  opacity: 1;
}
@media (max-width: 900px) {
  .story-modal-img {
    max-width: 90vw;
    max-height: 60vh;
  }
  .story-modal-prev, .story-modal-next {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
    left: -38px;
    right: -38px;
  }
}
@media (max-width: 600px) {
  .story-modal-content {
    min-width: 0;
    min-height: 0;
    max-width: 100vw;
    max-height: 100vh;
  }
  .story-modal-img {
    max-width: 98vw;
    max-height: 48vh;
    border-radius: 10px;
  }
  .story-modal-prev, .story-modal-next {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
    left: -18px;
    right: -18px;
  }
  .story-modal-close {
    top: 8px;
    right: 10px;
    font-size: 1.5rem;
  }
}

/* --- AI Tur Önerileri Modern & Dikkat Çekici Stil --- */
.ai-recommendations {
  background: linear-gradient(120deg, #eaf6fa 60%, #f8fafc 100%);
  padding: 56px 0 48px 0;
}
.ai-recommendations .section-header h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #2a4d5f;
  margin-bottom: 8px;
}
.ai-recommendations .section-header p {
  color: #4a90a4;
  font-size: 1.08rem;
  margin-bottom: 32px;
}
.ai-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
.ai-chat-interface {
  background: linear-gradient(120deg, #fff 70%, #eaf6fa 100%);
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(74,144,164,0.10);
  padding: 36px 32px 28px 32px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.ai-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}
.ai-message {
  background: linear-gradient(90deg, #eaf6fa 60%, #f8fafc 100%);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(74,144,164,0.08);
  padding: 18px 18px 14px 18px;
  color: #2a4d5f;
  font-size: 1.08rem;
  font-weight: 500;
  position: relative;
  animation: fadeInUp 0.5s;
}
.ai-message.bot {
  background: linear-gradient(90deg, #4a90a4 60%, #2a4d5f 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(74,144,164,0.13);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.ai-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 8px;
  justify-content: center;
}
.ai-option {
  background: linear-gradient(90deg, #4a90a4 60%, #2a4d5f 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 22px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(74,144,164,0.10);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  outline: none;
}
.ai-option:hover, .ai-option:focus {
  background: linear-gradient(90deg, #2a4d5f 60%, #4a90a4 100%);
  transform: scale(1.07);
  box-shadow: 0 4px 18px rgba(74,144,164,0.18);
}
.ai-recommendations-result {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(74,144,164,0.10);
  padding: 18px 18px 14px 18px;
  color: #2a4d5f;
  font-size: 1.05rem;
  margin-top: 10px;
  animation: fadeInUp 0.5s;
}
@media (max-width: 700px) {
  .ai-recommendations {
    padding: 24px 0 12px 0;
  }
  .ai-chat-interface {
    padding: 16px 6px 10px 6px;
    border-radius: 12px;
    max-width: 99vw;
  }
  .ai-option {
    padding: 10px 10px;
    font-size: 0.98rem;
    border-radius: 8px;
  }
}

/* --- Blog ve Haberler Minimalist Stil --- */
.blog-news {
  background: linear-gradient(135deg, #f8fafc 0%, #eaf6fa 100%);
  padding: 48px 0;
}

.blog-news .container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-news .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.blog-news .section-header h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2a4d5f;
  margin-bottom: 8px;
}

.blog-news .section-header p {
  color: #4a90a4;
  font-size: 1rem;
  margin-bottom: 24px;
}

/* Haberler Listesi */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(74,144,164,0.08);
  border: 1px solid #eaf6fa;
  transition: all 0.2s ease;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.news-item:hover {
  box-shadow: 0 4px 20px rgba(74,144,164,0.12);
  transform: translateY(-2px);
}

.news-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

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

.news-content {
  flex: 1;
  min-width: 0;
}

.news-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2a4d5f;
  margin-bottom: 6px;
  line-height: 1.4;
}

.news-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.news-content h3 a:hover {
  color: #4a90a4;
}

.news-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.news-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: #7ba6b8;
}

/* Blog Promo */
.blog-promo {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(74,144,164,0.10);
  border: 1px solid #eaf6fa;
  text-align: center;
}

.blog-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid #eaf6fa;
}

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

.blog-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a4d5f;
  margin-bottom: 12px;
}

.blog-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.feature {
  font-size: 0.9rem;
  color: #4a90a4;
  padding: 6px 12px;
  background: #eaf6fa;
  border-radius: 6px;
  text-align: center;
}

/* --- Referans Programı Minimalist Stil --- */
.referral-program {
  background: linear-gradient(135deg, #2a4d5f 0%, #4a90a4 100%);
  padding: 48px 0;
  color: #fff;
}

.referral-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
  color: #2a4d5f;
}

.referral-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  color: #2a4d5f;
}

.referral-content > p {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.referral-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #eaf6fa;
}

.benefit-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf6fa;
  border-radius: 8px;
}

.benefit strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #2a4d5f;
  margin-bottom: 2px;
}

.benefit p {
  font-size: 0.9rem;
  color: #7ba6b8;
  margin: 0;
}

.referral-code {
  margin-bottom: 24px;
}

.referral-code label {
  display: block;
  font-weight: 600;
  color: #2a4d5f;
  margin-bottom: 8px;
}

.code-container {
  display: flex;
  gap: 8px;
}

.code-container input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #eaf6fa;
  border-radius: 8px;
  font-family: monospace;
  font-size: 1rem;
  background: #f8fafc;
  color: #2a4d5f;
}

.share-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-buttons .btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

/* --- Son Çağrı Bölümü Minimalist Stil --- */
.final-cta {
  background: linear-gradient(135deg, #eaf6fa 0%, #f8fafc 100%);
  padding: 48px 0;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-text h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2a4d5f;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-text .highlight {
  color: #4a90a4;
  font-weight: 700;
}

.cta-text p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4a90a4;
  font-weight: 500;
}

.cta-feature i {
  color: #4a90a4;
  font-size: 1.1rem;
}

.cta-action {
  display: flex;
  justify-content: center;
}

.cta-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(74,144,164,0.12);
  border: 1px solid #eaf6fa;
  text-align: center;
  max-width: 320px;
}

.cta-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a4d5f;
  margin-bottom: 8px;
}

.cta-card p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 24px;
}

.whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.whatsapp-cta:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

.cta-note {
  display: block;
  font-size: 0.9rem;
  color: #7ba6b8;
  margin-top: 12px;
  font-style: italic;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .blog-news .row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .cta-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .referral-benefits {
    grid-template-columns: 1fr;
  }
  
  .share-buttons {
    flex-direction: column;
  }
  
  .news-item {
    flex-direction: column;
    text-align: center;
  }
  
  .news-image {
    width: 100%;
    height: 120px;
  }
}

/* --- Modern Footer Stil --- */
.site-footer {
  background: linear-gradient(120deg, #f8fafc 60%, #eaf6fa 100%);
  color: #2a4d5f;
  font-size: 1rem;
  margin-top: 48px;
  border-top: 1.5px solid #eaf6fa;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr 1.5fr;
  gap: 36px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 48px 24px 24px 24px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand {
  gap: 18px;
}
.footer-logo img {
  height: 44px;
  width: auto;
  margin-bottom: 8px;
}
.footer-desc {
  color: #4a90a4;
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.footer-social a {
  color: #4a90a4;
  font-size: 1.35rem;
  background: #eaf6fa;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
}
.footer-social a:hover {
  background: #4a90a4;
  color: #fff;
}
.footer-col h4 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2a4d5f;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-col ul li a {
  color: #4a90a4;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.18s;
}
.footer-col ul li a:hover {
  color: #2a4d5f;
  text-decoration: underline;
}
.footer-apps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.app-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a90a4;
  background: #eaf6fa;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.app-link:hover {
  background: #4a90a4;
  color: #fff;
}
.footer-bottom {
  border-top: 1.5px solid #eaf6fa;
  margin-top: 18px;
  padding: 18px 24px 12px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  color: #7ba6b8;
  font-size: 0.98rem;
}
.footer-legal {
  display: flex;
  gap: 18px;
}
.footer-legal a {
  color: #7ba6b8;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.18s;
}
.footer-legal a:hover {
  color: #4a90a4;
  text-decoration: underline;
}
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 32px 8px 12px 8px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding: 12px 8px 8px 8px;
    text-align: center;
  }
  .footer-social {
    justify-content: flex-start;
  }
}

/* --- Çerez Onay Bildirimi Stilleri --- */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2a4d5f 0%, #1a3a4a 100%);
  color: #fff;
  padding: 16px 24px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.cookie-text i {
  font-size: 1.2rem;
  color: #4a90a4;
}

.cookie-text span {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #eaf6fa;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn.secondary {
  background: transparent;
  color: #eaf6fa;
  border: 1px solid #4a90a4;
}

.cookie-btn.secondary:hover {
  background: #4a90a4;
  color: #fff;
}

.cookie-btn.primary {
  background: #4a90a4;
  color: #fff;
}

.cookie-btn.primary:hover {
  background: #3a7a8a;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cookie-consent {
    padding: 12px 16px;
  }
  
  .cookie-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .cookie-text {
    flex-direction: column;
    gap: 8px;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .cookie-consent {
    padding: 10px 12px;
  }
  
  .cookie-text span {
    font-size: 0.9rem;
  }
  
  .cookie-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
}

/* --- Müşteri Yorumları Kompakt Stil --- */
.reviews {
  background: linear-gradient(120deg, #f8fafc 60%, #eaf6fa 100%);
  padding: 28px 0 18px 0;
}
.reviews .section-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2a4d5f;
  margin-bottom: 4px;
}
.reviews .section-header p {
  color: #4a90a4;
  font-size: 0.98rem;
  margin-bottom: 12px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin: 0 auto 8px auto;
  max-width: 900px;
}
.review-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(74,144,164,0.07);
  border: none;
  padding: 12px 10px 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  min-height: 120px;
  transition: box-shadow 0.18s;
  position: relative;
}
.review-card:hover {
  box-shadow: 0 4px 16px rgba(74,144,164,0.13);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.reviewer-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a90a4 60%, #2a4d5f 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(74,144,164,0.08);
}
.reviewer-details h4 {
  font-size: 0.98rem;
  font-weight: 600;
  color: #2a4d5f;
  margin: 0 0 1px 0;
}
.review-rating {
  display: flex;
  gap: 1px;
}
.review-rating .star {
  color: #e0e0e0;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.review-rating .star.active {
  color: #ffb400;
  text-shadow: 0 1px 4px rgba(255,180,0,0.08);
}
.review-date {
  margin-left: auto;
  color: #7ba6b8;
  font-size: 0.85rem;
  font-weight: 500;
}
.review-content h5 {
  font-size: 0.98rem;
  font-weight: 600;
  color: #4a90a4;
  margin-bottom: 2px;
}
.review-content p {
  color: #333;
  font-size: 0.93rem;
  margin-bottom: 0;
  line-height: 1.35;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
@media (max-width: 700px) {
  .reviews {
    padding: 14px 0 8px 0;
  }
  .reviews-grid {
    gap: 7px;
    max-width: 99vw;
  }
  .review-card {
    padding: 7px 4px 4px 4px;
    min-height: 80px;
  }
  .review-content p {
    font-size: 0.89rem;
  }
}

/* --- Visual Gallery Section Kompakt & Göz Alıcı --- */
.gallery-showcase {
  background: linear-gradient(120deg, #eaf6fa 60%, #f8fafc 100%);
  padding: 24px 0 16px 0;
}
.gallery-showcase .section-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2a4d5f;
  margin-bottom: 4px;
}
.gallery-showcase .section-header p {
  color: #4a90a4;
  font-size: 0.98rem;
  margin-bottom: 10px;
}
.gallery-grid {
  display: grid;
  grid-template-areas:
    'large medium1 medium2 video'
    'small1 small2 small3 small4';
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(74,144,164,0.07);
  background: #fff;
  transition: box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  min-height: 90px;
  max-height: 180px;
}
.gallery-item:hover {
  box-shadow: 0 4px 16px rgba(74,144,164,0.13);
  transform: translateY(-2px) scale(1.015);
  z-index: 2;
}
.gallery-large { grid-area: large; min-height: 180px; }
.gallery-medium { min-height: 120px; }
.gallery-medium:first-of-type { grid-area: medium1; }
.gallery-medium:last-of-type { grid-area: medium2; }
.gallery-video { grid-area: video; min-height: 120px; }
.gallery-small:nth-of-type(1) { grid-area: small1; }
.gallery-small:nth-of-type(2) { grid-area: small2; }
.gallery-small:nth-of-type(3) { grid-area: small3; }
.gallery-small:nth-of-type(4) { grid-area: small4; }
.gallery-item img, .gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.18s;
}
.gallery-item:hover img, .gallery-item:hover video {
  filter: brightness(0.88) blur(0.5px) grayscale(0.04);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(42,77,95,0.18) 0%, rgba(74,144,164,0.32) 100%);
  opacity: 0;
  transition: opacity 0.22s;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 2;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-info {
  padding: 10px 10px 8px 10px;
  color: #fff;
  background: linear-gradient(0deg, rgba(42,77,95,0.82) 80%, rgba(74,144,164,0.18) 100%);
  border-radius: 0 0 10px 10px;
  width: 100%;
  box-shadow: 0 1px 6px rgba(42,77,95,0.08);
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
}
.gallery-info h3 {
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0 0 1px 0;
  color: #fff;
  text-shadow: 0 1px 4px rgba(42,77,95,0.12);
}
.gallery-info p {
  font-size: 0.89rem;
  color: #eaf6fa;
  margin-bottom: 0;
}
.gallery-play-btn {
  margin-top: 0;
  background: linear-gradient(90deg, #4a90a4 60%, #2a4d5f 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 1px 4px rgba(74,144,164,0.12);
  cursor: pointer;
  opacity: 0.95;
  transition: background 0.18s, transform 0.18s;
}
.gallery-play-btn:hover {
  background: linear-gradient(90deg, #2a4d5f 60%, #4a90a4 100%);
  transform: scale(1.08);
  opacity: 1;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      'large medium1'
      'medium2 video'
      'small1 small2'
      'small3 small4';
    gap: 7px;
  }
  .gallery-large, .gallery-medium, .gallery-video, .gallery-small {
    min-height: 90px;
    max-height: 120px;
  }
}
@media (max-width: 600px) {
  .gallery-showcase {
    padding: 10px 0 6px 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      'large'
      'medium1'
      'medium2'
      'video'
      'small1'
      'small2'
      'small3'
      'small4';
    gap: 5px;
  }
  .gallery-item {
    border-radius: 7px;
    min-height: 60px;
    max-height: 90px;
  }
  .gallery-info {
    padding: 6px 6px 4px 6px;
    border-radius: 0 0 7px 7px;
  }
  .gallery-play-btn {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
  }
}

/* --- Galeri Butonları Modern Stil --- */
.gallery-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.gallery-actions .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(74,144,164,0.12);
  position: relative;
  overflow: hidden;
}

.gallery-actions .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.gallery-actions .btn:hover::before {
  left: 100%;
}

.gallery-actions .btn-primary {
  background: linear-gradient(135deg, #4a90a4 0%, #2a4d5f 100%);
  color: #fff;
}

.gallery-actions .btn-primary:hover {
  background: linear-gradient(135deg, #2a4d5f 0%, #4a90a4 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(74,144,164,0.25);
}

.gallery-actions .btn-secondary {
  background: linear-gradient(135deg, #eaf6fa 0%, #f8fafc 100%);
  color: #2a4d5f;
  border: 2px solid #4a90a4;
}

.gallery-actions .btn-secondary:hover {
  background: linear-gradient(135deg, #4a90a4 0%, #2a4d5f 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(74,144,164,0.25);
}

.gallery-actions .btn-accent {
  background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
  color: #fff;
}

.gallery-actions .btn-accent:hover {
  background: linear-gradient(135deg, #feb47b 0%, #ff7e5f 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,126,95,0.3);
}

.gallery-actions .btn i {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.gallery-actions .btn:hover i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .gallery-actions {
    gap: 12px;
    margin-top: 16px;
  }
  
  .gallery-actions .btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    flex: 1;
    min-width: 140px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .gallery-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .gallery-actions .btn {
    width: 100%;
    padding: 12px 16px;
  }
}