/* =======================================================
   KURUMSAL SAYFALAR CSS - Güneydoğu Dental
   Responsive ve modern tasarım
======================================================= */

/* KAMPANYALAR SAYFASI STYLES */
/* ================================================= */

.campaigns-main {
  background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
  min-height: 100vh;
}

/* Hero Section */
.campaigns-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #005197 0%, #0066cc 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.campaigns-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="white" stop-opacity=".1"/><stop offset="100%" stop-color="white" stop-opacity="0"/></radialGradient></defs><rect width="100" height="20" fill="url(%23a)"/></svg>');
  animation: float 8s ease-in-out infinite;
}

.campaigns-hero-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.campaigns-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(45deg, #ffffff, #e3f2fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.highlight-text {
  color: #ffd700;
  display: block;
}

.campaigns-hero-description {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.6;
}

.campaigns-hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffd700;
  line-height: 1;
}

.stat-text {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 5px;
}

.campaigns-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* General Container and Section Responsive Styles */
@media (max-width: 1024px) {
  .container {
    max-width: 960px;
    padding: 0 2rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 720px;
    padding: 0 1.5rem;
  }

  .section-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .section-description {
    font-size: 1rem;
    margin-bottom: 0;
  }

  /* Hero Section Responsive */
  .hero-section {
    padding: 60px 0;
  }

  .hero-badge {
    padding: 15px 25px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-badge i {
    font-size: 1.1rem;
    margin-right: 8px;
  }

  /* Filter Section */
  .campaigns-filter {
    padding: 30px 0;
  }

  .filter-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 540px;
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .section-description {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .hero-section {
    padding: 50px 0;
  }

  .hero-badge {
    padding: 12px 20px;
    font-size: 0.9rem;
    border-radius: 40px;
  }

  .campaigns-filter {
    padding: 25px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.8rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .section-description {
    font-size: 0.85rem;
  }

  .hero-section {
    padding: 40px 0;
  }

  .hero-badge {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .campaigns-filter {
    padding: 20px 0;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 0.6rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .section-description {
    font-size: 0.8rem;
  }

  .hero-badge {
    padding: 8px 15px;
    font-size: 0.8rem;
  }
}

.hero-badge {
  background: linear-gradient(45deg, #ffd700, #ffeb3b);
  color: #005197;
  padding: 20px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  animation: pulse 2s infinite;
}

.hero-badge i {
  margin-right: 10px;
  font-size: 1.3rem;
}

/* Filter Section */
.campaigns-filter {
  padding: 40px 0;
  background: white;
  border-bottom: 1px solid #eee;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.filter-tabs {
  display: flex;
  gap: 10px;
}

.filter-tab {
  background: #f8f9fa;
  border: 2px solid transparent;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-tab:hover {
  background: #e9ecef;
  color: #333;
}

.filter-tab.active {
  background: linear-gradient(135deg, #005197, #0066cc);
  color: white;
  border-color: #005197;
}

/* Campaigns Grid */
.campaigns-grid {
  padding: 60px 0;
}

.campaigns-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Campaign Card */
.campaign-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #f0f0f0;
}

.campaign-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.campaign-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(45deg, #ff6b6b, #ff5252);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
}

.campaign-badge.seasonal {
  background: linear-gradient(45deg, #4caf50, #66bb6a);
}

.campaign-badge.package {
  background: linear-gradient(45deg, #9c27b0, #ba68c8);
}

.campaign-badge.professional {
  background: linear-gradient(45deg, #ff9800, #ffb74d);
}

.campaign-badge.flash {
  background: linear-gradient(45deg, #f44336, #ef5350);
  animation: pulse 1.5s infinite;
}

.campaign-badge.category {
  background: linear-gradient(45deg, #2196f3, #42a5f5);
}

.campaign-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.campaign-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.campaign-card:hover .campaign-image img {
  transform: scale(1.05);
}

.campaign-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
}

.discount-tag {
  background: linear-gradient(45deg, #ffd700, #ffeb3b);
  color: #333;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Package Preview */
.package-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  position: relative;
}

.package-items {
  display: grid;
  grid-template-columns: repeat(3, 60px);
  gap: 10px;
}

.package-items img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.package-count {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Campaign Content */
.campaign-content {
  padding: 25px;
}

.campaign-category {
  color: #666;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.campaign-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.3;
}

.campaign-description {
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Pricing */
.campaign-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 1rem;
}

.new-price {
  color: #005197;
  font-size: 1.5rem;
  font-weight: 800;
}

.discount-percent {
  background: linear-gradient(45deg, #4caf50, #66bb6a);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.savings {
  color: #4caf50;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Timer */
.campaign-timer {
  background: #f8f9fa;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.timer-text {
  font-size: 0.9rem;
  color: #333;
}

.flash-timer {
  background: rgba(244, 67, 54, 0.9);
  color: white;
  padding: 15px 20px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Features */
.campaign-features {
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.feature-item i {
  color: #4caf50;
  width: 16px;
}

/* Package Contents */
.package-contents {
  margin-bottom: 20px;
}

.package-contents h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.package-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: #666;
}

.package-list i {
  color: #4caf50;
  font-size: 0.8rem;
  width: 14px;
}

.more-items {
  color: #999;
  font-style: italic;
}

/* Package Highlights */
.package-highlights {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #666;
}

.highlight-item i {
  color: #005197;
}

/* Stock Indicator */
.stock-indicator {
  margin-bottom: 20px;
}

.stock-bar {
  background: #f0f0f0;
  height: 8px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.stock-fill {
  background: linear-gradient(45deg, #ff9800, #ffb74d);
  height: 100%;
  border-radius: 10px;
  transition: width 0.3s ease;
}

.stock-text {
  font-size: 0.85rem;
  color: #666;
}

/* Actions */
.campaign-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.btn-add-cart {
  background: linear-gradient(135deg, #005197, #0066cc);
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 81, 151, 0.3);
}

.package-btn {
  background: linear-gradient(135deg, #9c27b0, #ba68c8);
}

.package-btn:hover {
  box-shadow: 0 8px 20px rgba(156, 39, 176, 0.3);
}

.premium {
  background: linear-gradient(135deg, #ff9800, #ffb74d);
}

.premium:hover {
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

.flash-btn {
  background: linear-gradient(135deg, #f44336, #ef5350);
  animation: pulse 2s infinite;
}

.flash-btn:hover {
  box-shadow: 0 8px 20px rgba(244, 67, 54, 0.3);
}

.btn-details {
  background: transparent;
  color: #666;
  border: 2px solid #e0e0e0;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-details:hover {
  border-color: #005197;
  color: #005197;
}

/* Load More */
.campaigns-load-more {
  text-align: center;
  margin-top: 40px;
}

.btn-load-more {
  background: transparent;
  color: #005197;
  border: 2px solid #005197;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-load-more:hover {
  background: #005197;
  color: white;
}

/* Newsletter */
.campaigns-newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, #005197, #0066cc);
  color: white;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.newsletter-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.newsletter-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.input-group {
  display: flex;
  background: white;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.input-group input {
  flex: 1;
  padding: 18px 24px;
  border: none;
  font-size: 1rem;
  background: transparent;
}

.input-group input:focus {
  outline: none;
}

.input-group button {
  background: linear-gradient(135deg, #ffd700, #ffeb3b);
  color: #333;
  border: none;
  padding: 18px 28px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-group button:hover {
  background: linear-gradient(135deg, #ffeb3b, #ffd700);
}

.newsletter-benefits {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.newsletter-benefits span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.newsletter-benefits i {
  color: #4caf50;
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Flash Sale Specific */
.flash-sale {
  border: 3px solid #f44336;
  position: relative;
}

.flash-sale::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #f44336, transparent, #f44336);
  border-radius: 20px;
  z-index: -1;
  animation: flash-border 2s infinite;
}

@keyframes flash-border {

  0%,
  100% {
    opacity: 0.8;
  }

  50% {
    opacity: 0.4;
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .campaigns-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .campaigns-hero-title {
    font-size: 2.5rem;
  }

  .campaigns-hero-stats {
    justify-content: center;
    gap: 30px;
  }

  .filter-header {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .campaigns-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .newsletter-text h2 {
    font-size: 2rem;
  }

  .newsletter-benefits {
    justify-content: center;
  }

  .campaign-actions {
    grid-template-columns: 1fr;
  }

  .package-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .campaigns-hero {
    padding: 60px 0;
  }

  .campaigns-hero-title {
    font-size: 2rem;
  }

  .campaigns-hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .campaigns-container {
    grid-template-columns: 1fr;
  }

  .campaign-card {
    margin: 0 10px;
  }

  .input-group {
    flex-direction: column;
    border-radius: 15px;
  }

  .input-group input,
  .input-group button {
    border-radius: 0;
  }

  .input-group input {
    border-radius: 15px 15px 0 0;
  }

  .input-group button {
    border-radius: 0 0 15px 15px;
  }
}

/* Kurumsal sayfa ana container */
.corporate-main {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
  min-height: 70vh;
}

.corporate-container {
  max-width: var(--container);
  margin: 0 auto;
}

/* Sayfa başlığı */
.corporate-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #005197 0%, #0066cc 100%);
  border-radius: 20px;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 81, 151, 0.2);
  position: relative;
  overflow: hidden;
}

.corporate-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.corporate-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 2;
}

.corporate-header .subtitle {
  font-size: 1.1rem;
  margin-top: 10px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* İçerik alanı */
.corporate-content {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  line-height: 1.8;
  position: relative;
}

.corporate-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #005197, #ff8108, #005197);
  border-radius: 20px 20px 0 0;
}

/* Tipografi */
.corporate-content h2 {
  color: #005197;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 40px 0 20px 0;
  padding-left: 20px;
  border-left: 4px solid #ff8108;
  position: relative;
}

.corporate-content h3 {
  color: #005197;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 30px 0 15px 0;
}

.corporate-content h4 {
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 25px 0 10px 0;
}

.corporate-content p {
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

.corporate-content ul,
.corporate-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.corporate-content li {
  color: #444;
  margin-bottom: 10px;
  position: relative;
}

.corporate-content ul li::before {
  content: '•';
  color: #ff8108;
  font-weight: bold;
  position: absolute;
  left: -20px;
}

/* Özel liste stilleri */
.highlight-list {
  background: #f8fafe;
  border-radius: 12px;
  padding: 25px;
  margin: 25px 0;
  border-left: 4px solid #005197;
}

.highlight-list h4 {
  color: #005197;
  margin-top: 0;
}

/* Tablo stilleri */
.corporate-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.corporate-table th {
  background: linear-gradient(135deg, #005197, #0066cc);
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

.corporate-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.corporate-table tr:hover {
  background: #f8fafe;
}

/* Bilgi kutuları */
.info-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
  border: 2px solid #005197;
  border-radius: 15px;
  padding: 25px;
  margin: 30px 0;
  position: relative;
}

.info-box::before {
  content: 'ℹ';
  position: absolute;
  top: -12px;
  left: 20px;
  background: #005197;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.warning-box {
  background: linear-gradient(135deg, #fff3e0 0%, #fef7f0 100%);
  border: 2px solid #ff8108;
  border-radius: 15px;
  padding: 25px;
  margin: 30px 0;
  position: relative;
}

.warning-box::before {
  content: '⚠';
  position: absolute;
  top: -12px;
  left: 20px;
  background: #ff8108;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

/* İletişim bilgileri */
.contact-info {
  background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
  border-radius: 15px;
  padding: 30px;
  margin: 40px 0;
  text-align: center;
  border: 2px solid #e3f2fd;
}

.contact-info h3 {
  color: #005197;
  margin-bottom: 20px;
}

.contact-item {
  display: inline-block;
  margin: 10px 20px;
  padding: 15px 25px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
}

.contact-item i {
  color: #ff8108;
  margin-right: 10px;
}

/* Son güncelleme bilgisi */
.last-updated {
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  background: #f8fafe;
  border-radius: 12px;
  font-size: 0.9rem;
  color: #666;
  border: 1px solid #e3f2fd;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .corporate-main {
    padding: 20px 0 40px;
  }

  .corporate-container {
    padding: 0 15px;
  }

  .corporate-header {
    margin-bottom: 30px;
    padding: 30px 15px;
    border-radius: 15px;
  }

  .corporate-header h1 {
    font-size: 1.8rem;
  }

  .corporate-header .subtitle {
    font-size: 1rem;
  }

  .corporate-content {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .corporate-content h2 {
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    padding-left: 15px;
  }

  .corporate-content h3 {
    font-size: 1.3rem;
  }

  .corporate-content h4 {
    font-size: 1.1rem;
  }

  .corporate-table {
    font-size: 0.9rem;
  }

  .corporate-table th,
  .corporate-table td {
    padding: 10px;
  }

  .info-box,
  .warning-box {
    padding: 20px;
    margin: 20px 0;
  }

  .contact-info {
    padding: 20px;
    margin: 30px 0;
  }

  .contact-item {
    display: block;
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .corporate-header h1 {
    font-size: 1.5rem;
  }

  .corporate-content {
    padding: 20px 15px;
  }

  .corporate-content h2 {
    font-size: 1.3rem;
  }

  .corporate-table {
    font-size: 0.8rem;
  }

  .corporate-table th,
  .corporate-table td {
    padding: 8px;
  }
}

/* Animasyonlar */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Print stilleri */
@media print {
  .corporate-header {
    background: #005197 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .corporate-content {
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .info-box,
  .warning-box {
    border: 1px solid #ddd;
    background: #f9f9f9 !important;
  }
}

/* =======================================================
   KLİNİK PAKETLERİ - YENİ TASARIM
   Responsive ve modern tasarım
======================================================= */

/* Clinic Packages Section */
.clinic-packages {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
}

.packages-header {
  text-align: center;
  margin-bottom: 100px;
}

.packages-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ff8108;
  margin-bottom: 10px;
  line-height: 1.2;
}

.packages-subtitle {
  font-size: 1.2rem;
  color: var(--text);
  margin: 0;
  opacity: 0.9;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

/* Package Cards */
.package-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  border: 3px solid transparent;
  padding-top: 20px;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.package-card.bronze {
  border-color: #cd7f32;
  background: #bc601e14;
}

.package-card.bronze:hover {
  border-color: #b8651a;
  box-shadow: 0 20px 60px rgba(205, 127, 50, 0.3);
}

.package-card.silver {
  border-color: #c0c0c0;
  transform: scale(1.05);
  background: #c0c0c024;
}

.package-card.silver:hover {
  border-color: #a8a8a8;
  box-shadow: 0 25px 70px rgba(192, 192, 192, 0.4);
  transform: scale(1.05) translateY(-10px);
}

.package-card.gold {
  border-color: #ffd700;
  background: #ffd10c21;
}

.package-card.gold:hover {
  border-color: #e6c200;
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
}

/* Popular Badge */
.popular-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.popular-badge i {
  margin-bottom: 2px;
}

/* Package Header */
.package-header {
  padding: 40px 30px 30px;
  text-align: center;
  position: relative;
}

.package-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #666;
}

.bronze .package-badge {
  background: linear-gradient(135deg, #c9aa8c52, #eebe58ad);
  color: var(--text);
  border: 1px solid #ff8108;
}

.silver .package-badge {
  background: linear-gradient(135deg, #f4f4f4, #a8a8a852);
  color: #ff8108;
  border: 1px solid #ff8108;
}

.gold .package-badge {
  background: linear-gradient(135deg, #ffd7005e, #cfaf007d);
  color: #333;
  border: 1px solid #ff8108;
}

.package-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 25px;
}

.package-price {
  margin-bottom: 20px;
}

.currency {
  font-size: 1.5rem;
  color: #666;
  vertical-align: top;
}

.amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: #005197;
  line-height: 1;
}

.price-info {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 1.1rem;
}

.savings {
  background: #FF8108;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Package Content */
.package-content {
  padding: 0 30px 40px;
}

.package-description {
  text-align: center;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1rem;
}

.package-features h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff8108;
  margin-bottom: 20px;
  text-align: center;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.features-list li {
  display: flex;
  align-items: center;
  justify-content: ce;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list i {
  color: #ff8108;
  font-size: 0.85rem;
  flex-shrink: 0;
  background: #ff81084a;
  border-radius: 50%;
  width: 20px;
  border: 1px solid #ff8108;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Package Benefits */
.package-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  padding: 0;
  border-radius: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #666;
}

.benefit-item i {
  color: #ff8108;
  font-size: 1rem;
}

/* Package Buttons */
.package-btn {
  width: 100%;
  padding: 18px 24px;
  border: none;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bronze-btn {
  background: linear-gradient(135deg, #cd7f32, #d4940a);
  color: white;
}

.bronze-btn:hover {
  background: linear-gradient(135deg, #b8651a, #c2850a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(205, 127, 50, 0.4);
}

.silver-btn {
  background: linear-gradient(135deg, #c0c0c06b, #a8a8a882);
  color: #101418ba;
  border: 1px solid #10141861;
}

.silver-btn:hover {
  background: linear-gradient(135deg, #a8a8a8, #909090);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 192, 192, 0.4);
}

.gold-btn {
  background: linear-gradient(135deg, #ffd700, #e6c200);
  color: #101418cf;
}

.gold-btn:hover {
  background: linear-gradient(135deg, #e6c200, #ccac00);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Professional Hero Section */
.professional-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #005197 0%, #0066cc 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.professional-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="white" stop-opacity=".1"/><stop offset="100%" stop-color="white" stop-opacity="0"/></radialGradient></defs><rect width="100" height="20" fill="url(%23a)"/></svg>');
  animation: float 8s ease-in-out infinite;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-title .highlight {
  color: #ffd700;
  position: relative;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* Hero Features */
.hero-features {
  display: grid;
  gap: 25px;
  margin-bottom: 50px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-icon {
  background: rgba(255, 255, 255, 0.15);
  padding: 15px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: #ffd700;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.feature-content p {
  font-size: 0.95rem;
  opacity: 0.8;
  margin: 0;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700, #ffeb3b);
  color: #333;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffeb3b, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 25px 20px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffd700;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-image {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 60px 40px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.image-placeholder i {
  font-size: 4rem;
  color: #ffd700;
  opacity: 0.8;
}

.image-placeholder span {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }
}

/* Clinic Packages Responsive Design */
/* Tablet */
@media (max-width: 1024px) {
  .clinic-packages {
    padding: 70px 0;
  }

  .packages-title {
    font-size: 2.4rem;
  }

  .packages-subtitle {
    font-size: 1rem;
  }

  .packages-grid {
    gap: 25px;
  }

  .amount {
    font-size: 3.2rem;
  }

  .package-header {
    padding: 35px 25px 25px;
  }

  .package-content {
    padding: 0 25px 35px;
  }
}

@media (max-width: 768px) {
  .clinic-packages {
    padding: 60px 0;
  }

  .packages-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .packages-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 2rem;
  }

  .package-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .package-card.silver {
    transform: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }

  .package-card.silver:hover {
    transform: translateY(-8px);
  }

  .package-header {
    padding: 30px 20px 20px;
  }

  .package-name {
    font-size: 1.4rem;
  }

  .amount {
    font-size: 2.8rem;
  }

  .currency {
    font-size: 1.2rem;
  }

  .period {
    font-size: 0.9rem;
  }

  .package-content {
    padding: 0 20px 30px;
  }

  .package-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .package-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 25px;
  }

  .benefit-item {
    font-size: 0.85rem;
  }

  .package-btn {
    padding: 16px 20px;
    font-size: 1rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }
}

@media (max-width: 576px) {
  .clinic-packages {
    padding: 50px 0;
  }

  .packages-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .packages-subtitle {
    font-size: 0.9rem;
  }

  .packages-grid {
    gap: 20px;
    margin-top: 1.5rem;
  }

  .package-card {
    margin: 0 1rem;
    border-radius: 16px;
  }

  .package-header {
    padding: 25px 15px 15px;
  }

  .package-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .amount {
    font-size: 2.4rem;
    margin-bottom: 0.3rem;
  }

  .currency {
    font-size: 1rem;
  }

  .period {
    font-size: 0.8rem;
  }

  .package-content {
    padding: 0 15px 25px;
  }

  .package-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
  }

  .package-benefits {
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
  }

  .benefit-item {
    font-size: 0.8rem;
  }

  .benefit-item i {
    font-size: 0.9rem;
  }

  .package-btn {
    padding: 14px 18px;
    font-size: 0.9rem;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .clinic-packages {
    padding: 40px 0;
  }

  .container {
    padding: 0 1rem;
  }

  .packages-title {
    font-size: 1.6rem;
  }

  .packages-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .packages-grid {
    gap: 18px;
  }

  .package-card {
    margin: 0 0.5rem;
  }

  .package-header {
    padding: 20px 12px 12px;
  }

  .package-name {
    font-size: 1.1rem;
  }

  .amount {
    font-size: 2.2rem;
  }

  .currency {
    font-size: 0.9rem;
  }

  .period {
    font-size: 0.75rem;
  }

  .package-content {
    padding: 0 12px 20px;
  }

  .package-description {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .package-benefits {
    gap: 8px;
    margin-bottom: 18px;
    padding: 12px;
  }

  .benefit-item {
    font-size: 0.75rem;
  }

  .benefit-item i {
    font-size: 0.8rem;
  }

  .package-btn {
    padding: 12px 16px;
    font-size: 0.85rem;
    border-radius: 10px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-actions {
    gap: 0.8rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 0.9rem;
    max-width: 250px;
  }
}

/* Çok Küçük Mobil Ekranlar */
@media (max-width: 360px) {
  .clinic-packages {
    padding: 35px 0;
  }

  .container {
    padding: 0 0.8rem;
  }

  .packages-title {
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .packages-subtitle {
    font-size: 0.8rem;
  }

  .package-card {
    margin: 0 0.2rem;
  }

  .package-header {
    padding: 18px 10px 10px;
  }

  .package-name {
    font-size: 1rem;
  }

  .amount {
    font-size: 2rem;
  }

  .currency {
    font-size: 0.8rem;
  }

  .period {
    font-size: 0.7rem;
  }

  .package-content {
    padding: 0 10px 18px;
  }

  .package-description {
    font-size: 0.75rem;
  }

  .package-benefits {
    gap: 6px;
    padding: 10px;
  }

  .benefit-item {
    font-size: 0.7rem;
  }

  .package-btn {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
}

/* Category Campaigns Styles */
.category-campaigns {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.category-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.category-tab i {
  font-size: 1.5rem;
  color: #6b7280;
  transition: all 0.3s ease;
}

.category-tab span {
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

.category-tab:hover {
  transform: translateY(-2px);
  border-color: #10b981;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.1);
}

.category-tab:hover i {
  color: #10b981;
}

.category-tab.active {
  background: linear-gradient(135deg, #10b981, #059669);
  border-color: #10b981;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.category-tab.active i,
.category-tab.active span {
  color: white;
}

.category-content {
  position: relative;
}

.category-panel {
  display: none;
}

.category-panel.active {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-banner {
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.category-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 3s ease-in-out infinite;
}

.banner-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.banner-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.campaign-action {
  margin-top: 2rem;
}

.shop-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  color: #059669;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.shop-now-btn:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: #047857;
}

.shop-now-btn i {
  font-size: 1.2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f9fafb;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.discount-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.product-content {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.product-description {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.old-price {
  color: var(--text);
  text-decoration: line-through;
  font-size: 0.9rem;
}

.new-price {
  color: #dc2626;
  font-size: 1.25rem;
  font-weight: 700;
}

.add-to-cart-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.add-to-cart-btn i {
  font-size: 1rem;
}

/* Responsive Design for Category Campaigns */
@media (max-width: 768px) {
  .category-campaigns {
    padding: 40px 0;
  }

  .category-tabs {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .category-tab {
    min-width: 100px;
    padding: 1rem 1.5rem;
  }

  .category-tab i {
    font-size: 1.2rem;
  }

  .category-tab span {
    font-size: 0.8rem;
  }

  .category-banner {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  .banner-content h3 {
    font-size: 1.4rem;
  }

  .banner-content p {
    font-size: 1rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-content {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .category-tabs {
    flex-direction: column;
    align-items: center;
  }

  .category-tab {
    width: 100%;
    max-width: 200px;
    flex-direction: row;
    justify-content: center;
  }

  .category-banner {
    padding: 1.5rem 1rem;
  }

  .banner-content h3 {
    font-size: 1.2rem;
  }
}

/* Özel İndirimler ve Kampanyalar */
.special-offers {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafe 0%, #fff5f0 100%);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Offer Card Base Styles */
.offer-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Primary Offer (Kompozit) */
.primary-offer {
  border-color: #ff8108;
  background: linear-gradient(135deg, #fff9f5 0%, white 100%);
}

.primary-offer:hover {
  border-color: #ff8108;
  box-shadow: 0 20px 50px rgba(255, 129, 8, 0.2);
}

.primary-offer .offer-icon {
  background: linear-gradient(135deg, #ff8108, #e6730a);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.primary-offer .discount-circle {
  background: linear-gradient(135deg, #ff8108, #e6730a);
  color: white;
}

/* Secondary Offer */
.secondary-offer {
  border-color: #005197;
  background: linear-gradient(135deg, #f5f8ff 0%, white 100%);
}

.secondary-offer:hover {
  border-color: #005197;
  box-shadow: 0 20px 50px rgba(0, 81, 151, 0.2);
}

.secondary-offer .offer-icon {
  background: linear-gradient(135deg, #005197, #003d75);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.secondary-offer .discount-circle.secondary {
  background: linear-gradient(135deg, #005197, #003d75);
  color: white;
}

/* Highlight Offer */
.highlight-offer {
  background: linear-gradient(135deg, #ff8108 0%, #005197 100%);
  color: white;
  grid-column: span 2;
}

.highlight-offer .offer-badge.special {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Offer Content */
.offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff8108, #e6730a);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.offer-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.highlight-offer .offer-title {
  color: white;
}

.discount-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ff8108;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight-offer .discount-amount {
  color: white;
}

.offer-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.highlight-offer .offer-description {
  color: rgba(255, 255, 255, 0.9);
}

.offer-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #374151;
}

.highlight-offer .feature-item {
  color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
  color: #10b981;
  font-size: 0.8rem;
}

.highlight-offer .feature-item i {
  color: white;
}

/* Offer Buttons */
.offer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.primary-btn {
  background: linear-gradient(135deg, #ff8108, #e6730a);
  color: white;
}

.primary-btn:hover {
  background: linear-gradient(135deg, #e6730a, #cc6609);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 129, 8, 0.3);
}

.secondary-btn {
  background: linear-gradient(135deg, #005197, #003d75);
  color: white;
}

.secondary-btn:hover {
  background: linear-gradient(135deg, #003d75, #002c54);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 81, 151, 0.3);
}

.tertiary-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.tertiary-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Offer Visual Elements */
.offer-visual {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.discount-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Dual Category Styles */
.dual-category {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.category-item i {
  font-size: 1.5rem;
}

.plus-sign {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
}

.dual-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.offer-highlight {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-bottom-left-radius: 12px;
  backdrop-filter: blur(10px);
}

.highlight-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

/* Contact CTA */
.contact-cta {
  margin-top: 4rem;
  background: linear-gradient(135deg, #005197 0%, #ff8108 100%);
  border-radius: 20px;
  padding: 3rem 2rem;
  color: white;
  text-align: center;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  backdrop-filter: blur(10px);
}

.cta-text {
  flex: 1;
  text-align: left;
}

.cta-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-text p {
  opacity: 0.9;
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Special Offers Responsive Design */
/* Tablet ve Küçük Desktop */
@media (max-width: 1024px) {
  .special-offers {
    padding: 60px 0;
  }

  .offers-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .offer-card {
    padding: 1.8rem;
  }

  .offer-title {
    font-size: 1.2rem;
  }

  .discount-amount {
    font-size: 2.2rem;
  }

  .contact-cta {
    padding: 2.5rem 1.5rem;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .special-offers {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .section-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .highlight-offer {
    grid-column: span 1;
  }

  .offer-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .offer-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
  }

  .offer-title {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .discount-amount {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .offer-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .offer-features {
    margin-bottom: 1.5rem;
  }

  .feature-item {
    font-size: 0.85rem;
  }

  .offer-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .discount-circle {
    width: 60px;
    height: 60px;
    font-size: 1rem;
    font-weight: 800;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .cta-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .cta-text {
    text-align: center;
  }

  .cta-text h3 {
    font-size: 1.2rem;
  }

  .cta-text p {
    font-size: 0.9rem;
  }

  .cta-actions {
    justify-content: center;
  }

  .cta-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .dual-category {
    flex-direction: column;
    gap: 0.5rem;
  }

  .plus-sign {
    transform: rotate(90deg);
    font-size: 1.2rem;
  }

  .dual-buttons {
    justify-content: center;
    gap: 0.8rem;
  }

  .contact-cta {
    margin-top: 3rem;
    padding: 2rem 1.5rem;
  }
}

/* Mobil Landscape */
@media (max-width: 576px) {
  .special-offers {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-description {
    font-size: 0.9rem;
  }

  .offer-card {
    padding: 1.2rem;
    margin: 0 0.5rem;
  }

  .offer-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }

  .offer-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .discount-amount {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }

  .offer-description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .offer-features {
    gap: 0.4rem;
    margin-bottom: 1.2rem;
  }

  .feature-item {
    font-size: 0.8rem;
  }

  .offer-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    gap: 0.4rem;
  }

  .offer-visual {
    top: 0.5rem;
    right: 0.5rem;
  }

  .discount-circle {
    width: 50px;
    height: 50px;
    font-size: 0.9rem;
  }

  .category-item {
    padding: 0.8rem;
    font-size: 0.8rem;
  }

  .category-item i {
    font-size: 1.2rem;
  }

  .dual-buttons {
    flex-direction: column;
    width: 100%;
  }

  .tertiary-btn {
    width: 100%;
    justify-content: center;
  }

  .contact-cta {
    margin-top: 2.5rem;
    padding: 1.5rem 1rem;
  }

  .cta-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .cta-text h3 {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .cta-text p {
    font-size: 0.85rem;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1rem;
  }
}

/* Mobil Portrait - Çok Küçük Ekranlar */
@media (max-width: 480px) {
  .special-offers {
    padding: 30px 0;
  }

  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .section-description {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .offers-grid {
    gap: 1.2rem;
    margin-top: 1.5rem;
  }

  .offer-card {
    padding: 1rem;
    border-radius: 12px;
  }

  .offer-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
  }

  .offer-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
    margin-bottom: 0.8rem;
  }

  .offer-title {
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 0.3rem;
  }

  .discount-amount {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .offer-description {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }

  .offer-features {
    gap: 0.3rem;
    margin-bottom: 1rem;
  }

  .feature-item {
    font-size: 0.75rem;
  }

  .feature-item i {
    font-size: 0.7rem;
  }

  .offer-btn {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 8px;
  }

  .offer-visual {
    top: 0.5rem;
    right: 0.5rem;
  }

  .discount-circle {
    width: 45px;
    height: 45px;
    font-size: 0.8rem;
    font-weight: 700;
  }

  .highlight-offer .offer-title {
    font-size: 1rem;
  }

  .highlight-offer .discount-amount {
    font-size: 1.5rem;
  }

  .category-item {
    padding: 0.6rem;
    font-size: 0.75rem;
  }

  .category-item i {
    font-size: 1rem;
  }

  .plus-sign {
    font-size: 1rem;
  }

  .contact-cta {
    margin-top: 2rem;
    padding: 1.2rem 0.8rem;
    border-radius: 16px;
  }

  .cta-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .cta-text h3 {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 0.3rem;
  }

  .cta-text p {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .cta-btn {
    padding: 0.7rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 8px;
  }
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

/* Contact Hero Section */
.contact-hero {
  padding: 40px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 129, 8, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(0, 81, 151, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.contact-hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.contact-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-hero .hero-title .highlight {
  color: #ff8108;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero .hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.25);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 129, 8, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ff8108;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Contact Cards */
.contact-cards {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.contact-card:nth-child(1) {
  border-top-color: #005197;
}

.contact-card:nth-child(2) {
  border-top-color: #ff8108;
}

.contact-card:nth-child(3) {
  border-top-color: #25d366;
}

.contact-card:nth-child(4) {
  border-top-color: #dc3545;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #005197, #ff8108);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 1.8rem;
}

.contact-card:nth-child(3) .contact-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-value a {
  color: #005197;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value a:hover {
  color: #ff8108;
}

.contact-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: white;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 50px;
}

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.form-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.contact-form {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff8108;
  box-shadow: 0 0 0 3px rgba(255, 129, 8, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #005197;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #005197;
  font-weight: bold;
  font-size: 14px;
}

.checkbox-label a {
  color: #005197;
  text-decoration: none;
}

.checkbox-label a:hover {
  color: #ff8108;
}

.submit-btn {
  background: linear-gradient(135deg, #005197, #ff8108);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  min-width: 200px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 81, 151, 0.3);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.faq-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, #005197, #ff8108);
  color: white;
  border-left-color: #ff8108;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-question i {
  font-size: 1rem;
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8f9fa;
}

.faq-answer p {
  padding: 25px 30px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */

/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, #005197 0%, #ff8108 100%);
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.about-hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.about-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-hero .hero-title .highlight {
  color: #ff8108;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero .hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
}

.about-hero .hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-hero .highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 500;
}

.about-hero .highlight-item i {
  color: #ff8108;
  font-size: 1.2rem;
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff8108;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Mission Vision Section */
.mission-vision {
  padding: 80px 0;
  background: #f8f9fa;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mv-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #005197, #ff8108);
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mv-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: white;
}

.mission-card .mv-icon {
  background: linear-gradient(135deg, #005197, #0066c0);
}

.vision-card .mv-icon {
  background: linear-gradient(135deg, #ff8108, #ffb347);
}

.mv-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.mv-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.mv-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mv-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 1rem;
  color: #555;
}

.mv-features i {
  color: #ff8108;
  font-size: 1.1rem;
}

/* Values Section */
.our-values {
  padding: 80px 0;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-card:hover {
  background: white;
  border-color: #ff8108;
  box-shadow: 0 10px 30px rgba(255, 129, 8, 0.1);
}

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #005197, #ff8108);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.8rem;
}

.value-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.value-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Story Section */
.our-story {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-timeline {
  position: relative;
  padding-left: 30px;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #005197, #ff8108);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff8108;
  border: 3px solid white;
  box-shadow: 0 0 0 3px #ff8108;
}

.timeline-year {
  display: inline-block;
  background: #005197;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Growth Chart */
.growth-chart {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.growth-chart h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}

.chart-bars {
  display: flex;
  align-items: end;
  justify-content: space-between;
  height: 200px;
  gap: 10px;
  margin-bottom: 20px;
}

.chart-bar {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bar-fill {
  width: 100%;
  background: linear-gradient(to top, #005197, #ff8108);
  border-radius: 5px 5px 0 0;
  transition: height 1s ease-in-out;
  opacity: 0;
}

.bar-label {
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
}

.chart-caption {
  text-align: center;
  font-size: 1rem;
  color: #666;
  font-style: italic;
}

/* Team Section */
.our-team {
  padding: 80px 0;
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.team-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.team-card:hover {
  background: white;
  border-color: #005197;
  box-shadow: 0 15px 35px rgba(0, 81, 151, 0.1);
  transform: translateY(-5px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #005197, #ff8108);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
}

.team-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.team-title {
  font-size: 1rem;
  color: #ff8108;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Certifications Section */
.certifications {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.cert-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.cert-card:nth-child(1) {
  border-top-color: #005197;
}

.cert-card:nth-child(2) {
  border-top-color: #ff8108;
}

.cert-card:nth-child(3) {
  border-top-color: #28a745;
}

.cert-card:nth-child(4) {
  border-top-color: #dc3545;
}

.cert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cert-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #005197, #ff8108);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.5rem;
}

.cert-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.cert-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* About CTA Section */
.about-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #005197 0%, #ff8108 100%);
  color: white;
  text-align: center;
}

.about-cta .cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-cta .cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-cta .cta-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
}

.about-cta .cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta .cta-btn {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  justify-content: center;
}

.about-cta .primary-btn {
  background: white;
  color: #005197;
}

.about-cta .primary-btn:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-cta .secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.about-cta .secondary-btn:hover {
  background: white;
  color: #005197;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   ABOUT PAGE RESPONSIVE DESIGN
   ========================================== */

/* Mobile First - 360px and up */
@media screen and (max-width: 480px) {
  .about-hero {
    padding: 60px 0;
  }

  .about-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-hero .hero-title {
    font-size: 2.5rem;
  }

  .about-hero .hero-description {
    font-size: 1.1rem;
  }

  .company-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-card {
    padding: 20px 15px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .mission-vision,
  .our-values,
  .our-story,
  .our-team,
  .certifications {
    padding: 60px 0;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mv-card {
    padding: 30px 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-timeline {
    padding-left: 20px;
  }

  .timeline-item {
    padding-left: 30px;
  }

  .growth-chart {
    padding: 20px;
  }

  .chart-bars {
    height: 150px;
    gap: 5px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cert-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-cta .cta-title {
    font-size: 2rem;
  }

  .about-cta .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .about-cta .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* 576px and up */
@media screen and (min-width: 576px) and (max-width: 768px) {
  .about-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-hero .hero-title {
    font-size: 3rem;
  }

  .company-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px and up */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about-hero .hero-title {
    font-size: 3.2rem;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 1024px and up */
@media screen and (min-width: 1024px) {
  .about-hero .hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .mv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .story-content {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Çok Küçük Mobil Ekranlar */
@media (max-width: 360px) {
  .special-offers {
    padding: 25px 0;
  }

  .container {
    padding: 0 0.8rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .offer-card {
    padding: 0.8rem;
  }

  .offer-title {
    font-size: 0.9rem;
  }

  .discount-amount {
    font-size: 1.3rem;
  }

  .offer-description {
    font-size: 0.75rem;
  }

  .feature-item {
    font-size: 0.7rem;
  }

  .offer-btn {
    padding: 0.5rem 0.7rem;
    font-size: 0.75rem;
  }

  .discount-circle {
    width: 40px;
    height: 40px;
    font-size: 0.75rem;
  }

  .contact-cta {
    padding: 1rem 0.6rem;
  }

  .cta-text h3 {
    font-size: 0.95rem;
  }

  .cta-text p {
    font-size: 0.75rem;
  }

  .cta-btn {
    padding: 0.6rem 0.7rem;
    font-size: 0.75rem;
  }
}

/* ==========================================
   CONTACT & ABOUT RESPONSIVE DESIGN
   ========================================== */

/* Mobile First - 360px and up */
@media screen and (max-width: 480px) {

  /* Contact Page */
  .contact-hero,
  .about-hero {
    padding: 60px 0;
  }

  .contact-hero .hero-content,
  .about-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .contact-hero .hero-title,
  .about-hero .hero-title {
    font-size: 2.5rem;
  }

  .contact-hero .hero-description,
  .about-hero .hero-description {
    font-size: 1.1rem;
  }

  .hero-stats {
    gap: 15px;
  }

  .stat-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .contact-cards,
  .mission-vision,
  .our-values,
  .our-story,
  .our-team,
  .certifications {
    padding: 60px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card {
    padding: 30px 20px;
    text-align: center;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin: 0 auto 15px;
  }

  .contact-form-section,
  .faq-section {
    padding: 60px 0;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-title,
  .faq-title {
    font-size: 2rem;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-answer p {
    padding: 20px;
  }

  /* About Page Mobile */
  .company-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-card {
    padding: 20px 15px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mv-card {
    padding: 30px 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-timeline {
    padding-left: 20px;
  }

  .timeline-item {
    padding-left: 30px;
  }

  .growth-chart {
    padding: 20px;
  }

  .chart-bars {
    height: 150px;
    gap: 5px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cert-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-cta .cta-title {
    font-size: 2rem;
  }

  .about-cta .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .about-cta .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* 576px and up */
@media screen and (min-width: 576px) and (max-width: 768px) {

  .contact-hero .hero-content,
  .about-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .contact-hero .hero-title,
  .about-hero .hero-title {
    font-size: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* About Page */
  .company-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px and up */
@media screen and (min-width: 768px) and (max-width: 1024px) {

  .contact-hero .hero-title,
  .about-hero .hero-title {
    font-size: 3.2rem;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About Page */
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 1024px and up */
@media screen and (min-width: 1024px) {

  .contact-hero .hero-content,
  .about-hero .hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About Page */
  .mv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .story-content {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* MARKALAR SAYFASI*/


.brands-hero {
  background: linear-gradient(180deg, #fff7f0 0%, #ffffff 60%);
  padding: 32px 0 22px;
  border-bottom: 1px solid #f1ede9;
}

.brands-hero .page-title {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 32px;
  margin: 0;
  font-weight: 800;
  letter-spacing: .2px;
}

.brands-hero .page-title .star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff8108, #ff9c42);
  color: #fff;
  box-shadow: 0 6px 16px rgba(255, 129, 8, .35);
}

.brands-hero .page-title .t {
  background: linear-gradient(135deg, #1f2937, #111827);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brands-hero .page-desc {
  color: #6b7280;
  margin-top: 8px;
  max-width: 820px;
}

/* Stats */
.brands-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.brands-stat {
  position: relative;
  background: #fff;
  border: 1px solid #efe6dd;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  box-shadow: 0 6px 18px rgba(17, 24, 39, .04);
}

.brands-stat .icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff3e6;
  border: 1px solid #ffe1c7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff8108;
}

.brands-stat i {
  font-size: 18px;
}

.brands-stat .num {
  font-weight: 800;
  color: #0f172a;
  font-size: 20px;
  line-height: 1;
}

.brands-stat .txt {
  color: #6b7280;
  font-weight: 600;
  font-size: 12px;
  margin-top: 2px
}

/* Directory */
.brand-directory {
  padding: 30px 0 38px;
}

.brand-toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.brand-toolbar .section-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
}

.brand-search {
  position: relative;
}

.brand-search input {
  padding: 12px 42px 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  min-width: 280px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.brand-search input:focus {
  border-color: #ff8108;
  box-shadow: 0 0 0 3px rgba(255, 129, 8, .15)
}

.brand-search i {
  position: absolute;
  right: 12px !important;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.brand-card {
  position: relative;
  border: 1px solid #efe6dd;
  background: linear-gradient(180deg, #ffffff 30%, #fffaf5 100%);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  text-decoration: none;
  color: inherit;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(17, 24, 39, .08);
  border-color: #ffd7b3;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff, #fff3e6);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffe1c7;
  box-shadow: 0 4px 10px rgba(255, 129, 8, .08);
  flex-shrink: 0;
}

.brand-logo-initial {
  font-size: 22px;
  font-weight: 800;
  color: #ff8108;
  letter-spacing: .5px
}

.brand-info h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  color: #0f172a;
  font-weight: 800;
  letter-spacing: .2px;
}

.brand-info .count {
  color: #6b7280;
  font-size: 12px;
  font-weight: 600
}

.brand-link {
  margin-left: auto;
  color: #ff8108;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #ffe1c7;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 129, 8, .06);
}

.brand-card:hover .brand-link {
  background: #ff8108;
  color: #fff;
  border-color: #ff8108
}

.brand-link i {
  transition: transform .2s ease
}

.brand-card:hover .brand-link i {
  transform: translateX(3px)
}

@media (max-width: 640px) {
  .brands-hero .page-title {
    font-size: 26px
  }

  .brands-grid {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  }
}