/* ===============================================
   CUSTOM MODERN STYLES FOR IXIR ADISYON+
   Şahane Tasarım - Modern & Profesyonel
   =============================================== */

:root {
  --primary-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  --primary-color: #ff6b35;
  --primary-dark: #e85d2a;
  --secondary-color: #1a1a1a;
  --text-dark: #2a2a2a;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --bg-light: #f8f9fa;
  --success-color: #25D366;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ===============================================
   HERO SECTION - Modern & Attractive
   =============================================== */

.hero-section {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(247, 147, 30, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.hero-badge i {
  color: #ffd700;
  margin-right: 5px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-features {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text-dark);
}

.hero-features .feature-item i {
  color: var(--success-color);
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: var(--primary-gradient);
  color: #fff !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: #fff;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover, .btn-outline:hover {
  background: var(--primary-color);
  color: #fff !important;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 18px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stats .stat-item h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.hero-stats .stat-item p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  animation: heroFloat 6s infinite ease-in-out;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.floating-card {
  position: absolute;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: cardFloat 4s infinite ease-in-out;
}

.floating-card.card-1 {
  top: 20%;
  left: -10%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 15%;
  right: -10%;
  animation-delay: 2s;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

.floating-card i {
  font-size: 32px;
  color: var(--primary-color);
}

.floating-card h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.floating-card p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* ===============================================
   FEATURES SECTION
   =============================================== */

.features-section {
  padding: 100px 0;
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-heading h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.3;
}

.section-heading p {
  font-size: 18px;
  color: var(--text-light);
}

.feature-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.feature-icon i {
  font-size: 32px;
  color: #fff;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ===============================================
   HOW IT WORKS SECTION
   =============================================== */

.how-it-works-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.step-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 20px;
}

.step-icon i {
  font-size: 36px;
  color: var(--primary-color);
}

.step-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.step-card p {
  font-size: 15px;
  color: var(--text-light);
  margin: 0;
}

/* ===============================================
   PRICING SECTION
   =============================================== */

.pricing-preview-section {
  padding: 100px 0;
}

.pricing-features {
  margin-top: 30px;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.pricing-feature-item i {
  color: var(--success-color);
  font-size: 20px;
}

.pricing-feature-item span {
  font-size: 16px;
  color: var(--text-dark);
}

.pricing-card-preview {
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 2px solid var(--primary-color);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.pricing-card-preview h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-align: center;
}

.price {
  text-align: center;
  margin: 30px 0;
}

.price .currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-light);
}

.price .amount {
  font-size: 56px;
  font-weight: 800;
  color: var(--primary-color);
}

.price .period {
  font-size: 18px;
  color: var(--text-light);
}

.price-description {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 30px;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.pricing-features-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features-list li:last-child {
  border-bottom: none;
}

.pricing-features-list li i {
  color: var(--success-color);
  font-size: 18px;
}

/* ===============================================
   TESTIMONIALS SECTION
   =============================================== */

.testimonials-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.testimonial-item {
  padding: 15px;
}

.testimonial-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.stars {
  margin-bottom: 20px;
}

.stars i {
  color: #ffd700;
  font-size: 18px;
  margin-right: 3px;
}

.testimonial-content p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.author-info span {
  font-size: 14px;
  color: var(--text-light);
}

/* ===============================================
   BLOG SECTION
   =============================================== */

.blog-preview-section, .blog-grid-section {
  padding: 100px 0;
}

.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-gradient);
  color: #fff;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--text-light);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.read-more:hover {
  gap: 10px;
}

/* ===============================================
   CTA SECTION
   =============================================== */

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: #fff;
  color: var(--primary-color) !important;
}

.cta-buttons .btn-primary:hover {
  background: var(--text-dark);
  color: #fff !important;
}

.cta-buttons .btn-outline {
  border-color: #fff;
  color: #fff !important;
}

.cta-buttons .btn-outline:hover {
  background: #fff;
  color: var(--primary-color) !important;
}

.cta-features {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-features span {
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-features i {
  font-size: 18px;
}

/* ===============================================
   PAGE HEADER
   =============================================== */

.page-header {
  padding: 180px 0 80px;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  text-align: center;
}

.page-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Continue in next part... */


/* ===============================================
   PRICING PAGE
   =============================================== */

.pricing-section {
  padding: 80px 0;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.toggle-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.discount-badge {
  background: var(--primary-gradient);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 5px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 30px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background: var(--primary-gradient);
}

input:checked + .slider:before {
  transform: translateX(30px);
}

.pricing-card {
  background: #fff;
  border-radius: 25px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: #fff;
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.pricing-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.pricing-header p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 25px;
}

.pricing-annually {
  text-align: center;
  margin-top: 10px;
}

.yearly-price {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.monthly-equivalent {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 5px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-dark);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  font-size: 18px;
}

.pricing-features li i.fa-check {
  color: var(--success-color);
}

.pricing-features li i.fa-times {
  color: #ccc;
}

.comparison-table {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table table {
  width: 100%;
  margin: 0;
}

.comparison-table thead {
  background: var(--primary-gradient);
  color: #fff;
}

.comparison-table th {
  padding: 20px;
  font-weight: 700;
  text-align: center;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table td {
  padding: 18px 20px;
  text-align: center;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
}

/* ===============================================
   BLOG PAGE
   =============================================== */

.blog-categories-section {
  padding: 50px 0;
}

.blog-categories {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.category-btn {
  padding: 12px 25px;
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover, .category-btn.active {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

.blog-pagination {
  margin-top: 40px;
}

.pagination {
  gap: 10px;
}

.page-link {
  width: 45px;
  height: 45px;
  border-radius: 50% !important;
  border: 2px solid var(--border-color);
  color: var(--text-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.page-link:hover {
  background: var(--primary-gradient);
  color: #fff !important;
  border-color: transparent;
}

.page-item.active .page-link {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
}

.newsletter-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.newsletter-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.newsletter-form {
  margin-top: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form .input-group {
  position: relative;
}

.newsletter-form .form-control {
  height: 60px;
  border-radius: 50px;
  padding: 0 160px 0 25px;
  border: 2px solid var(--border-color);
  font-size: 16px;
}

.newsletter-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 50px;
  border-radius: 50px;
  padding: 0 30px;
}

/* ===============================================
   BLOG DETAIL PAGE
   =============================================== */

.blog-detail-header {
  padding: 150px 0 50px;
  background: var(--bg-light);
}

.blog-detail-meta {
  margin-bottom: 20px;
}

.blog-detail-meta .meta-info {
  display: flex;
  gap: 25px;
  margin-top: 15px;
  font-size: 15px;
  color: var(--text-light);
  flex-wrap: wrap;
}

.blog-detail-meta .meta-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-detail-header h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 25px;
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-share span {
  font-weight: 600;
  color: var(--text-dark);
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.share-btn:hover {
  transform: translateY(-3px);
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

.blog-detail-content {
  padding: 60px 0;
}

.blog-detail-image {
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
}

.blog-detail-image img {
  width: 100%;
  height: auto;
}

.blog-detail-text {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-dark);
}

.blog-detail-text h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 35px 0 20px;
  color: var(--text-dark);
}

.blog-detail-text p {
  margin-bottom: 20px;
}

.blog-tags {
  margin: 40px 0;
  padding-top: 30px;
  border-top: 2px solid var(--border-color);
}

.blog-tags h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.tag {
  display: inline-block;
  padding: 8px 20px;
  background: var(--bg-light);
  color: var(--text-dark);
  border-radius: 50px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--primary-gradient);
  color: #fff;
}

.author-box {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  gap: 25px;
  margin: 40px 0;
}

.author-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.author-info p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 15px;
}

.author-social {
  display: flex;
  gap: 10px;
}

.author-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-social a:hover {
  transform: translateY(-3px);
  background: var(--primary-dark);
}

.related-posts-section {
  padding: 80px 0;
  background: var(--bg-light);
}

/* ===============================================
   CONTACT PAGE
   =============================================== */

.contact-info-section {
  padding: 80px 0;
}

.contact-info-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-icon.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-icon.email {
  background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.contact-icon i {
  font-size: 36px;
  color: #fff;
}

.contact-info-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.contact-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-dark);
}

.contact-form-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.contact-form-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.contact-features {
  margin-top: 30px;
}

.contact-features .feature-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-features .feature-item i {
  font-size: 24px;
  color: var(--primary-color);
  margin-top: 5px;
}

.contact-features h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.contact-features p {
  font-size: 15px;
  color: var(--text-light);
  margin: 0;
}

.contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: var(--shadow-lg);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.contact-form .form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-form .form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  margin-right: 10px;
}

.contact-form .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-form .form-check-label {
  font-size: 14px;
  color: var(--text-light);
}

.contact-form .form-check-label a {
  color: var(--primary-color);
  font-weight: 600;
}

.map-section {
  padding: 80px 0;
}

.map-wrapper {
  position: relative;
  text-align: center;
}

.turkey-map {
  width: 100%;
  max-width: 600px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.map-stats {
  display: flex;
  gap: 50px;
  justify-content: center;
  margin-top: 50px;
}

.map-stats .stat-item {
  text-align: center;
}

.map-stats .stat-item h3 {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.map-stats .stat-item p {
  font-size: 16px;
  color: var(--text-light);
  margin: 0;
}

/* ===============================================
   FAQ SECTION
   =============================================== */

.faq-section {
  padding: 80px 0;
}

.accordion-item {
  background: #fff;
  border: none;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  background: #fff;
  color: var(--text-dark);
  font-size: 17px;
  font-weight: 600;
  padding: 20px 25px;
  border: none;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  gap: 15px;
}

.accordion-button i {
  font-size: 20px;
  color: var(--primary-color);
}

.accordion-button:not(.collapsed) {
  background: var(--bg-light);
  color: var(--primary-color);
}

.accordion-body {
  padding: 20px 25px 25px 60px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===============================================
   FOOTER
   =============================================== */

footer {
  background: var(--text-dark);
  padding: 60px 0 30px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-widget h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-widget h4 span {
  color: var(--primary-color);
}

.footer-widget p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px);
}

.footer-widget ul {
  list-style: none;
  padding: 0;
}

.footer-widget ul li {
  margin-bottom: 12px;
}

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-widget ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-info li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.contact-info li a:hover {
  color: var(--primary-color);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 42px;
  }
  
  .hero-stats {
    flex-wrap: wrap;
  }
  
  .section-heading h2 {
    font-size: 36px;
  }
  
  .page-header h1 {
    font-size: 38px;
  }
  
  .blog-detail-header h1 {
    font-size: 36px;
  }
  
  .author-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 140px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary, .btn-outline {
    width: 100%;
    justify-content: center;
  }
  
  .floating-card {
    display: none;
  }
  
  .section-heading h2 {
    font-size: 28px;
  }
  
  .page-header h1 {
    font-size: 28px;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .map-stats {
    gap: 30px;
  }
  
  .newsletter-form .form-control {
    padding-right: 25px;
    padding-bottom: 70px;
  }
  
  .newsletter-form button {
    position: relative;
    width: 100%;
    right: 0;
    top: 10px;
  }
}

/* ===============================================
   ANIMATIONS
   =============================================== */

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-pulse {
  animation: pulse 2s infinite ease-in-out;
}


/* ===============================================
   REFERENCES PAGE
   =============================================== */

.references-stats-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.stat-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.stat-card .stat-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.stat-card .stat-icon i {
  font-size: 36px;
  color: #fff;
}

.stat-card .stat-content h3 {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-card .stat-content p {
  font-size: 16px;
  color: var(--text-light);
  margin: 0;
}

.references-grid-section {
  padding: 80px 0;
}

.reference-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.reference-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.reference-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f8f9fa;
}

.reference-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.3s ease;
}

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

.reference-rating {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.reference-rating i {
  margin: 0 2px;
  font-size: 12px;
}

.reference-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.reference-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.reference-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.reference-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.reference-author {
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.reference-author strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.reference-author span {
  font-size: 14px;
  color: var(--text-light);
}

.video-testimonials-section {
  padding: 80px 0;
}

.testimonial-slider {
  background: #fff;
  padding: 60px;
  border-radius: 25px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.testimonial-quote i {
  font-size: 48px;
  color: var(--primary-color);
  opacity: 0.3;
  margin-bottom: 20px;
}

.testimonial-quote p {
  font-size: 22px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.testimonial-author-large img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-color);
}

.testimonial-author-large h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
  text-align: left;
}

.testimonial-author-large span {
  font-size: 14px;
  color: var(--text-light);
  text-align: left;
}

.success-stories-section {
  padding: 80px 0;
}

.success-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.success-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.success-number {
  font-size: 64px;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.success-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.success-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

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

.counter {
  animation: countUp 0.8s ease-out;
}

/* Responsive */
@media (max-width: 767px) {
  .testimonial-slider {
    padding: 40px 30px;
  }
  
  .testimonial-quote p {
    font-size: 18px;
  }
  
  .testimonial-author-large {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-author-large h4,
  .testimonial-author-large span {
    text-align: center;
  }
  
  .success-number {
    font-size: 48px;
  }
}
