/* Modern Custom Styles for ODITWORKS Website */

/* ============================================
   TYPOGRAPHY & BASE STYLES
   ============================================ */
body {
  padding-top: 70px;
  font-family: 'Poppins', sans-serif;
  color: #58468c;
  background: #f8f9fa;
  overflow-x: hidden;
}

.hero {
  padding-top: 100px;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: 'Poppins', sans-serif;
}

h1, .display-5 {
  color: #221a3b;
  font-size: 3.5rem !important;
  font-weight: 700;
}

h2, h3, h4 {
  color: #221a3b;
  font-weight: 600;
}

h5 {
  color: #221a3b;
  font-weight: 600;
}

p {
  line-height: 1.6;
  color: #221a3b;
}

p.lead {
  font-size: 1rem;
  text-align: justify;
  font-weight: 400;
}

/* ============================================
   MODERN GRADIENT TEXT EFFECT
   ============================================ */
.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ============================================
   NAVBAR MODERN DESIGN
   ============================================ */
.navbar {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-link {
  margin: 0 5px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: #5e48e8 !important;
  transform: translateY(-2px);
}

/* ============================================
   MODERN HERO SECTION WITH PARTICLES
   ============================================ */
.nav-header-wrapper {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
}

.nav-header-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/nav-header-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.nav-header-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  z-index: 0;
}

header.container-fluid {
  position: relative;
  z-index: 1;
}

/* Only apply white text to elements inside nav-header-wrapper */
.nav-header-wrapper header h1,
.nav-header-wrapper header p {
  color: #fff !important;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-header-wrapper header .display-5 {
  color: #fff !important;
  font-size: 2.5rem;
  animation: fadeInUp 1s ease;
}

.nav-header-wrapper header .lead {
  color: #f0f0f0 !important;
  animation: fadeInUp 1.2s ease;
}

/* Default header styling for pages without gradient wrapper */
header:not(.nav-header-wrapper header) h1,
header:not(.nav-header-wrapper header) .display-5 {
  color: #221a3b !important;
}

header:not(.nav-header-wrapper header) p,
header:not(.nav-header-wrapper header) .lead {
  color: #555 !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating animation for hero image */
header img {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ============================================
   MODERN BUTTONS
   ============================================ */
.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.btn-outline-light:hover, .btn-outline-light:focus {
  background-color: #ffffff22;
}

/* ============================================
   MODERN SERVICE CARDS WITH 3D EFFECTS
   ============================================ */
.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
}

.service-card:hover::before {
  transform: scale(1);
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
  border-color: #667eea;
}

.service-card img {
  transition: transform 0.4s ease;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.service-card:hover img {
  transform: scale(1.1) rotate(5deg);
}

.service-card h5 {
  transition: color 0.3s ease;
}

.service-card:hover h5 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   WHY CHOOSE US - GLASSMORPHISM CARDS
   ============================================ */
#why-choose-us {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
}

#why-choose-us .shadow-sm {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

#why-choose-us .shadow-sm:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
  background: rgba(255, 255, 255, 0.9);
}

#why-choose-us img {
  transition: transform 0.4s ease;
}

#why-choose-us .shadow-sm:hover img {
  transform: rotate(360deg) scale(1.1);
}

/* ============================================
   STATS SECTION - ANIMATED COUNTERS
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.stats-section .col-md-3 {
  position: relative;
  z-index: 1;
}

.counter-icon {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.col-md-3:hover .counter-icon {
  transform: scale(1.2) rotateY(360deg);
  color: #ffd700;
}

.counter-value {
  font-weight: bold;
  font-size: 3rem;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.stats-section p {
  color: #f0f0f0 !important;
  font-weight: 500;
  font-size: 1.1rem;
}

/* Enhanced stats visibility for gradient backgrounds */
.bg-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.bg-gradient .counter-icon {
  color: #ffffff !important;
  font-size: 3.5rem !important;
  filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.4)) !important;
}

.bg-gradient .counter-value {
  color: #ffffff !important;
  font-size: 3.5rem !important;
  font-weight: 800 !important;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5) !important;
}

.bg-gradient p {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 1.2rem !important;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3) !important;
}

/* ============================================
   CTA SECTION - MODERN CARDS
   ============================================ */
.cta-split-section {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
  position: relative;
  overflow: hidden;
}

.cta-split-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  top: -250px;
  right: -250px;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-split-section .bg-white {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cta-split-section .bg-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: left 0.5s ease;
  z-index: -1;
}

.cta-split-section .bg-white:hover::before {
  left: 0;
}

