/* Genel font ve tipografi ayarları */
body, html {
  font-family:'Playfair Display', 'Montserrat', serif;
  font-size: 14px;
  color: #222;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 50%, #f0f4f8 100%);
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Segoe UI', 'Arial', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  color: #009688;
  margin-bottom: 0.75em;
}
p, ul, ol, li, a, span, label, input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  color: #222;
}
a {
  text-decoration: none;
  color: #009688;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #005c4b;
}
.btn, .navbar-brand span {
  font-family: 'Segoe UI', 'Arial', 'Helvetica Neue', sans-serif;
}

/* =================== PREMIUM BOOKING STYLES =================== */

/* Premium Booking Hero */
.premium-booking-hero {
  position: relative;
  overflow: hidden;
}

.premium-booking-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 60%);
  z-index: 1;
}

.premium-stat-item {
  transition: all 0.3s ease;
}

.premium-stat-item:hover {
  transform: translateY(-5px);
}

.premium-stat-item .stat-number {
  transition: all 0.3s ease;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.premium-stat-item:hover .stat-number {
  transform: scale(1.1);
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* Premium Booking Form */
.premium-booking-form {
  animation: fadeInUp 0.8s ease-out;
}

.premium-form-section {
  position: relative;
  margin-bottom: 3rem;
}

.premium-form-section::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #009688 50%, transparent 100%);
}

.premium-form-section:last-child::after {
  display: none;
}

.section-icon {
  transition: all 0.3s ease;
}

.premium-form-section:hover .section-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0,150,136,0.3);
}

/* Premium Form Controls */
.premium-input,
.form-select.premium-input {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.premium-input:focus,
.form-select.premium-input:focus {
  background: rgba(255,255,255,1) !important;
  border-color: #009688 !important;
  box-shadow: 0 0 0 3px rgba(0,150,136,0.1), 0 8px 25px rgba(0,150,136,0.15) !important;
  transform: translateY(-2px);
}

.premium-input::placeholder {
  color: rgba(0,0,0,0.4);
  font-style: italic;
  transition: all 0.3s ease;
}

.premium-input:focus::placeholder {
  opacity: 0.7;
  transform: translateX(10px);
}

.premium-form-label {
  transition: all 0.3s ease;
}

.premium-form-group:hover .premium-form-label {
  color: #009688 !important;
  transform: translateX(5px);
}

/* Premium Checkbox Styles */
.premium-checkbox {
  display: none;
}

.premium-checkbox-label {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.premium-checkbox-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,150,136,0.1), transparent);
  transition: left 0.5s ease;
}

.premium-checkbox:checked + .premium-checkbox-label::before {
  left: 100%;
}

.premium-checkbox:checked + .premium-checkbox-label {
  background: rgba(0,150,136,0.15) !important;
  border-color: #009688 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,150,136,0.2);
}

.premium-checkbox:checked + .premium-checkbox-label::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: #009688;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: checkmark 0.3s ease;
}

.premium-checkbox:checked + .premium-checkbox-label .skill-icon {
  background: rgba(0,150,136,0.2) !important;
  transform: scale(1.1);
}

@keyframes checkmark {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.premium-checkbox-label:hover {
  background: rgba(0,150,136,0.08) !important;
  border-color: rgba(0,150,136,0.2) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,150,136,0.1);
}

/* Premium Calculation Button */
.premium-calc-btn {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.premium-calc-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,150,136,0.2), transparent);
  transition: left 0.6s ease;
}

.premium-calc-btn:hover::before {
  left: 100%;
}

.premium-calc-btn:hover {
  background: rgba(0,150,136,0.2) !important;
  border-color: #009688 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,150,136,0.2);
}

/* Premium Price Box */
.premium-price-box {
  animation: slideInUp 0.6s ease-out;
  position: relative;
  overflow: hidden;
}

.premium-price-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22%3E%3Cdefs%3E%3Cpattern id=%22price-pattern%22 width=%2220%22 height=%2220%22 patternUnits=%22userSpaceOnUse%22%3E%3Ccircle cx=%2210%22 cy=%2210%22 r=%221%22 fill=%22rgba(255,255,255,0.1)%22/%3E%3C/pattern%3E%3C/defs%3E%3Crect width=%22100%22 height=%22100%22 fill=%22url(%23price-pattern)%22/%3E%3C/svg%3E');
  opacity: 0.3;
  z-index: 1;
}

.premium-price-box > * {
  position: relative;
  z-index: 2;
}

