/* 
 * DigiAgency - Modern Digital Agency Landing Page Stylesheet
 * Inspired by premium pastel aesthetic, incorporating soft shadows, spacious margins, and fluid micro-interactions.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Core Color Palette - Artistic Flair Theme */
  --primary-color: #B19CD9; /* Lavender pastel */
  --primary-hover: #9E85CD; /* Slightly deeper lavender */
  --primary-light: #F5EEFF; /* Very soft lavender tint */
  --secondary-color: #FFD1DC; /* Pastel pink */
  --secondary-hover: #FFAEC1; /* Slightly deeper pink */
  --secondary-light: #FFF5F7; /* Very soft pink tint */
  --accent-color: #B9E2FA; /* Pastel blue */
  --accent-light: #EBF7FF; /* Very soft blue tint */
  
  /* Backgrounds */
  --bg-primary: #FFFFFF;
  --bg-alt: #F8F7FF;
  --bg-shape-1: rgba(177, 156, 217, 0.08);
  --bg-shape-2: rgba(255, 209, 220, 0.08);
  --bg-shape-3: rgba(185, 226, 250, 0.08);

  /* Typography Colors */
  --text-main: #25233A;
  --text-secondary: #727084;
  --text-light: #A4A2B5;
  
  /* Layout Details */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
  
  /* Shadows - Artistic Flair soft Lavender theme shadows */
  --shadow-sm: 0 4px 12px rgba(177, 156, 217, 0.05);
  --shadow-md: 0 8px 24px rgba(177, 156, 217, 0.08);
  --shadow-lg: 0 16px 40px rgba(177, 156, 217, 0.15);
  --shadow-hover: 0 20px 48px rgba(177, 156, 217, 0.25);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Global Resets & Scrollbar --- */
body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
}

p {
  color: var(--text-secondary);
  line-height: 1.75;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-alt);
}
::-webkit-scrollbar-thumb {
  background: #D4D1E6;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* --- Section Layout --- */
section {
  padding: 100px 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  background-color: var(--primary-light);
  padding: 6px 16px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.25rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 50px auto;
  font-size: 1.05rem;
}

/* --- Decorative Blobs & Shapes --- */
.decor-blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.blob-1 {
  top: 10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background-color: var(--bg-shape-1);
  filter: blur(80px);
  border-radius: 50%;
}
.blob-2 {
  bottom: 15%;
  right: -5%;
  width: 400px;
  height: 400px;
  background-color: var(--bg-shape-2);
  filter: blur(100px);
  border-radius: 50%;
}
.blob-3 {
  top: 40%;
  left: 45%;
  width: 250px;
  height: 250px;
  background-color: var(--bg-shape-3);
  filter: blur(70px);
  border-radius: 50%;
}

/* --- Buttons --- */
.btn-custom {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-custom-primary {
  background-color: var(--primary-color);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(177, 156, 217, 0.25);
  border: 1px solid transparent;
}
.btn-custom-primary:hover {
  background-color: var(--primary-hover);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(177, 156, 217, 0.35);
}

.btn-custom-secondary {
  background-color: #FFFFFF;
  color: var(--primary-color);
  border: 1px solid rgba(177, 156, 217, 0.25);
}
.btn-custom-secondary:hover {
  background-color: var(--primary-light);
  color: var(--primary-color);
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

/* --- Header & Sticky Navbar --- */
.header-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-smooth);
}

.header-nav.sticky-nav {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(177, 156, 217, 0.08);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-dot {
  color: var(--secondary-color);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-main);
  padding: 8px 16px !important;
  border-radius: 20px;
  transition: var(--transition-smooth);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 4px;
}

/* Hamburger Icon Animation */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background: transparent;
  outline: none;
  box-shadow: none !important;
}

.navbar-toggler span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav Menu Background */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    padding: 24px;
    margin-top: 16px;
    border: 1px solid rgba(177, 156, 217, 0.15);
  }
  .navbar-nav .nav-link {
    margin: 4px 0;
  }
  .navbar-nav .nav-link.active::after {
    display: none;
  }
  .navbar-nav .nav-link.active {
    background-color: var(--primary-light);
  }
}

