/* ===== SAXOPHONIST WEBSITE STYLES ===== */

/* ===== ROOT VARIABLES ===== */
:root {
  /* Primary Colors - Blue Theme matching portfolio */
  --primary-color: rgb(14, 99, 223);
  --primary-dark: rgb(12, 85, 190);
  --primary-light: rgb(65, 130, 245);
  --primary-gradient: linear-gradient(135deg, rgb(14, 99, 223), rgb(26, 135, 208));
  
  /* Secondary Colors */
  --secondary-color: #6c757d;
  --success-color: #198754;
  --info-color: #0dcaf0;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  
  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  
  /* Typography */
  --font-primary: "Helvetica Neue", Arial, sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 50px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
}

@media (min-width: 992px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.75rem; }
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition-normal);
}

a:hover {
  color: var(--primary-dark);
}

/* ===== UTILITY CLASSES ===== */
.text-primary { color: var(--primary-color) !important; }
.text-white { color: var(--white) !important; }
.text-muted { color: var(--gray-600) !important; }

.bg-primary { background-color: var(--primary-color) !important; }
.bg-light { background-color: var(--gray-50) !important; }
.bg-dark { background-color: var(--gray-900) !important; }

.py-5 { padding-top: var(--spacing-3xl) !important; padding-bottom: var(--spacing-3xl) !important; }
.mb-3 { margin-bottom: var(--spacing-md) !important; }
.mb-4 { margin-bottom: var(--spacing-xl) !important; }
.mb-5 { margin-bottom: var(--spacing-2xl) !important; }
.mt-3 { margin-top: var(--spacing-md) !important; }
.mt-4 { margin-top: var(--spacing-xl) !important; }
.mt-5 { margin-top: var(--spacing-2xl) !important; }

/* ===== NAVBAR STYLES ===== */
.navbar {
  background: var(--primary-gradient) !important;
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
  font-weight: var(--font-weight-bold);
  transition: var(--transition-normal);
}

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

.nav-link {
  font-weight: var(--font-weight-medium);
  padding: var(--spacing-sm) var(--spacing-md) !important;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white) !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--primary-gradient);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1511192336575-5a79af67a629?w=1920&q=80') center/cover;
  opacity: 0.1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.95), rgba(26, 115, 232, 0.9));
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 1s ease-out;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--white), var(--warning-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.75rem;
  font-weight: var(--font-weight-medium);
  color: var(--white);
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-buttons {
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-social {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.8s backwards;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.25rem;
  transition: var(--transition-normal);
}

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

/* Hero Image */
.hero-image-container {
  position: relative;
  animation: fadeInLeft 1s ease-out;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.hero-image {
  width: 100%;
  height: auto;
  transition: var(--transition-slow);
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.05);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--warning-color);
  color: var(--gray-900);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-semibold);
  box-shadow: var(--shadow-lg);
  animation: bounce 2s infinite;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-link {
  color: var(--white);
  font-size: 2rem;
  transition: var(--transition-normal);
}

.scroll-link:hover {
  color: var(--warning-color);
  transform: scale(1.2);
}

/* ===== SECTION STYLES ===== */
section {
  position: relative;
  overflow: hidden;
}

.section-header {
  margin-bottom: var(--spacing-xl);
}

.section-title {
  font-weight: var(--font-weight-bold);
  color: var(--gray-900);
  margin-bottom: var(--spacing-sm);
}

.section-subtitle {
  color: var(--gray-600);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background-color: var(--white);
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}

.about-image:hover img {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--gray-700);
  margin-bottom: var(--spacing-sm);
}

.feature-item i {
  font-size: 1.25rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
  border: 2px solid transparent;
  position: relative;
}

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

.service-card.featured {
  border-color: var(--warning-color);
  box-shadow: var(--shadow-lg);
}

.service-card.special {
  border-color: var(--success-color);
}

.service-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: var(--warning-color);
  color: var(--gray-900);
  padding: 5px 15px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  box-shadow: var(--shadow-sm);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
  font-size: 2rem;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
}

.service-card p {
  color: var(--gray-600);
  margin-bottom: var(--spacing-lg);
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: var(--spacing-xs) 0;
  color: var(--gray-700);
  font-size: 0.9375rem;
}

