/* VN Pharmacy Custom Styles */

:root {
  --primary-color:  #28a745;
  --secondary-color: #2c5aa0;
  --accent-color: #ffc107;
  --text-dark: #333;
  --text-light: #666;
  --background-light: #f8f9fa;
}

/* Global Styles */
body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Override Bootstrap button colors to use custom theme colors */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: color-mix(in srgb, var(--primary-color) 85%, black);
  border-color: color-mix(in srgb, var(--primary-color) 85%, black);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  background-color: color-mix(in srgb, var(--secondary-color) 85%, black);
  border-color: color-mix(in srgb, var(--secondary-color) 85%, black);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-outline-secondary {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color) !important;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/pharmacy-bg.jpg') center/cover;
  opacity: 0.1;
  z-index: 1;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.hero-section .btn {
  border-radius: 50px;
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.hero-section .btn-outline-light:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.hero-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.btn.btn-primary-custom {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--text-dark);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px !important;
  transition: all 0.3s ease;
}

.btn.btn-primary-custom:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background-color: var(--background-light);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: none;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Page Header Sections */
.page-header-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.page-header-content {
  position: relative;
  z-index: 2;
  padding-right: 2rem;
}

.page-header-image {
  position: relative;
  z-index: 2;
}

/* Legacy class names for backward compatibility */
.about-header-content,
.location-header-content,
.services-header-content {
  position: relative;
  z-index: 2;
  padding-right: 2rem;
}

.about-header-image,
.location-header-image,
.services-header-image {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stats-row .stat-item {
  text-align: center;
  min-width: 80px;
}

.stats-row .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
}

.stats-row .stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

.about-header-image {
  position: relative;
  z-index: 2;
}

.rounded-custom {
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rounded-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Vision and Mission Section */

/* Team Section */
.team-section {
  background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.team-image-container {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.8), rgba(44, 90, 160, 0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.team-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.team-card:hover .social-link {
  transform: translateY(0);
  opacity: 1;
}

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

.team-info {
  padding: 2rem;
  text-align: center;
}

.team-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-position {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.team-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Timeline Section */
.timeline-section {
  position: relative;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
  text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 3rem;
  margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 3rem;
  margin-right: 0;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border: 4px solid white;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 2;
}

.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.timeline-year {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.timeline-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Timeline arrows */
.timeline-item:nth-child(odd) .timeline-content::before {
  content: '';
  position: absolute;
  right: -15px;
  top: 20px;
  width: 0;
  height: 0;
  border-left: 15px solid white;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.timeline-item:nth-child(even) .timeline-content::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 20px;
  width: 0;
  height: 0;
  border-right: 15px solid white;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

/* Responsive Timeline */
@media (max-width: 768px) {
  .page-header-section {
    padding: 100px 0 60px;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .about-subtitle,
  .location-subtitle,
  .services-subtitle {
    font-size: 1.1rem;
  }

  .stats-row {
    justify-content: center;
    gap: 1.5rem;
  }

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

  .page-header-content,
  .about-header-content,
  .location-header-content,
  .services-header-content {
    padding-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 0;
    margin-bottom: 2rem;
  }
  
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    text-align: left;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 3rem;
    margin-right: 0;
  }
  
  .timeline-marker {
    left: 20px;
    transform: translateX(-50%);
  }
  
  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -15px;
    right: auto;
    border-left: none;
    border-right: 15px solid white;
  }
}

/* Vision and Mission Section */
.bg-gradient-light {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
}

.vision-mission-card {
  transition: all 0.3s ease;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.vision-mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.vision-mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.vision-mission-card:hover .icon-circle {
  transform: scale(1.1);
}

.vision-icon {
  background: linear-gradient(135deg, var(--primary-color), #20c997);
}

.mission-icon {
  background: linear-gradient(135deg, var(--secondary-color), #6f42c1);
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-image {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: var(--background-light);
}

.contact-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  height: 100%;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 40px 0 20px;
}

.footer h5 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid #555;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: #ccc;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 10px;
}

.language-switcher .btn {
  padding: 5px 15px;
  font-size: 0.9rem;
  border-radius: 20px;
}

/* Location Page Specific Styles */
.location-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.quick-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.info-item i {
  font-size: 1.2rem;
}

/* Location Details Section */
.location-details-section {
  background: white;
}

.location-card,
.hours-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover,
.hours-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.location-card .card-header,
.hours-card .card-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 1.5rem 2rem;
  border: none;
}

.location-card .card-title,
.hours-card .card-title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.location-card .card-body,
.hours-card .card-body {
  padding: 2rem;
}

.location-address {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.contact-info p {
  font-size: 1rem;
  color: var(--text-light);
}

.contact-info a:not(.btn) {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:not(.btn):hover {
  text-decoration: underline;
}

.contact-info .btn-primary-custom {
  color: var(--text-dark) !important;
}

.contact-info .btn-primary-custom:hover {
  color: var(--text-dark) !important;
}

/* Hours Section */
.hours-list {
  margin-bottom: 1.5rem;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
}

.hour-item:last-child {
  border-bottom: none;
}

.hour-item .day {
  font-weight: 600;
  color: var(--text-dark);
}

.hour-item .time {
  font-weight: 500;
  color: var(--primary-color);
}

.hour-item.weekend .day {
  color: var(--secondary-color);
}

.hour-item.closed .time {
  color: #dc3545;
  font-style: italic;
}

.holiday-notice {
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

/* Map Section */
.map-container {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  min-height: 400px;
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  text-align: center;
  padding: 2rem;
}

.map-placeholder h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.map-placeholder p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Amenities Section */
.amenities-section {
  background: white;
}

.amenity-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border-color: var(--primary-color);
}

.amenity-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  transition: transform 0.3s ease;
}

.amenity-card:hover .amenity-icon {
  transform: scale(1.1);
}

.amenity-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.amenity-description {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Directions Section */
.direction-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.direction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.direction-header h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.direction-content {
  text-align: left;
}

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

.direction-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
  line-height: 1.6;
  border-bottom: 1px solid #f8f9fa;
}

.direction-list li:last-child {
  border-bottom: none;
}

.direction-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.direction-list {
  counter-reset: step-counter;
}

/* Responsive Design for Location Page */
@media (max-width: 768px) {
  .quick-info {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .amenity-card {
    margin-bottom: 2rem;
  }
  
  .direction-card {
    margin-bottom: 2rem;
  }
}

/* Values Section */
.bg-pattern {
  background-color: #f8f9fa;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(40, 167, 69, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(44, 90, 160, 0.1) 0%, transparent 50%);
  background-size: 100px 100px;
}

.values-card {
  transition: all 0.3s ease;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.values-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  z-index: 1;
}

.values-card .card-body {
  position: relative;
  z-index: 2;
}

.values-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15) !important;
}

.value-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
  transition: all 0.3s ease;
}

.values-card:hover .value-icon-container {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(40, 167, 69, 0.4);
}

.values-card .card-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.values-card .card-text {
  color: var(--text-light);
  line-height: 1.6;
}

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .hero-image {
    max-width: 450px;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-image {
    max-width: 350px;
  }

  .services-section,
  .about-section,
  .contact-section {
    padding: 60px 0;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-color) !important;
}

.bg-primary-custom {
  background-color: var(--primary-color) !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

.bg-accent {
  background-color: var(--accent-color) !important;
}