.price-item {
  transition: all 0.3s ease;
}

.price-item:hover {
  background: rgba(255,255,255,0.2) !important;
  transform: translateY(-2px);
}



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

/* Premium Payment Button */
.premium-payment-btn {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

.premium-payment-btn:hover::before {
  left: 100%;
}

.premium-payment-btn:hover {
  background: #f0f9ff !important;
  color: #00695c !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.5) !important;
}



/* Enhanced Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
  .premium-booking-hero {
    padding: 80px 0 !important;
  }
  
  .premium-booking-hero .display-3 {
    font-size: 2.5rem !important;
  }
  
  .premium-form-container {
    padding: 2rem !important;
    border-radius: 20px !important;
  }
  
  .premium-stat-item {
    margin-bottom: 2rem;
  }
  
  .premium-stat-item .stat-number {
    font-size: 2rem !important;
  }
  
  .premium-checkbox-label {
    flex-direction: column !important;
    text-align: center !important;
  }
  
  .premium-checkbox-label .skill-icon {
    margin: 0 auto 0.5rem !important;
  }
  
  .premium-calc-btn,
  .premium-payment-btn {
    width: 100% !important;
    min-width: auto !important;
  }
  
  .section-title {
    font-size: 1.2rem !important;
  }
  
  .section-icon {
    width: 35px !important;
    height: 35px !important;
  }
  
  .premium-price-box {
    padding: 1.5rem !important;
  }
  
  .price-item {
    margin-bottom: 1rem;
  }
}

/* Premium Apply Hero */
.premium-apply-hero {
  position: relative;
  overflow: hidden;
}

.premium-apply-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 60%);
  z-index: 1;
}

.premium-benefit-item {
  transition: all 0.3s ease;
}

.premium-benefit-item:hover {
  transform: translateY(-5px);
}

.premium-benefit-item .benefit-icon {
  transition: all 0.3s ease;
}

.premium-benefit-item:hover .benefit-icon {
  background: rgba(255,255,255,0.25) !important;
  transform: scale(1.1);
}

/* Premium Form Styles */
.premium-form-container {
  animation: fadeInUp 0.8s ease-out;
}

.premium-form-section {
  position: relative;
}

.premium-form-section::after {
  content: '';
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #009688 50%, transparent 100%);
}

.premium-form-section:last-child::after {
  display: none;
}

.section-icon {
  transition: all 0.3s ease;
}

.premium-form-section:hover .section-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0,150,136,0.3);
}

/* Premium Input Styles */
.premium-input {
  transition: all 0.3s ease;
}

.premium-input:focus {
  background: rgba(255,255,255,1) !important;
  border-color: #009688 !important;
  box-shadow: 0 0 0 3px rgba(0,150,136,0.1) !important;
  transform: translateY(-2px);
}

.premium-input::placeholder {
  color: rgba(0,0,0,0.4);
  font-style: italic;
}

.premium-form-label {
  transition: all 0.3s ease;
}

.premium-form-group:hover .premium-form-label {
  color: #009688 !important;
}

/* Premium Checkbox Styles */
.premium-checkbox {
  display: none;
}

.premium-checkbox-label {
  transition: all 0.3s ease;
  position: relative;
}

.premium-checkbox:checked + .premium-checkbox-label {
  background: rgba(0,150,136,0.1) !important;
  border-color: #009688 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,150,136,0.2);
}

.premium-checkbox:checked + .premium-checkbox-label::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: #009688;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-checkbox:checked + .premium-checkbox-label::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 15px;
  right: 15px;
  color: white;
  font-size: 0.7rem;
  z-index: 10;
}

.premium-checkbox-label:hover {
  background: rgba(0,150,136,0.05) !important;
  border-color: rgba(0,150,136,0.2) !important;
  transform: translateY(-2px);
}

/* Premium Submit Button */
.premium-submit-btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.premium-submit-btn:hover::before {
  left: 100%;
}

.premium-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,150,136,0.4) !important;
  background: linear-gradient(135deg, #00796b 0%, #004d40 100%) !important;
}

/* Premium Alert Success */
.premium-alert-success {
  animation: slideInDown 0.6s ease-out;
}

.premium-alert-success .alert-icon {
  animation: pulse 2s infinite;
}

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

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