.service-features li i {
  color: var(--primary-color);
  margin-right: var(--spacing-sm);
}

/* ===== CHURCH POLICY SECTION ===== */
.church-policy-section {
  background: var(--primary-gradient);
  position: relative;
}

.church-policy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1438232992991-995b7058bbb3?w=1920&q=80') center/cover;
  opacity: 0.05;
}

.policy-content {
  position: relative;
  z-index: 1;
}

.policy-features {
  margin: var(--spacing-xl) 0;
}

.policy-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-md);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.policy-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.policy-item i {
  color: var(--success-color);
  font-size: 1.5rem;
}

.policy-visual {
  text-align: center;
  padding: var(--spacing-2xl);
}

.policy-icon {
  font-size: 8rem;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background-color: var(--gray-50);
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-gradient);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.pricing-header h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.pricing-subtitle {
  color: var(--gray-600);
  margin: 0;
}

.pricing-body {
  text-align: center;
}

.price-tag {
  margin-bottom: var(--spacing-lg);
}

.price-tag .currency {
  font-size: 1.5rem;
  color: var(--gray-700);
  vertical-align: top;
}

.price-tag .amount {
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
}

.price-tag .period {
  font-size: 1rem;
  color: var(--gray-600);
}

.pricing-note {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background-color: var(--gray-100);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  color: var(--gray-700);
  margin-bottom: var(--spacing-xl);
}

.pricing-features {
  text-align: left;
  margin-bottom: var(--spacing-xl);
}

.pricing-features h4 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

.pricing-features ul {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  padding: var(--spacing-sm) 0;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}

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

.pricing-features li i {
  font-size: 1.25rem;
  margin-right: var(--spacing-sm);
}

.pricing-cta {
  text-align: center;
}

.negotiable-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background-color: rgba(25, 135, 84, 0.1);
  color: var(--success-color);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-medium);
}

.payment-method {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  justify-content: center;
  margin-bottom: var(--spacing-xl);
  color: var(--gray-600);
}

.payment-method i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* ===== PERFORMANCES SECTION ===== */
.performances-section {
  background-color: var(--white);
}

.performance-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

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

.performance-thumbnail {
  position: relative;
  overflow: hidden;
}

.performance-thumbnail img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.performance-card:hover .performance-thumbnail img {
  transform: scale(1.1);
}

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

.performance-card:hover .play-overlay {
  opacity: 1;
}

.play-button {
  width: 70px;
  height: 70px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2rem;
  transition: var(--transition-normal);
}

.play-button:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

.performance-content {
  padding: var(--spacing-lg);
}

.performance-content h5 {
  color: var(--gray-900);
  margin-bottom: var(--spacing-sm);
}

.performance-content p {
  color: var(--gray-600);
  font-size: 0.9375rem;
  margin-bottom: var(--spacing-md);
}