.cta-split-section .bg-white:hover {
  color: #fff !important;
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-split-section .bg-white:hover h3,
.cta-split-section .bg-white:hover p {
  color: #fff !important;
}

.cta-split-section .btn-light {
  background: #fff;
  color: #667eea;
  border: 2px solid #fff;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cta-split-section .btn-light:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: scale(1.05);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 17px;
  border-radius: 50%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.scroll-top-btn i {
  font-size: 20px;
}

/* ============================================
   FOOTER MODERN DESIGN
   ============================================ */
footer {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #000000 0%, #2a5298 100%);
  background-size: 200% 100%;
  animation: gradient-flow 3s ease infinite;
}

@keyframes gradient-flow {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
}

footer i.fab {
  transition: all 0.3s ease;
  display: inline-block;
}

footer i.fab:hover {
  color: #667eea;
  transform: scale(1.3) translateY(-5px);
}

footer a {
  transition: all 0.3s ease;
}

footer a:hover {
  color: #667eea !important;
  padding-left: 10px;
}

footer ul li {
  line-height: 1.8;
}

footer .list-unstyled li {
  margin-bottom: 6px;
  line-height: 1.8;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.min-height-box {
  min-height: 550px;
}

.min-height-box-home {
  min-height: 400px;
}

.hover-zoom {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-zoom:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.text-brand { 
  color: #58468c !important; 
}

.bg-brand { 
  background-color: #58468c !important; 
  color: #fff; 
}

/* ============================================
   SMOOTH SCROLL
   ============================================ */
html {
  scroll-behavior: smooth;
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hide {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 767px) {
  h1, .display-5 {
    font-size: 2rem !important;
  }
  
  .service-card {
    margin-bottom: 20px;
  }
  
  .counter-value {
    font-size: 2rem;
  }
  
  .counter-icon {
    font-size: 2rem;
  }
}

/* ============================================
   CUSTOM ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease;
}

.slide-in-left {
  animation: slideInLeft 1s ease;
}

.slide-in-right {
  animation: slideInRight 1s ease;
}

/* ============================================
   PROFESSIONAL WEB SCRAPING COMPANY STYLING
   ============================================ */

/* Data-flow animation for tech feel */
.section-with-data-bg {
  position: relative;
  overflow: hidden;
}

.section-with-data-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(102, 126, 234, 0.03) 2px,
    rgba(102, 126, 234, 0.03) 4px
  );
  z-index: 0;
  pointer-events: none;
}

/* Enhanced section backgrounds */
section {
  position: relative;
}

section.py-5:nth-of-type(even) {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* Professional card styling for contact/quote pages */
.professional-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin: 40px 0;
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
}

.professional-card:hover {
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.15);
  transform: translateY(-5px);
}

/* Form styling improvements */
.form-control, .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

.form-label {
  font-weight: 600;
  color: #221a3b;
  margin-bottom: 8px;
}

/* Tech-inspired accent lines */
.tech-accent-line {
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, transparent 100%);
  margin: 20px 0;
  border-radius: 2px;
}

/* Mission/Vision icon enhancement */
.mission-vision-icon {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 1rem;
  filter: drop-shadow(0 5px 15px rgba(102, 126, 234, 0.3));
  transition: all 0.3s ease;
}

.mission-vision-icon:hover {
  transform: scale(1.1) rotate(5deg);
  color: #764ba2;
}

/* Timeline improvements for professional look */
.timeline-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.timeline-content h4 {
  color: #667eea;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Contact page enhancements */
.contact-info-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.contact-info-box i {
  font-size: 2rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.3));
}

/* Professional heading styling */
h1.display-5, h2.display-5 {
  position: relative;
  display: inline-block;
}

h1.display-5::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

/* Data visualization accent */
.data-accent {
  position: relative;
}

.data-accent::before {
  content: '< />';
  position: absolute;
  top: -10px;
  left: -30px;
  font-size: 1.5rem;
  color: #667eea;
  opacity: 0.3;
  font-family: 'Courier New', monospace;
}

/* Professional badge styling */
.professional-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
  margin: 5px;
}

/* Enhance text readability */
.lead {
  line-height: 1.8;
  color: #555 !important;
  font-size: 1.1rem !important;
}

/* Professional list styling */
ul.professional-list {
  list-style: none;
  padding-left: 0;
}

ul.professional-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

ul.professional-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Dropdown menu enhancements */
.dropdown-menu {
  border-radius: 15px;
  border: 1px solid rgba(102, 126, 234, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

.dropdown-item {
  border-radius: 10px;
  transition: all 0.3s ease;
  padding: 10px 15px;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff !important;
  transform: translateX(5px);
}

/* ============================================
   INTERACTIVE PROFESSIONAL FOOTER
   ============================================ */
footer {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
  background-size: 200% 100%;
  animation: gradient-flow 3s ease infinite;
}

footer::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

/* Footer Logo */
footer .footer-logo {
  transition: transform 0.3s ease;
  display: inline-block;
}

footer .footer-logo:hover {
  transform: scale(1.05);
}

/* Footer Headings */
footer h6 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

footer h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

/* Footer Links */
footer a {
  transition: all 0.3s ease;
  position: relative;
}

footer a:hover {
  color: #667eea !important;
  padding-left: 10px;
}

footer ul li {
  line-height: 1.8;
  margin-bottom: 8px;
}

footer .list-unstyled li {
  margin-bottom: 10px;
  line-height: 1.8;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scale(0);
  transition: transform 0.4s ease;
  border-radius: 50%;
  z-index: -1;
}

.social-icon:hover::before {
  transform: scale(1);
}

.social-icon:hover {
  transform: translateY(-8px) rotate(360deg);
  border-color: #667eea;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Newsletter Section */
.newsletter-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.newsletter-section:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-section h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.newsletter-section p {
  color: #e0e0e0;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  outline: none;
  border-color: #667eea;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.newsletter-btn {
  padding: 12px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Contact Info Items */
.footer-contact-item {
  display: flex;
  align-items: start;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 8px;
}

.footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.footer-contact-item i {
  width: 25px;
  color: #667eea;
  margin-top: 2px;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 15px;
}

.footer-bottom-links a {
  color: #e0e0e0;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #667eea;
  padding-left: 0;
}

.footer-copyright {
  color: #b0b0b0;
  font-size: 0.9rem;
}

/* Back to Top in Footer */
.footer-back-to-top {
  position: absolute;
  top: -25px;
  right: 50px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
  animation: bounce 2s ease-in-out infinite;
}

.footer-back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-btn {
    width: 100%;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-back-to-top {
    right: 20px;
  }
}