/* --- Hero Section --- */
.hero-section {
  padding-top: 180px;
  padding-bottom: 120px;
  background-color: var(--bg-alt);
  overflow: hidden;
  position: relative;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(37, 35, 58, 0.08);
  padding-top: 30px;
}

.hero-stat-item h4 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 2px;
}
.hero-stat-item p {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--text-secondary);
}

.hero-illustration-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration {
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

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

.hero-bg-shapes {
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  z-index: 1;
}

.hero-bg-shapes svg {
  width: 100%;
  height: 100%;
}

/* --- Services Section --- */
.services-section {
  background-color: var(--bg-primary);
}

.service-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(177, 156, 217, 0.08);
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(177, 156, 217, 0.2);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon-wrapper {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.service-icon-wrapper.icon-purple {
  background-color: var(--primary-light);
  color: var(--primary-color);
}
.service-icon-wrapper.icon-pink {
  background-color: var(--secondary-light);
  color: var(--secondary-color);
}
.service-icon-wrapper.icon-blue {
  background-color: var(--accent-light);
  color: var(--accent-color);
}

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

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.service-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
  transition: var(--transition-smooth);
}

.service-link i {
  font-size: 0.8rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-link {
  color: var(--primary-hover);
}
.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* --- About & Work Process Section --- */
.about-section {
  background-color: var(--bg-alt);
}

.about-illustration {
  width: 100%;
  max-width: 480px;
  animation: float-slow 8s ease-in-out infinite;
}

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

.process-point {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.process-point-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #E8F5E9;
  color: #2E7D32;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(46, 125, 50, 0.1);
}

.process-point h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.process-point p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- Projects Section --- */
.projects-section {
  background-color: var(--bg-primary);
}

/* Category Filters */
.filter-btn-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(177, 156, 217, 0.2);
  color: var(--text-secondary);
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.filter-btn.active {
  background-color: var(--primary-color);
  color: #FFFFFF;
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(177, 156, 217, 0.25);
}

/* Projects Slider/Grid Container */
.projects-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.projects-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-slide {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  box-sizing: border-box;
  transition: var(--transition-smooth);
}

@media (max-width: 991px) {
  .project-slide {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 767px) {
  .project-slide {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.project-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(177, 156, 217, 0.08);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(177, 156, 217, 0.2);
}

.project-img-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.project-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-img-box img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(177, 156, 217, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-details-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.project-card:hover .project-details-btn {
  transform: translateY(0);
}

.project-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-category {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.project-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0;
  line-height: 1.4;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.project-card:hover h4 {
  color: var(--primary-color);
}

/* Carousel controls */
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.slider-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid rgba(177, 156, 217, 0.2);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.slider-btn:hover {
  background-color: var(--primary-color);
  color: #FFFFFF;
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(177, 156, 217, 0.25);
}

/* --- Statistics Section --- */
.statistics-section {
  background: linear-gradient(135deg, var(--primary-color), #D6C7F5);
  color: #FFFFFF;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.statistics-section h2, .statistics-section h3, .statistics-section p {
  color: #FFFFFF !important;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 20px;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  opacity: 0.9;
  display: inline-block;
  animation: float 4s ease-in-out infinite;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 0;
}

/* --- Testimonial Section --- */
.testimonial-section {
  background-color: var(--bg-alt);
}

.testimonial-slider-wrapper {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  flex: 0 0 calc(50% - 15px);
  max-width: calc(50% - 15px);
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .testimonial-slide {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.testimonial-card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(177, 156, 217, 0.08);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2.5rem;
  color: var(--primary-light);
  opacity: 0.5;
}

.stars {
  color: #FFC107;
  margin-bottom: 20px;
}

.stars i {
  font-size: 0.85rem;
  margin-right: 2px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.client-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

.client-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.client-title {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 0;
}

/* --- Partner Logos Section --- */
.partners-section {
  background-color: var(--bg-primary);
  padding: 60px 0;
  border-bottom: 1px solid rgba(177, 156, 217, 0.1);
}

.partner-logo-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.partner-logo {
  flex: 1;
  min-width: 120px;
  text-align: center;
  transition: var(--transition-smooth);
  filter: grayscale(100%);
  opacity: 0.5;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* --- Pricing Section --- */
.pricing-section {
  background-color: var(--bg-alt);
}

/* Toggle Switch */
.pricing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.pricing-toggle-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.pricing-toggle-label.active {
  color: var(--primary-color);
}

.toggle-switch-box {
  width: 60px;
  height: 32px;
  background-color: #D4D1E6;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.toggle-switch-box.active {
  background-color: var(--primary-color);
}

.toggle-dot {
  width: 24px;
  height: 24px;
  background-color: #FFFFFF;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.toggle-switch-box.active .toggle-dot {
  left: 32px;
}

.save-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary-color);
  background-color: var(--secondary-light);
  padding: 3px 8px;
  border-radius: 20px;
}

/* Pricing Cards */
.pricing-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(177, 156, 217, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 50px 35px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--bg-alt);
  color: var(--primary-color);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: var(--transition-smooth);
}

.pricing-card:hover .pricing-icon {
  background-color: var(--primary-color);
  color: #FFFFFF;
  transform: scale(1.05);
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0;
  font-family: var(--font-heading);
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.pricing-period {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-left: 4px;
}

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

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(37, 35, 58, 0.04);
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.pricing-features li.disabled {
  color: var(--text-light);
  text-decoration: line-through;
}

.pricing-features li.disabled i {
  color: var(--text-light);
}

/* Featured / Professional Card */
.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(177, 156, 217, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .pricing-card.featured {
    transform: none !important;
  }
  .pricing-card.featured:hover {
    transform: translateY(-8px) !important;
  }
}

/* --- Contact Section --- */
.contact-section {
  background-color: var(--bg-primary);
}

.contact-illustration {
  width: 100%;
  max-width: 440px;
  animation: float 5s ease-in-out infinite;
}

.info-cards-wrapper {
  margin-top: 40px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.contact-info-card h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-form-wrapper {
  background-color: var(--bg-alt);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  border: 1px solid rgba(177, 156, 217, 0.08);
}

.form-group-custom {
  position: relative;
  margin-bottom: 24px;
}

.form-control-custom {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid rgba(177, 156, 217, 0.15);
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.form-control-custom:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(177, 156, 217, 0.15);
  outline: none;
}

.form-control-custom::placeholder {
  color: var(--text-light);
}

.is-invalid-custom {
  border-color: #DC3545 !important;
}

.invalid-feedback-custom {
  color: #DC3545;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 6px;
  display: none;
}

/* Success notification message popup */
.success-toast {
  background-color: #E8F5E9;
  border: 1px solid #A5D6A7;
  color: #2E7D32;
  padding: 16px;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeInDown 0.4s ease-out;
}

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

/* --- Footer --- */
footer {
  background-color: #1A1829;
  color: #FFFFFF;
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-desc {
  color: #A4A2B5;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 30px;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background-color: var(--primary-color);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.footer-widget h4 {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 24px;
  font-weight: 600;
}

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

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

.footer-links a {
  color: #A4A2B5;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copyright {
  color: #727084;
  font-size: 0.85rem;
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.footer-bottom-links a {
  color: #727084;
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

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

@media (max-width: 767px) {
  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 15px;
  }
}

/* --- Scroll To Top --- */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 15px rgba(177, 156, 217, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 999;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(177, 156, 217, 0.45);
}

/* --- Scroll Reveal Animations (Vanilla CSS & JS Trigger) --- */
.reveal-on-scroll {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-fade-in-up {
  transform: translateY(40px);
}

.reveal-fade-in-left {
  transform: translateX(-40px);
}

.reveal-fade-in-right {
  transform: translateX(40px);
}

.reveal-scale-up {
  transform: scale(0.95);
}

.reveal-on-scroll.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* Delay modifiers */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