/* ===== SOCIAL MEDIA SECTION ===== */
.social-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.social-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.social-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.social-card.twitter:hover { border-color: #000; }
.social-card.youtube:hover { border-color: #ff0000; }
.social-card.facebook:hover { border-color: #1877f2; }
.social-card.instagram:hover { border-color: #e4405f; }
.social-card.tiktok:hover { border-color: #000; }
.social-card.whatsapp:hover { border-color: #25d366; }

.social-card i {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.social-card.twitter i { color: #000; }
.social-card.youtube i { color: #ff0000; }
.social-card.facebook i { color: #1877f2; }
.social-card.instagram i { color: #e4405f; }
.social-card.tiktok i { color: #000; }
.social-card.whatsapp i { color: #25d366; }

.social-card span {
  font-weight: var(--font-weight-semibold);
  color: var(--gray-900);
  font-size: 1.125rem;
}

.social-card small {
  color: var(--gray-600);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--primary-gradient);
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?w=1920&q=80') center/cover;
  opacity: 0.1;
}

.cta-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  margin-bottom: var(--spacing-lg);
}

.cta-card p {
  margin-bottom: var(--spacing-xl);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--gray-900);
  position: relative;
}

.footer-brand h5 {
  color: var(--white);
  margin-bottom: var(--spacing-lg);
}

.footer-brand p {
  color: var(--gray-400);
  margin-bottom: var(--spacing-lg);
}

.footer-section h6 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-semibold);
}

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

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-link {
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: var(--transition-normal);
}

.footer-link:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-link i {
  color: var(--primary-color);
}

.contact-info .contact-item {
  margin-bottom: var(--spacing-sm);
}

.social-section h6 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition-normal);
}

.social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.social-icon.twitter:hover { background-color: #000; }
.social-icon.instagram:hover { background-color: #e4405f; }
.social-icon.youtube:hover { background-color: #ff0000; }
.social-icon.facebook:hover { background-color: #1877f2; }
.social-icon.tiktok:hover { background-color: #000; }
.social-icon.whatsapp:hover { background-color: #25d366; }
.social-icon.linkedin:hover { background-color: #0077b5; }

.footer-bottom-links a {
  color: var(--gray-400);
  margin-left: var(--spacing-md);
  transition: var(--transition-normal);
}

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

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

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

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

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

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .hero-social {
    justify-content: center;
  }
  
  .price-tag .amount {
    font-size: 2.5rem;
  }
  
  .social-grid {
    grid-template-columns: 1fr;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 576px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-badge {
    font-size: 0.875rem;
    padding: var(--spacing-xs) var(--spacing-md);
  }
  
  .service-card {
    padding: var(--spacing-lg);
  }
  
  .pricing-card {
    padding: var(--spacing-xl);
  }
}

/* ===== CHATBOT WIDGET STYLES ===== */
.chatbot-hidden {
  display: none;
}

#chatbot-widget {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 380px;
  max-width: calc(100vw - 60px);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  overflow: hidden;
  animation: slideUp 0.3s ease-out;
}

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

.chatbot-header {
  background: var(--primary-gradient);
  color: white;
  padding: var(--spacing-md) var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
}

.chatbot-status {
  font-size: 0.75rem;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--success-color);
  border-radius: 50%;
  margin-right: 4px;
  animation: pulse 2s infinite;
}

#chat-area-widget {
  height: 350px;
  overflow-y: auto;
  padding: var(--spacing-md);
  background-color: var(--gray-50);
}

#chat-area-widget::-webkit-scrollbar {
  width: 6px;
}

#chat-area-widget::-webkit-scrollbar-track {
  background: var(--gray-100);
}

#chat-area-widget::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 3px;
}

.message {
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  max-width: 85%;
  word-wrap: break-word;
}

.bot-message {
  background-color: white;
  color: var(--gray-800);
  border: 1px solid var(--gray-200);
  border-bottom-left-radius: 2px;
  box-shadow: var(--shadow-sm);
}

.user-message {
  background-color: var(--primary-color);
  color: white;
  margin-left: auto;
  border-bottom-right-radius: 2px;
}

.message-time {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: right;
  margin-top: 4px;
}

.chat-form-container {
  padding: var(--spacing-md);
  background-color: white;
  border-top: 1px solid var(--gray-200);
}

.chat-form-container .form-control {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  border-color: var(--gray-300);
}

.chat-form-container .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(14, 99, 223, 0.25);
}

.chat-form-container .btn-primary {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--spacing-md) var(--spacing-lg);
}

#open-chat-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.75rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 9998;
  transition: var(--transition-normal);
  animation: bounce 2s infinite;
}

#open-chat-button:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

#notification-badge {
  top: 0 !important;
  right: 0 !important;
  transform: translate(30%, -30%) !important;
}

/* ===== PRINT STYLES ===== */
@media print {
  .hero-section,
  .cta-section,
  .back-to-top,
  #chatbot-widget,
  #open-chat-button {
    display: none;
  }
  
  body {
    font-size: 12pt;
  }
  
  .service-card,
  .pricing-card {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid var(--gray-300);
  }
}

/* ===== CHATBOT RESPONSIVE ===== */
@media (max-width: 576px) {
  #chatbot-widget {
    bottom: 20px;
    right: 20px;
    width: calc(100vw - 40px);
    max-width: 350px;
  }
  
  #open-chat-button {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  #chat-area-widget {
    height: 300px;
  }
}