/* Premium Header Additional Styles */

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

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

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

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

/* Loading Animation for Logo */
.premium-logo img {
  animation: fadeInDown 0.8s ease-out;
}

.logo-text {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Navigation Items Animation */
.premium-nav-item {
  animation: fadeInUp 0.6s ease-out both;
}

.premium-nav-item:nth-child(1) { animation-delay: 0.1s; }
.premium-nav-item:nth-child(2) { animation-delay: 0.2s; }
.premium-nav-item:nth-child(3) { animation-delay: 0.3s; }
.premium-nav-item:nth-child(4) { animation-delay: 0.4s; }
.premium-nav-item:nth-child(5) { animation-delay: 0.5s; }
.premium-nav-item:nth-child(6) { animation-delay: 0.6s; }

/* CTA Button Animation */
.premium-cta-btn {
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

/* Hover Effects for Navigation */
.premium-nav-link {
  position: relative;
}

.premium-nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.premium-nav-link:hover::after {
  width: 80%;
}

/* Advanced Button Styles */
.premium-cta-btn {
  position: relative;
  overflow: hidden;
}

.premium-cta-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.premium-cta-btn:hover::after {
  width: 300px;
  height: 300px;
}

/* Mobile Menu Enhancements */
.mobile-nav {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-nav .premium-nav-link {
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.mobile-nav .premium-nav-link:hover {
  border-left-color: var(--primary-color);
  background: rgba(99, 102, 241, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 1001;
  transition: width 0.3s ease;
}

/* Search Bar (if needed) */
.search-container {
  position: relative;
  margin-left: 1rem;
}

.search-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  color: var(--dark-color);
  width: 0;
  transition: var(--transition);
  opacity: 0;
}

.search-input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-toggle {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--dark-color);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 2;
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition);
}

.search-toggle:hover {
  background: rgba(99, 102, 241, 0.1);
}

.search-container.active .search-input {
  width: 250px;
  opacity: 1;
}

/* Notification Badge */
.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

/* Dark Mode Toggle (if needed) */
.theme-toggle {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.theme-toggle:hover {
  background: var(--light-gray);
  transform: rotate(180deg);
}

/* Responsive Enhancements */
@media (max-width: 1200px) {
  .premium-nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .mobile-nav .premium-nav-link {
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
  }
  
  .mobile-nav .premium-cta-btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
  }
}

/* Print Styles */
@media print {
  .premium-header {
    display: none;
  }
  
  body {
    padding-top: 0;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .premium-header {
    background: var(--white);
    border-bottom: 2px solid var(--dark-color);
  }
  
  .premium-nav-link {
    color: var(--dark-color);
    border: 1px solid transparent;
  }
  
  .premium-nav-link:hover {
    border-color: var(--dark-color);
    background: var(--light-gray);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Premium Hero Section Styles */
.premium-hero {
  position: relative;
  min-height: 100vh;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
}

.gradient-text {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #f59e0b;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-premium.primary {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.btn-premium.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(240, 147, 251, 0.4);
  color: white;
}

.btn-premium.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-premium.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: white;
}

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

.hero-image-container {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  color: var(--dark-color);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.card-1 {
  top: 20%;
  right: -10%;
}

.card-2 {
  bottom: 30%;
  left: -10%;
}

.card-3 {
  top: 60%;
  right: 10%;
}

.scroll-indicator-container {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1;
  transform: translateY(-5px);
  color: white;
}

.scroll-indicator span {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.scroll-indicator i {
  animation: bounce 2s infinite;
}

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

/* Hero Section Responsive Design */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .floating-card {
    position: static;
    margin: 1rem 0;
    justify-content: center;
  }

  .hero-image {
    height: 400px;
  }

  .premium-hero {
    min-height: auto;
    padding: 4rem 0;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .btn-premium {
    padding: 0.75rem 1.5rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .hero-image {
    height: 300px;
  }

  .premium-hero {
    padding: 2rem 0;
  }
}

/* Premium Course Cards */
.section-header {
  max-width: 600px;
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.section-description {
  font-size: 1.1rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

.premium-course-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.premium-course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.course-image-container {
  position: relative;
  overflow: hidden;
}

.course-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

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

.course-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.course-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.premium-course-card:hover .course-overlay {
  opacity: 1;
}

.btn-view-course {
  background: var(--white);
  color: var(--dark-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  transform: translateY(20px);
}

.premium-course-card:hover .btn-view-course {
  transform: translateY(0);
}

.btn-view-course:hover {
  background: var(--primary-color);
  color: var(--white);
}

.course-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.course-level {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.course-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  display: flex;
  gap: 0.1rem;
}

.stars i {
  color: var(--secondary-color);
  font-size: 0.8rem;
}

.rating-text {
  font-size: 0.8rem;
  color: var(--medium-gray);
  font-weight: 500;
}

.course-title {
  margin-bottom: 0.75rem;
  flex: 1;
}

.course-title a {
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4;
  transition: var(--transition);
}

.course-title a:hover {
  color: var(--primary-color);
}

.course-excerpt {
  color: var(--medium-gray);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex: 1;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.course-instructor {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.instructor-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.instructor-name {
  font-size: 0.85rem;
  color: var(--medium-gray);
  font-weight: 500;
}

.course-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-current {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-original {
  font-size: 0.9rem;
  color: var(--medium-gray);
  text-decoration: line-through;
}

/* Premium Testimonials Section */
.premium-testimonials {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
}

.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.premium-testimonials .container {
  position: relative;
  z-index: 2;
}

.premium-testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 1rem;
  box-shadow: var(--shadow-heavy);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.premium-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
  margin-bottom: 2rem;
}

.quote-icon {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.testimonial-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--dark-color);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.testimonial-rating .fas.fa-star {
  color: #ddd;
  font-size: 1rem;
  transition: var(--transition);
}

.testimonial-rating .fas.fa-star.active {
  color: var(--secondary-color);
}

.rating-text {
  font-weight: 600;
  color: var(--dark-color);
  margin-left: 0.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  position: relative;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-light);
}

.verified-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: var(--accent-color);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  border: 2px solid var(--white);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.author-position {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.completion-badge {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.testimonial-decoration {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
}

.decoration-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0.3;
}

.dot-2 {
  opacity: 0.5;
}

.dot-3 {
  opacity: 0.7;
}

/* Testimonial Stats */
.testimonial-stats {
  margin-top: 4rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem 1rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.stat-icon {
  color: var(--secondary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Testimonials Responsive Design */
@media (max-width: 991.98px) {
  .premium-testimonial-card {
    padding: 1.5rem;
    margin: 0.5rem;
  }

  .testimonial-text p {
    font-size: 1rem;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-icon {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .premium-testimonial-card {
    padding: 1rem;
    margin: 0.25rem;
  }

  .testimonial-text p {
    font-size: 0.95rem;
  }

  .author-name {
    font-size: 1rem;
  }

  .author-position {
    font-size: 0.8rem;
  }

  .stat-card {
    padding: 1.5rem 0.5rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-icon {
    font-size: 1.8rem;
  }

  .testimonial-stats {
    margin-top: 2rem;
  }
}

/* Premium Footer */
.premium-footer {
  position: relative;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: var(--white);
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 2rem;
}

.footer-section {
  height: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  margin-right: 0.75rem;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 0.5rem;
}

.footer-newsletter-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  margin-bottom: 2rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px 0 0 50px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

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

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
  border: none;
  border-radius: 0 50px 50px 0;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: var(--gradient-secondary);
  transform: translateX(3px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
  color: var(--primary-color);
  width: 20px;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* Footer Responsive Design */
@media (max-width: 991.98px) {
  .footer-content {
    padding: 3rem 0 1.5rem;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .footer-content {
    padding: 2rem 0 1rem;
  }

  .footer-social {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 0.5rem;
  }

  .newsletter-input,
  .newsletter-btn {
    border-radius: 50px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