/* Responsive Adjustments */
@media (max-width: 768px) {
  .premium-apply-hero {
    padding: 80px 0 !important;
  }
  
  .premium-apply-hero .display-3 {
    font-size: 2.5rem !important;
  }
  
  .premium-form-container {
    padding: 2rem !important;
    border-radius: 20px !important;
  }
  
  .premium-benefit-item {
    margin-bottom: 2rem;
  }
  
  .premium-benefit-item .benefit-icon {
    width: 50px !important;
    height: 50px !important;
  }
  
  .premium-benefit-item h6 {
    font-size: 0.9rem;
  }
  
  .premium-checkbox-label {
    flex-direction: column !important;
    text-align: center !important;
  }
  
  .premium-checkbox-label .skill-icon {
    margin: 0 auto 0.5rem !important;
  }
  
  .premium-submit-btn {
    width: 100% !important;
    min-width: auto !important;
  }
  
  .section-title {
    font-size: 1.2rem !important;
  }
  
  .section-icon {
    width: 35px !important;
    height: 35px !important;
  }
}

/* Premium Post Hero */
.premium-post-hero {
  position: relative;
  overflow: hidden;
}

.premium-post-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 60%);
  z-index: 1;
}

.premium-category-badge:hover {
  background: rgba(255,255,255,0.25) !important;
}

.premium-post-meta .premium-author-avatar {
  transition: all 0.3s ease;
}

.premium-post-meta:hover .premium-author-avatar {
  background: rgba(255,255,255,0.3) !important;
}

/* Premium Post Content */
.premium-post-cover {
  transition: all 0.4s ease;
}

.premium-post-cover:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0,150,136,0.2) !important;
}

.premium-post-cover:hover img {
  transform: scale(1.05);
}

.premium-post-body {
  animation: fadeInUp 0.8s ease-out;
}

.premium-post-body .post-content {
  text-align: justify;
}

.premium-post-body .post-content h1,
.premium-post-body .post-content h2,
.premium-post-body .post-content h3,
.premium-post-body .post-content h4,
.premium-post-body .post-content h5,
.premium-post-body .post-content h6 {
  color: #1a365d;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.premium-post-body .post-content p {
  margin-bottom: 1.5rem;
}

.premium-post-body .post-content ul,
.premium-post-body .post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.premium-post-body .post-content li {
  margin-bottom: 0.5rem;
}

.premium-post-body .post-content blockquote {
  background: rgba(0,150,136,0.05);
  border-left: 4px solid #009688;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 10px 10px 0;
  font-style: italic;
}

.premium-post-body .post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,150,136,0.1);
  margin: 2rem 0;
}

/* Premium Share Buttons */
.premium-share-btn {
  transition: all 0.3s ease;
}

.premium-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Premium Related Posts */
.premium-related-card {
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-related-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,150,136,0.15) !important;
}

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

.premium-related-card:hover .premium-related-overlay {
  opacity: 1 !important;
}

.premium-related-link:hover {
  color: #00695c !important;
}

.premium-related-link i {
  transition: transform 0.3s ease;
}

.premium-related-link:hover i {
  transform: translateX(3px);
}

.premium-view-all-btn {
  transition: all 0.3s ease;
}

.premium-view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,150,136,0.4) !important;
  background: linear-gradient(135deg, #00796b 0%, #004d40 100%) !important;
}

/* premium-section-badge animasyonu kaldırıldı */

/* Post Content Typography Enhancements */
.premium-post-body .post-content a {
  color: #009688;
  text-decoration: underline;
  text-decoration-color: rgba(0,150,136,0.3);
  text-underline-offset: 3px;
  transition: all 0.3s ease;
}

.premium-post-body .post-content a:hover {
  color: #00695c;
  text-decoration-color: #00695c;
}

.premium-post-body .post-content code {
  background: rgba(0,150,136,0.1);
  color: #00695c;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  font-size: 0.9em;
}

.premium-post-body .post-content pre {
  background: rgba(0,150,136,0.05);
  border: 1px solid rgba(0,150,136,0.1);
  border-radius: 10px;
  padding: 1.5rem;
  overflow-x: auto;
  margin: 2rem 0;
}

.premium-post-body .post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,150,136,0.1);
}

.premium-post-body .post-content th,
.premium-post-body .post-content td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0,150,136,0.1);
}

.premium-post-body .post-content th {
  background: rgba(0,150,136,0.1);
  font-weight: 600;
  color: #1a365d;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .premium-post-hero {
    padding: 60px 0 40px !important;
  }
  
  .premium-post-hero .display-4 {
    font-size: 2rem !important;
  }
  
  .premium-post-meta {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  .premium-post-body {
    padding: 2rem !important;
  }
  
  .premium-post-cover {
    margin-bottom: 2rem !important;
  }
  
  .premium-post-cover img {
    height: 250px !important;
  }
  
  .premium-post-share .d-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  
  .premium-related-posts .row {
    --bs-gutter-x: 1rem;
  }
}

/* Premium Blog Hero */
.premium-blog-hero {
  position: relative;
  overflow: hidden;
}

.premium-blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 60%);
  z-index: 1;
}



/* Premium Search Form */
.premium-search-input::placeholder {
  color: rgba(255,255,255,0.7);
}

.premium-search-input:focus {
  background: rgba(255,255,255,0.25) !important;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.1) !important;
  color: white !important;
}

.premium-search-btn:hover {
  background: rgba(255,255,255,0.3) !important;
  transform: scale(1.05);
}

/* Premium Blog Cards */
.premium-blog-card {
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,150,136,0.15) !important;
}

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

.premium-blog-card:hover .premium-card-overlay {
  opacity: 1 !important;
}

.premium-read-more:hover {
  color: #00695c !important;
  transform: translateX(5px);
}

.premium-read-more i {
  transition: transform 0.3s ease;
}

.premium-read-more:hover i {
  transform: translateX(3px);
}

/* Premium Sidebar */
.premium-sidebar-widget {
  transform: translateY(0);
  transition: all 0.3s ease;
}

.premium-sidebar-widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,150,136,0.12) !important;
}

.premium-category-link {
  transition: all 0.3s ease;
}

.premium-category-link:hover {
  background: rgba(0,150,136,0.1) !important;
  border-color: rgba(0,150,136,0.2) !important;
  transform: translateX(5px);
}

.premium-category-link.active {
  background: rgba(0,150,136,0.15) !important;
  border-color: rgba(0,150,136,0.3) !important;
}

.premium-mini-post {
  transition: all 0.3s ease;
}

.premium-mini-post:hover {
  background: rgba(0,150,136,0.08) !important;
  border-color: rgba(0,150,136,0.15) !important;
  transform: translateX(5px);
}

/* Newsletter Form */
.newsletter-form input:focus {
  background: rgba(255,255,255,0.3) !important;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.1) !important;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.8);
}

.newsletter-form button:hover {
  background: #f0f9ff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Premium Pagination */
.premium-page-link {
  transition: all 0.3s ease;
}

.premium-page-link:hover:not(.active) {
  background: rgba(0,150,136,0.2) !important;
  transform: translateY(-2px);
}

.premium-page-link.active {
  box-shadow: 0 5px 15px rgba(0,150,136,0.3);
}

/* Premium Empty State */
.premium-empty-state {
  animation: fadeInUp 0.6s ease-out;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
  .premium-blog-hero {
    padding: 80px 0 !important;
  }
  
  .premium-blog-hero .display-3 {
    font-size: 2.5rem !important;
  }
  
  .premium-search-wrapper {
    max-width: 100% !important;
  }
  
  .premium-blog-card {
    margin-bottom: 2rem;
  }
  
  .premium-sidebar-widget {
    margin-bottom: 2rem !important;
  }
}
.premium-top-bar {
  position: relative;
  z-index: 1050;
}

.premium-top-link:hover {
  background: rgba(255,255,255,0.25) !important;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.premium-lang-btn:hover {
  background: rgba(255,255,255,0.25) !important;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.premium-navbar {
  position: relative;
  z-index: 1040;
}

.premium-brand:hover {
  transform: scale(1.05);
}

.premium-brand .brand-icon {
  transition: all 0.3s ease;
}

.premium-brand:hover .brand-icon {
  transform: rotate(5deg);
  box-shadow: 0 12px 25px rgba(0,150,136,0.4);
}

.premium-nav-link {
  position: relative;
  overflow: hidden;
}

.premium-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,150,136,0.1) 0%, rgba(77,182,172,0.05) 100%);
  transition: left 0.3s ease;
  border-radius: 25px;
  z-index: -1;
}

.premium-nav-link:hover::before {
  left: 0;
}

.premium-nav-link:hover {
  color: #009688 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,150,136,0.2);
}

.premium-dropdown {
  border: none !important;
  margin-top: 10px;
}

.premium-dropdown-item {
  padding: 12px 20px !important;
  margin: 2px 8px !important;
  transform: none !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

.premium-dropdown-item:hover {
  background: linear-gradient(135deg, rgba(0,150,136,0.1) 0%, rgba(77,182,172,0.05) 100%) !important;
  color: #009688 !important;
  padding: 12px 20px !important;
  margin: 2px 8px !important;
  transform: none !important;
}

.premium-lang-item {
  padding: 10px 16px !important;
  margin: 2px 8px !important;
  transform: none !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

.premium-lang-item:hover {
  background: linear-gradient(135deg, rgba(0,150,136,0.1) 0%, rgba(77,182,172,0.05) 100%) !important;
  color: #009688 !important;
  padding: 10px 16px !important;
  margin: 2px 8px !important;
  transform: none !important;
}

/* Bootstrap dropdown override - tüm transform efektlerini engelle */
.dropdown-item,
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active {
  transform: none !important;
  padding: 0.5rem 1rem !important;
  margin: 0 !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

.dropdown-menu .dropdown-item,
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:active {
  transform: none !important;
  padding: 0.5rem 1rem !important;
  margin: 0 !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

/* Premium dropdown sabit padding ve hiçbir hareket yok */
.premium-dropdown-item,
.premium-dropdown-item:hover,
.premium-dropdown-item:focus,
.premium-dropdown-item:active {
  padding: 12px 20px !important;
  margin: 2px 8px !important;
  transform: none !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

.premium-lang-item,
.premium-lang-item:hover,
.premium-lang-item:focus,
.premium-lang-item:active {
  padding: 10px 16px !important;
  margin: 2px 8px !important;
  transform: none !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

.premium-cta-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.premium-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,150,136,0.5);
  color: #fff !important;
}

.premium-cta-btn:hover .premium-cta-overlay {
  opacity: 1;
}

/* Premium Call Button Styles */
.premium-call-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.premium-call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,107,53,0.6);
  color: #fff !important;
}

.premium-call-btn:hover .premium-call-overlay {
  opacity: 1;
}

/* Pulse Animation for Call Button */
@keyframes pulse-call {
  0% {
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(255,107,53,0.6), 0 0 0 10px rgba(255,107,53,0.1);
  }
  100% {
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
  }
}

.premium-toggler {
  transition: all 0.3s ease;
}

.premium-toggler:hover {
  background: rgba(0,150,136,0.2) !important;
  transform: scale(1.05);
}

/* Legacy Header ve Menü için özel stiller (eski kod ile uyumluluk) */
.corporate-lang-btn:hover, .corporate-lang-btn:focus {
  color: #009688 !important;
  background: rgba(0,198,136,0.07);
  box-shadow:0 2px 12px rgba(0,150,136,0.12);
  transition: all 0.2s;
}
.corporate-lang-item {
  color: #222 !important;
}
.corporate-lang-item:hover, .corporate-lang-item:focus {
  background: rgba(0,198,136,0.07);
  color: #009688 !important;
  border-radius: 8px;
  transition: all 0.2s;
}
.corporate-lang-item span {
  color: inherit !important;
}
.corporate-hover:hover, .corporate-hover:focus {
  color: #009688 !important;
  background: rgba(0,198,136,0.07);
  border-radius: 8px;
  transition: all 0.2s;
}
.navbar-brand span {
  font-family: 'Segoe UI', 'Arial', sans-serif;
}

/* Mobilde dil dropdown menüsünü taşmasını kesin engelle (container ve menüye overflow ayarı) */
@media (max-width: 576px) {
  .container-fluid, .container {
    overflow-x: hidden;
  }
  .dropdown-menu[aria-labelledby="langDropdown"] {
    position: fixed !important;
    top: 52px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 95vw !important;
    min-width: 0 !important;
    max-width: 95vw !important;
    box-sizing: border-box;
    z-index: 1055;
    padding: 1rem 1rem;
    border-radius: 18px !important;
    text-align: center;
    font-family: 'Segoe UI', 'Arial', 'Helvetica Neue', sans-serif;
    font-size: 1.08rem;
    box-shadow: 0 4px 24px rgba(0,150,136,0.12);
  }
  .dropdown-menu[aria-labelledby="langDropdown"] .dropdown-item {
    padding: 0.75rem 0.5rem;
    font-weight: 600;
    font-size: 1.08rem;
    border-radius: 12px;
    text-align: center;
  }
}

/* Mobile navbar toggle butonunu siyah yap */
.navbar-toggler {
  border-color: #222 !important;
  background: none !important;
  border-radius: 0.375rem;
}
.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(34,34,34,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Hero alanı için tam genişlik ve margin ayarlarını kaldırıyorum, container ile boşluklar sağlanacak */
.hero.bg-gradient {
  background: #009688 !important;
}

/* Premium Footer Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.float-element {
  animation: float 6s ease-in-out infinite;
}

.float-element-reverse {
  animation: float 8s ease-in-out infinite reverse;
}

/* Premium Footer Styles */
.premium-footer {
  position: relative;
  z-index: 1;
}

.premium-footer .social-link:hover {
  background: rgba(255,255,255,0.2) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.premium-footer .footer-link:hover {
  color: #4db6ac !important;
  transform: translateX(5px);
}

.premium-footer .contact-icon {
  transition: all 0.3s ease;
}

.premium-footer .contact-info:hover .contact-icon {
  background: rgba(255,255,255,0.2) !important;
  transform: scale(1.1);
}

.footer-bottom {
  background: rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}

/* Premium Services Page Styles */
.premium-hero-btn:hover {
  background: rgba(255,255,255,0.3) !important;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Responsive Styles for Header Buttons */
@media (max-width: 991px) {
  .premium-cta-btn,
  .premium-call-btn {
    margin: 0.5rem 0 !important;
    width: 100%;
    text-align: center;
  }
  
  .premium-call-btn {
    font-size: 0.95rem !important;
    padding: 12px 20px !important;
  }
  
  .premium-cta-btn {
    font-size: 1rem !important;
    padding: 15px 25px !important;
  }
}

@media (max-width: 768px) {
  .premium-call-btn {
    animation: none; /* Disable pulse on mobile to save battery */
  }
  
  .navbar-nav {
    padding: 1rem 0;
  }
  
  .nav-item {
    margin-bottom: 0.5rem;
  }
}

.premium-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,150,136,0.15) !important;
}

.premium-service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,150,136,0.4);
}

.premium-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,150,136,0.12) !important;
}

.premium-cta-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(0,150,136,0.5);
}

.premium-accordion-btn:not(.collapsed) {
  color: #009688 !important;
}

.premium-accordion-btn:hover {
  background: rgba(0,150,136,0.05) !important;
}

/* =================== WHATSAPP WIDGET STYLES =================== */

/* WhatsApp Button Animation */
@keyframes pulse-whatsapp {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
}

.whatsapp-widget {
  user-select: none;
}

.whatsapp-button {
  position: relative;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:active {
  transform: scale(0.95);
}

/* WhatsApp Message Bubble Styles */
.whatsapp-message-bubble {
  font-family: 'Montserrat', sans-serif;
  animation: fadeInUp 0.5s ease forwards;
  border: 1px solid #e5e7eb;
}

.whatsapp-message-bubble.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
}

.whatsapp-message-bubble.hide {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(10px) scale(0.9) !important;
}

/* Message bubble animation */
.message-bubble {
  animation: messageSlideIn 0.3s ease 0.2s both;
}

@keyframes messageSlideIn {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Quick reply buttons */
.quick-reply-btn:hover {
  background: #e5e7eb !important;
  border-color: #d1d5db !important;
  transform: translateY(-1px);
}

/* WhatsApp main button styles */
.whatsapp-message-bubble .btn:hover {
  background: #128c7e !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Online indicator animation */
.whatsapp-avatar .position-absolute {
  animation: onlinePulse 2s infinite;
}

@keyframes onlinePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Responsive WhatsApp Widget */
@media (max-width: 768px) {
  .whatsapp-widget {
    bottom: 20px !important;
    right: 20px !important;
  }
  
  .whatsapp-button {
    width: 55px !important;
    height: 55px !important;
  }
  
  .whatsapp-button i {
    font-size: 1.6rem !important;
  }
  
  .whatsapp-message-bubble {
    max-width: 280px !important;
    min-width: 250px !important;
    bottom: 65px !important;
    right: -10px !important;
  }
  
  .quick-reply-btn {
    font-size: 0.75rem !important;
    padding: 6px 12px !important;
  }
}

@media (max-width: 480px) {
  .whatsapp-message-bubble {
    max-width: 260px !important;
    min-width: 230px !important;
    right: -20px !important;
  }
}

/* =================== SCROLL TO TOP BUTTON =================== */

.scroll-to-top {
  transition: all 0.3s ease;
}

.scroll-to-top.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.scroll-to-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 12px 35px rgba(0,150,136,0.6);
  background: linear-gradient(135deg, #00796b 0%, #26a69a 100%) !important;
}

.scroll-to-top:active {
  transform: scale(0.95);
}

/* Scroll to top icon animation */
.scroll-to-top i {
  animation: bounceUp 2s infinite;
}

@keyframes bounceUp {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Responsive scroll to top */
@media (max-width: 991.98px) {
  .scroll-to-top {
    bottom: 120px !important; /* Above mobile call button */
    left: 20px !important;
    width: 50px !important;
    height: 50px !important;
  }
  
  .scroll-to-top i {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 576px) {
  .scroll-to-top {
    bottom: 110px !important;
    left: 15px !important;
    width: 45px !important;
    height: 45px !important;
  }
  
  .scroll-to-top i {
    font-size: 1rem !important;
  }
}

/* =================== MOBILE CALL BUTTON STYLES =================== */

/* Mobile call button animations */
@keyframes pulse-mobile-call {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(255,107,53,0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
  }
}

@keyframes call-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

.premium-mobile-call-btn {
  position: relative;
  overflow: hidden;
}

.premium-mobile-call-btn:hover {
  background: linear-gradient(135deg, #e55a2b 0%, #e8831a 50%, #f47d38 100%) !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 35px rgba(255,107,53,0.6) !important;
  text-decoration: none !important;
}

.premium-mobile-call-btn:active {
  transform: scale(0.98) !important;
}

.call-pulse {
  pointer-events: none;
}

/* Adjust other elements when mobile call button is present */
@media (max-width: 991.98px) {
  body {
    padding-bottom: 90px; /* Space for mobile call button */
  }
  
  .whatsapp-widget {
    bottom: 110px !important; /* Move WhatsApp above call button */
  }
  
  .cookie-banner {
    bottom: 110px !important; /* Move cookie banner above call button */
  }
  
  /* Hide mobile call button on very small screens if needed */
  @media (max-width: 350px) {
    .mobile-call-button {
      padding: 10px !important;
    }
    
    .premium-mobile-call-btn {
      padding: 15px 18px !important;
      font-size: 1rem !important;
    }
    
    .premium-mobile-call-btn i {
      font-size: 1.1rem !important;
    }
  }
}

/* Hide mobile call button on desktop */
@media (min-width: 992px) {
  .mobile-call-button {
    display: none !important;
  }
  
  body {
    padding-bottom: 0 !important;
  }
}

/* =================== COOKIE BANNER STYLES =================== */

.cookie-banner {
  font-family: 'Montserrat', sans-serif;
  animation: slideInUp 0.5s ease forwards;
}

.cookie-banner.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.cookie-banner.hide {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(100px) !important;
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cookie banner buttons */
.cookie-banner .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cookie-banner .btn:first-child:hover {
  background: #00796b !important;
}

.cookie-banner .btn:nth-child(2):hover {
  background: #e0e0e0 !important;
  border-color: #bbb !important;
}

.cookie-banner .btn:last-child:hover {
  background: rgba(0,150,136,0.1) !important;
}

/* Cookie icon animation */
.cookie-icon {
  animation: cookiePulse 2s infinite;
}

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

/* Responsive cookie banner */
@media (max-width: 768px) {
  .cookie-banner {
    bottom: 110px !important; /* Above mobile call button */
    left: 10px !important;
    right: 10px !important;
    max-width: none !important;
  }
  
  .cookie-banner .d-flex {
    flex-direction: column !important;
    text-align: center;
  }
  
  .cookie-banner .cookie-icon {
    align-self: center !important;
    margin-bottom: 10px;
  }
  
  .cookie-banner .btn {
    font-size: 0.75rem !important;
    padding: 6px 12px !important;
  }
}

.premium-table-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.premium-search-box {
  position: relative;
  max-width: 300px;
  width: 100%;
}

.premium-search-input {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 10px 40px 10px 15px;
  color: white;
  width: 100%;
  font-size: 0.9rem;
}

.premium-search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.premium-search-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.premium-search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.premium-table {
  width: 100%;
  margin: 0;
  background: transparent;
}

.premium-table thead th {
  background: rgba(0,150,136,0.1);
  border: none;
  padding: 15px 20px;
  color: #009688;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(0,150,136,0.2);
}

.premium-table tbody td {
  padding: 15px 20px;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  vertical-align: middle;
  color: #333;
}

.premium-table tbody tr:hover {
  background: rgba(0,150,136,0.05);
}

.premium-assignment-id {
  font-weight: 600;
  color: #009688;
}

.premium-status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.premium-status.active {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
}

.premium-status.completed {
  background: rgba(33, 150, 243, 0.1);
  color: #2196F3;
}

.premium-status.pending {
  background: rgba(255, 152, 0, 0.1);
  color: #FF9800;
}

.premium-amount {
  font-weight: 600;
  color: #009688;
  font-size: 1.1rem;
}

.premium-table-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.premium-action-btn {
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.premium-action-btn.view {
  background: rgba(33, 150, 243, 0.1);
  color: #2196F3;
}

.premium-action-btn.edit {
  background: rgba(255, 152, 0, 0.1);
  color: #FF9800;
}

.premium-action-btn.complete {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
}

.premium-action-btn:hover {
  transform: scale(1.1);
}

/* Premium Mobile Cards */
.premium-mobile-cards {
  margin-bottom: 25px;
}

.premium-mobile-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.premium-mobile-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.premium-mobile-header {
  background: linear-gradient(135deg, #009688 0%, #00695c 100%);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.premium-mobile-id {
  font-weight: 600;
  color: white;
  font-size: 1.1rem;
}

.premium-mobile-status {
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.premium-mobile-status.active {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
}

.premium-mobile-status.completed {
  background: rgba(33, 150, 243, 0.2);
  color: #2196F3;
}

.premium-mobile-status.pending {
  background: rgba(255, 152, 0, 0.2);
  color: #FF9800;
}

.premium-mobile-body {
  padding: 20px;
}

.premium-mobile-label {
  color: #666;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 3px;
}

.premium-mobile-value {
  color: #333;
  font-weight: 500;
  display: block;
}

.premium-mobile-amount {
  color: #009688;
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
}

.premium-mobile-actions {
  padding: 15px 20px;
  background: rgba(0,0,0,0.02);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.premium-mobile-actions .premium-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.premium-mobile-actions .premium-btn.view {
  background: rgba(33, 150, 243, 0.1);
  color: #2196F3;
}

.premium-mobile-actions .premium-btn.edit {
  background: rgba(255, 152, 0, 0.1);
  color: #FF9800;
}

.premium-mobile-actions .premium-btn.complete {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
}

.premium-mobile-actions .premium-btn.report {
  background: rgba(156, 39, 176, 0.1);
  color: #9C27B0;
}

.premium-mobile-actions .premium-btn.invoice {
  background: rgba(96, 125, 139, 0.1);
  color: #607D8B;
}

.premium-mobile-actions .premium-btn.accept {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
}

.premium-mobile-actions .premium-btn.decline {
  background: rgba(244, 67, 54, 0.1);
  color: #F44336;
}

.premium-mobile-actions .premium-btn:hover {
  transform: scale(1.1);
}

/* Premium Pagination */
.premium-pagination {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.premium-pagination-info {
  color: #666;
  font-size: 0.9rem;
}

.premium-pagination-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 5px;
  align-items: center;
}

.premium-page-item.disabled .premium-page-link {
  background: rgba(0,0,0,0.05);
  color: #ccc;
  cursor: not-allowed;
}

.premium-page-item.active .premium-page-link {
  background: linear-gradient(135deg, #009688 0%, #00695c 100%);
  color: white;
  box-shadow: 0 3px 10px rgba(0,150,136,0.3);
}

.premium-page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  background: white;
  color: #666;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.premium-page-link:hover:not(.premium-page-item.disabled .premium-page-link):not(.premium-page-item.active .premium-page-link) {
  background: rgba(0,150,136,0.1);
  color: #009688;
  border-color: #009688;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .premium-page-header {
    padding: 20px;
  }
  
  .premium-header-content {
    flex-direction: column;
    text-align: center;
  }
  
  .premium-header-title {
    font-size: 1.5rem;
  }
  
  .premium-table-header {
    flex-direction: column;
    text-align: center;
  }
  
  .premium-search-box {
    max-width: 100%;
  }
  
  .premium-pagination {
    flex-direction: column;
    text-align: center;
  }
  
  .premium-stats-grid .row {
    --bs-gutter-x: 0.75rem;
  }
  
  .premium-stat-card {
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .premium-page-header {
    padding: 15px;
  }
  
  .premium-header-title {
    font-size: 1.3rem;
  }
  
  .premium-stat-card {
    padding: 15px;
  }
  
  .premium-stat-number {
    font-size: 1.5rem;
  }
  
  .premium-mobile-card {
    margin-bottom: 10px;
  }
  
  .premium-mobile-body {
    padding: 15px;
  }
  
  .premium-mobile-actions {
    padding: 10px 15px;
  }
}

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

