/* ==========================================================================
   Inner Pages Modern Design
   Extends homepage styles for consistent look across all pages
   ========================================================================== */

/* ==========================================================================
   Page Header / Hero Banner
   ========================================================================== */
.page-header-modern {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #f8fbfd 0%, var(--blue-light) 100%);
  position: relative;
  overflow: hidden;
}

.page-header-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-header-modern::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-header-content h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.page-header-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb-modern {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
}

.breadcrumb-modern a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-modern a:hover {
  color: var(--heading-color);
}

.breadcrumb-modern span {
  color: var(--text-muted);
}

/* ==========================================================================
   Services Section - Modern Cards
   ========================================================================== */
.services-modern {
  padding: 60px 0;
  background: #fff;
}

.services-modern .section-intro {
  margin-bottom: 30px;
}

.services-modern .section-intro .lead {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.service-card-large {
  background: #fff;
  border: 2px solid #dde4ea;
  border-radius: 24px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card-large:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 30px rgba(31, 98, 142, 0.15);
}

.service-card-large .service-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.service-card-large .icon-wrapper {
  width: 50px;
  height: 50px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card-large .icon-wrapper i {
  font-size: 24px;
  color: var(--accent-color);
}

.service-card-large h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.service-card-large p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.service-card-large .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.service-card-large .service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.service-card-large .service-features li i {
  color: var(--accent-color);
  font-size: 13px;
}

.service-card-large .btn-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--blue-light);
  color: var(--accent-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.service-card-large .btn-service:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* ==========================================================================
   Clickable Price Cards
   ========================================================================== */
.service-card-large.clickable-card {
  cursor: pointer;
  transition: all 0.25s ease;
}

.service-card-large.clickable-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 35px rgba(31, 98, 142, 0.18);
}

.service-card-large.clickable-card:active {
  transform: scale(0.98);
}

/* ==========================================================================
   Subscription Cards Styling
   ========================================================================== */
.subscriptions-section .section-title h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.subscriptions-section .section-title p {
  color: var(--text-muted);
  font-size: 1rem;
}

.subscription-price-display {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 12px;
  line-height: 1;
}

.subscription-price-display span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 4px;
}

.subscription-price-display.premium {
  color: #d4af37;
}

.service-card-large.subscription-highlight {
  background: linear-gradient(135deg, #f8fbfd 0%, #fff 100%);
  border: 2px solid #e0e8ef;
  position: relative;
}

.service-card-large.subscription-highlight:hover {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, #fff 0%, #f8fbfd 100%);
}

.service-card-large.subscription-highlight .icon-wrapper.subscription-icon-wrapper {
  background: linear-gradient(135deg, var(--accent-color) 0%, #2c7ab3 100%);
}

.service-card-large.subscription-highlight .icon-wrapper.subscription-icon-wrapper i {
  color: var(--contrast-color);
}

.service-card-large.subscription-highlight .icon-wrapper.subscription-icon-wrapper.premium {
  background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
}

/* Featured subscription badge */
.service-card-large.featured-subscription {
  border: 2px solid #d4af37;
  background: linear-gradient(135deg, #fffbf0 0%, #fff 100%);
}

.service-card-large.featured-subscription:hover {
  border-color: #c9a227;
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.2);
}

.featured-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
  color: #fff;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Subscription cards responsive */
@media (max-width: 767.98px) {
  .subscription-price-display {
    font-size: 1.7rem;
  }
  
  .subscriptions-section .section-title h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 575.98px) {
  .subscription-price-display {
    font-size: 1.5rem;
  }
  
  .featured-badge {
    padding: 5px 12px;
    font-size: 0.7rem;
    right: 16px;
  }
}

/* Services CTA Banner */
.services-modern .cta-banner {
  background: linear-gradient(135deg, var(--accent-color) 0%, #2c7ab3 100%);
  border-radius: 24px;
  padding: 35px 40px;
  margin-top: 50px;
  color: var(--contrast-color);
  box-shadow: 0 6px 25px rgba(31, 98, 142, 0.25);
}

.services-modern .cta-banner h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--contrast-color);
}

.services-modern .cta-banner h3 i {
  margin-right: 10px;
}

.services-modern .cta-banner p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  color: var(--contrast-color);
}

.services-modern .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
}

.services-modern .btn-cta:hover {
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991.98px) {
  .services-modern .cta-banner {
    padding: 30px;
    text-align: center;
  }
  
  .services-modern .cta-banner h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .services-modern .cta-banner {
    padding: 24px 20px;
    border-radius: 20px;
  }
  
  .services-modern .cta-banner h3 {
    font-size: 1.1rem;
  }
  
  .services-modern .cta-banner p {
    font-size: 0.9rem;
  }
  
  .services-modern .btn-cta {
    padding: 12px 24px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Price Modal - Modern Design
   ========================================================================== */
.price-modal-modern {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.price-modal-modern .modal-header {
  background: linear-gradient(135deg, var(--accent-color) 0%, #2c7ab3 100%);
  border: none;
  padding: 24px 28px;
}

.price-modal-modern .modal-header.premium-header {
  background: linear-gradient(135deg, #d4af37 0%, #b8972e 100%);
}

.price-modal-modern .modal-title {
  color: var(--contrast-color);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.price-modal-modern .modal-title i {
  font-size: 1.4rem;
}

.price-modal-modern .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.price-modal-modern .btn-close:hover {
  opacity: 1;
}

.price-modal-modern .modal-body {
  padding: 28px;
  background: #f8fafb;
}

/* Price Groups */
.price-group {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e8ecef;
}

.price-group:last-of-type {
  margin-bottom: 20px;
}

.price-group.bonus {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
  border: 1px solid #d0e3f0;
}

.price-group-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue-light);
  display: flex;
  align-items: center;
}

.price-group-title i {
  font-size: 1.1rem;
}

/* Price Items */
.price-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: #f8fafb;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.price-item:hover {
  background: var(--blue-light);
}

.price-item.highlight {
  background: linear-gradient(135deg, #e8f4fd 0%, #dceefb 100%);
  border: 1px solid #c5dff0;
}

.price-item.highlight:hover {
  background: linear-gradient(135deg, #dceefb 0%, #d0e8f7 100%);
}

.price-item-info {
  flex: 1;
  padding-right: 16px;
}

.price-item-info h6 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 4px;
}

.price-item-info small {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.4;
}

.price-item-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-color);
  white-space: nowrap;
  text-align: right;
}

.price-item-value.highlight-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.price-item-value .savings {
  font-size: 0.7rem;
  font-weight: 600;
  color: #28a745;
  background: #e8f5e9;
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 4px;
}

/* Bonus Items */
.bonus-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bonus-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--heading-color);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}

.bonus-item i {
  color: #28a745;
  font-size: 0.9rem;
}

/* Subscription Total */
.subscription-total {
  background: linear-gradient(135deg, var(--accent-color) 0%, #2c7ab3 100%);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.subscription-total.premium {
  background: linear-gradient(135deg, #d4af37 0%, #b8972e 100%);
}

.total-comparison {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.original-price .label,
.final-price .label {
  font-size: 0.85rem;
  opacity: 0.9;
  display: block;
  margin-bottom: 4px;
}

.original-price .price {
  font-size: 1.1rem;
  font-weight: 500;
}

.original-price .price.strikethrough {
  text-decoration: line-through;
  opacity: 0.7;
}

.final-price .price {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.savings-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
}

.savings-badge.premium {
  background: rgba(255, 255, 255, 0.25);
}

/* Modal CTA */
.modal-cta {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  border: 2px dashed #d0e3f0;
}

.modal-cta p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.modal-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-cta .btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.modal-cta .btn-success {
  background: #25D366;
  border: none;
  color: #fff;
}

.modal-cta .btn-success:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.modal-cta .btn-outline-primary {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.modal-cta .btn-outline-primary:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
}

/* Price Modal Responsive */
@media (max-width: 767.98px) {
  .price-modal-modern {
    border-radius: 20px 20px 0 0;
  }
  
  .price-modal-modern .modal-header {
    padding: 20px 24px;
  }
  
  .price-modal-modern .modal-title {
    font-size: 1.15rem;
  }
  
  .price-modal-modern .modal-body {
    padding: 20px;
  }
  
  .price-group {
    padding: 16px;
    border-radius: 14px;
  }
  
  .price-item {
    padding: 12px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .price-item-info {
    padding-right: 0;
  }
  
  .price-item-value {
    align-self: flex-end;
  }
  
  .total-comparison {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .final-price .price {
    font-size: 1.5rem;
  }
  
  .modal-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .price-modal-modern .modal-header {
    padding: 16px 20px;
  }
  
  .price-modal-modern .modal-title {
    font-size: 1.05rem;
  }
  
  .price-modal-modern .modal-body {
    padding: 16px;
  }
  
  .price-group {
    padding: 14px;
    margin-bottom: 16px;
  }
  
  .price-group-title {
    font-size: 0.95rem;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }
  
  .price-item {
    padding: 10px 12px;
    border-radius: 10px;
  }
  
  .price-item-info h6 {
    font-size: 0.9rem;
  }
  
  .price-item-info small {
    font-size: 0.78rem;
  }
  
  .price-item-value {
    font-size: 0.95rem;
  }
  
  .subscription-total {
    padding: 20px;
    border-radius: 14px;
  }
  
  .final-price .price {
    font-size: 1.4rem;
  }
  
  .modal-cta {
    padding: 20px;
  }
  
  .modal-cta .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   Pricing Section - Modern Tables
   ========================================================================== */
.pricing-modern {
  padding: 60px 0;
  background: var(--bg-light);
}

.pricing-category {
  margin-bottom: 40px;
}

.pricing-category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--blue-light);
}

.pricing-category-header .icon-wrapper {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-category-header .icon-wrapper i {
  font-size: 22px;
  color: var(--contrast-color);
}

.pricing-category-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e8ecef;
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pricing-card:hover {
  box-shadow: var(--card-shadow);
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

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

.pricing-item:hover {
  background-color: #f8fafb;
}

.pricing-item .service-name {
  font-size: 0.95rem;
  color: var(--heading-color);
  font-weight: 500;
}

.pricing-item .service-price {
  font-size: 1rem;
  color: var(--accent-color);
  font-weight: 700;
  white-space: nowrap;
}

.pricing-note {
  background: var(--blue-light);
  border-radius: var(--card-radius);
  padding: 20px;
  margin-top: 30px;
}

.pricing-note p {
  margin: 0;
  color: var(--heading-color);
  font-size: 0.9rem;
}

.pricing-note p i {
  color: var(--accent-color);
  margin-right: 8px;
}

/* ==========================================================================
   Gallery Section - Modern Grid
   ========================================================================== */
.gallery-modern {
  padding: 60px 0;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
}

.gallery-card:hover {
  transform: scale(1.02);
  box-shadow: var(--card-shadow-hover);
}

.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}

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

.gallery-card .overlay i {
  color: #fff;
  font-size: 32px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease 0.1s;
}

.gallery-card:hover .overlay i {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Contact Page - Modern Design
   ========================================================================== */
.contact-page-modern {
  padding: 60px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Quick Contact Row */
.quick-contact-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.quick-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 18px 28px;
  border-radius: 60px;
  text-decoration: none;
  border: 2px solid #e8ecef;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  min-width: 220px;
}

.quick-contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.quick-contact-item.call:hover {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, rgba(31, 98, 142, 0.05) 0%, rgba(31, 98, 142, 0.02) 100%);
}

.quick-contact-item.whatsapp:hover {
  border-color: #25D366;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(37, 211, 102, 0.02) 100%);
}

.quick-contact-item.email:hover {
  border-color: #EA4335;
  background: linear-gradient(135deg, rgba(234, 67, 53, 0.05) 0%, rgba(234, 67, 53, 0.02) 100%);
}

.quick-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-contact-item.call .quick-icon {
  background: linear-gradient(135deg, var(--accent-color) 0%, #2c7ab3 100%);
}

.quick-contact-item.whatsapp .quick-icon {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.quick-contact-item.email .quick-icon {
  background: linear-gradient(135deg, #EA4335 0%, #c5221f 100%);
}

.quick-icon i {
  color: #fff;
  font-size: 22px;
}

.quick-info {
  display: flex;
  flex-direction: column;
}

.quick-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8b9aad;
  font-weight: 600;
}

.quick-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-color);
}

/* Info Cards (Schedule & Address) */
.info-card {
  background: #fff;
  border-radius: 24px;
  border: 2px solid #e8ecef;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.card-header-accent {
  background: linear-gradient(135deg, var(--accent-color) 0%, #2c7ab3 100%);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-header-accent.location {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.card-header-accent i {
  font-size: 24px;
  color: #fff;
}

.card-header-accent h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.card-body-content {
  padding: 24px;
}

/* Schedule Card */
.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.schedule-days {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--heading-color);
  font-weight: 500;
}

.schedule-days i {
  color: var(--accent-color);
  font-size: 18px;
}

.schedule-hours .time {
  background: linear-gradient(135deg, var(--accent-color) 0%, #2c7ab3 100%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
}

.schedule-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e8ecef 50%, transparent 100%);
  margin: 6px 0;
}

.card-footer-note {
  background: var(--blue-light);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--accent-color);
}

.card-footer-note i {
  font-size: 16px;
}

/* Address Card */
.address-card-modern .card-body-content {
  text-align: center;
}

.address-line {
  font-size: 15px;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.address-line strong {
  font-size: 17px;
  display: block;
  margin-bottom: 10px;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(245, 158, 11, 0.3);
  color: #fff;
}

/* Map Card */
.map-card-modern {
  background: #fff;
  border-radius: 24px;
  border: 2px solid #e8ecef;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  height: 100%;
  min-height: 400px;
}

.map-container-modern {
  height: 100%;
  min-height: 400px;
}

.map-container-modern iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.map-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-badge i {
  color: #EA4335;
  font-size: 16px;
}

/* Google Reviews Section */
.google-reviews-section {
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  border-radius: 24px;
  border: 2px solid #fbbf24;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.15);
  position: relative;
  overflow: hidden;
}

.google-reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335);
}

.reviews-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.reviews-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 20px;
}

.reviews-badge-large {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.google-logo-large {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.rating-display {
  display: flex;
  flex-direction: column;
}

.rating-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
}

.stars-row {
  display: flex;
  gap: 3px;
  color: #fbbf24;
  font-size: 18px;
}

.reviews-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.highlight-item i {
  font-size: 14px;
}

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

.btn-review-google {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid #e8ecef;
  padding: 18px 32px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: var(--heading-color);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-review-google:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.25);
  border-color: #4285F4;
  color: #4285F4;
}

.google-icon-btn {
  width: 28px;
  height: 28px;
}

.review-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

/* Responsive - Google Reviews */
@media (max-width: 991.98px) {
  .google-reviews-section {
    padding: 30px;
  }
  
  .reviews-content h3 {
    font-size: 1.4rem;
  }
  
  .rating-number {
    font-size: 2rem;
  }
  
  .reviews-cta {
    margin-top: 30px;
  }
}

@media (max-width: 767.98px) {
  .google-reviews-section {
    padding: 24px;
    border-radius: 20px;
  }
  
  .reviews-badge-large {
    justify-content: center;
  }
  
  .reviews-content {
    text-align: center;
  }
  
  .reviews-content h3 {
    font-size: 1.3rem;
  }
  
  .reviews-highlights {
    justify-content: center;
  }
  
  .btn-review-google {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  
  .google-icon-btn {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 575.98px) {
  .google-reviews-section {
    padding: 20px;
  }
  
  .google-logo-large {
    width: 40px;
    height: 40px;
  }
  
  .rating-number {
    font-size: 1.8rem;
  }
  
  .stars-row {
    font-size: 14px;
  }
  
  .highlight-item {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* Social Section */
.social-section-modern {
  background: #fff;
  border-radius: 24px;
  border: 2px solid #e8ecef;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

.social-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social-header h3 i {
  color: #ef4444;
}

.social-header p {
  color: var(--text-muted);
  margin: 0;
}

.social-links-modern {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  min-width: 180px;
}

.social-btn > i {
  font-size: 22px;
}

.social-btn span {
  flex: 1;
}

.social-arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.social-btn:hover .social-arrow {
  opacity: 1;
  transform: translateX(0);
}

.social-btn.facebook {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.1) 0%, rgba(24, 119, 242, 0.05) 100%);
  color: #1877F2;
  border: 2px solid rgba(24, 119, 242, 0.2);
}

.social-btn.facebook:hover {
  background: #1877F2;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.social-btn.instagram {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.1) 0%, rgba(225, 48, 108, 0.05) 100%);
  color: #E1306C;
  border: 2px solid rgba(225, 48, 108, 0.2);
}

.social-btn.instagram:hover {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
  border-color: transparent;
}

.social-btn.tiktok {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.03) 100%);
  color: #000;
  border: 2px solid rgba(0, 0, 0, 0.15);
}

.social-btn.tiktok:hover {
  background: #000;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-btn.google {
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.1) 0%, rgba(66, 133, 244, 0.05) 100%);
  color: #4285F4;
  border: 2px solid rgba(66, 133, 244, 0.2);
}

.social-btn.google:hover {
  background: #fff;
  color: #4285F4;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.2);
  border-color: #4285F4;
}

.google-icon-small {
  width: 22px;
  height: 22px;
}

/* Responsive - Contact Page */
@media (max-width: 991.98px) {
  .quick-contact-row {
    gap: 12px;
  }
  
  .quick-contact-item {
    padding: 14px 20px;
    min-width: 200px;
  }
  
  .map-card-modern {
    min-height: 350px;
    margin-top: 20px;
  }
  
  .map-container-modern,
  .map-container-modern iframe {
    min-height: 350px;
  }
  
  .social-section-modern {
    padding: 30px;
  }
  
  .social-btn {
    padding: 14px 20px;
    min-width: 160px;
  }
}

@media (max-width: 767.98px) {
  .contact-page-modern {
    padding: 40px 0;
  }
  
  .quick-contact-row {
    flex-direction: column;
    align-items: stretch;
  }
  
  .quick-contact-item {
    min-width: unset;
    justify-content: flex-start;
  }
  
  .info-card {
    border-radius: 20px;
  }
  
  .card-header-accent {
    padding: 16px 20px;
  }
  
  .card-body-content {
    padding: 20px;
  }
  
  .schedule-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .schedule-hours {
    align-self: flex-end;
  }
  
  .map-card-modern {
    border-radius: 20px;
    min-height: 300px;
  }
  
  .map-container-modern,
  .map-container-modern iframe {
    min-height: 300px;
  }
  
  .social-section-modern {
    padding: 24px;
    border-radius: 20px;
  }
  
  .social-header h3 {
    font-size: 1.3rem;
  }
  
  .social-links-modern {
    flex-direction: column;
    gap: 12px;
  }
  
  .social-btn {
    min-width: unset;
    width: 100%;
    justify-content: flex-start;
  }
  
  .social-arrow {
    opacity: 1;
    transform: translateX(0);
    margin-left: auto;
  }
}

@media (max-width: 575.98px) {
  .quick-icon {
    width: 44px;
    height: 44px;
  }
  
  .quick-icon i {
    font-size: 20px;
  }
  
  .quick-value {
    font-size: 14px;
  }
  
  .card-header-accent h3 {
    font-size: 1.1rem;
  }
  
  .schedule-hours .time {
    padding: 5px 12px;
    font-size: 13px;
  }
  
  .directions-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* ==========================================================================
   FAQ Section - Modern Accordion (Bootstrap Based)
   ========================================================================== */
.faq-modern {
  padding: 60px 0;
  background: var(--bg-light);
}

.faq-accordion .accordion-item {
  background: #fff;
  border: 1px solid #e8ecef;
  border-radius: var(--card-radius) !important;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-accordion .accordion-item:hover {
  box-shadow: var(--card-shadow);
}

.faq-accordion .accordion-button {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  background: transparent;
  border: none;
  box-shadow: none;
  transition: all 0.2s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background: transparent;
  box-shadow: none;
}

.faq-accordion .accordion-button:hover {
  color: var(--accent-color);
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f628e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.2s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f628e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.faq-accordion .accordion-button i {
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-accordion .accordion-body {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-accordion .accordion-body p {
  margin-bottom: 12px;
}

.faq-accordion .accordion-body p:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-body ul {
  padding-left: 20px;
  margin: 12px 0;
}

.faq-accordion .accordion-body ul li {
  margin-bottom: 8px;
  color: var(--text-muted);
}

.faq-accordion .accordion-body a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.faq-accordion .accordion-body a:hover {
  color: var(--heading-color);
  text-decoration: underline;
}

/* FAQ CTA Card */
.faq-cta-card {
  background: linear-gradient(135deg, var(--accent-color) 0%, #2c7ab3 100%);
  border-radius: var(--card-radius);
  padding: 40px;
  text-align: center;
  color: var(--contrast-color);
  box-shadow: var(--card-shadow-hover);
}

.faq-cta-card .cta-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.faq-cta-card .cta-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.faq-cta-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--contrast-color);
}

.faq-cta-card p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 24px;
  color: var(--contrast-color);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.cta-buttons .btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-buttons .btn-primary {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: 2px solid var(--contrast-color);
}

.cta-buttons .btn-primary:hover {
  background: transparent;
  color: var(--contrast-color);
}

.cta-buttons .btn-success {
  background: #25D366;
  color: var(--contrast-color);
  border: 2px solid #25D366;
}

.cta-buttons .btn-success:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
}

.cta-buttons .btn-outline {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--contrast-color);
}

/* ==========================================================================
   Blog Section - Modern Cards
   ========================================================================== */
.blog-modern {
  padding: 60px 0;
  background: #fff;
}

.blog-card {
  background: #fff;
  border: 1px solid #e8ecef;
  border-radius: var(--card-radius);
  overflow: hidden;
  height: 100%;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.blog-card .blog-image {
  position: relative;
  overflow: hidden;
}

.blog-card .blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.blog-card .blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-card .blog-content {
  padding: 24px;
}

.blog-card .blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-card .blog-meta i {
  color: var(--accent-color);
  margin-right: 4px;
}

.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card h3 a:hover {
  color: var(--accent-color);
}

.blog-card .blog-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.blog-card .read-more:hover {
  gap: 10px;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 991.98px) {
  .page-header-modern {
    padding: 60px 0 40px;
  }
  
  .services-modern,
  .pricing-modern,
  .gallery-modern,
  .contact-modern,
  .faq-modern,
  .blog-modern {
    padding: 50px 0;
  }
  
  .pricing-category-header h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .page-header-modern {
    padding: 50px 0 30px;
  }
  
  .page-header-content h1 {
    font-size: 1.8rem;
  }
  
  .page-header-content p {
    font-size: 1rem;
  }
  
  .services-modern,
  .pricing-modern,
  .gallery-modern,
  .contact-modern,
  .faq-modern,
  .blog-modern {
    padding: 40px 0;
  }
  
  .service-card-large {
    padding: 22px;
    border-radius: 20px;
  }
  
  .service-card-large .icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  
  .service-card-large .icon-wrapper i {
    font-size: 20px;
  }
  
  .service-card-large h3 {
    font-size: 1.05rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }
  
  .gallery-card img {
    height: 200px;
  }
  
  .contact-info-card {
    padding: 24px;
  }
  
  .contact-map-wrapper iframe {
    height: 280px;
  }
  
  /* FAQ Accordion Mobile */
  .faq-accordion .accordion-button {
    padding: 16px 20px;
    font-size: 0.95rem;
  }
  
  .faq-accordion .accordion-button i {
    font-size: 16px;
  }
  
  .faq-accordion .accordion-body {
    padding: 0 20px 16px;
  }
  
  .faq-cta-card {
    padding: 30px 24px;
  }
  
  .faq-cta-card .cta-icon {
    width: 60px;
    height: 60px;
  }
  
  .faq-cta-card .cta-icon i {
    font-size: 28px;
  }
  
  .faq-cta-card h3 {
    font-size: 1.3rem;
  }
  
  .cta-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }
  
  .blog-card .blog-content {
    padding: 20px;
  }
}

@media (max-width: 575.98px) {
  .page-header-modern {
    padding: 40px 0 25px;
  }
  
  .page-header-content h1 {
    font-size: 1.6rem;
  }
  
  .breadcrumb-modern {
    font-size: 0.85rem;
  }
  
  .service-card-large {
    padding: 18px;
    border-radius: 18px;
  }
  
  .service-card-large .service-header {
    gap: 12px;
    margin-bottom: 14px;
  }
  
  .service-card-large .icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  
  .service-card-large .icon-wrapper i {
    font-size: 18px;
  }
  
  .service-card-large h3 {
    font-size: 1rem;
  }
  
  .service-card-large p {
    font-size: 0.88rem;
  }
  
  .service-card-large .service-features li {
    font-size: 0.85rem;
  }
  
  .pricing-item {
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  
  .pricing-item .service-price {
    align-self: flex-end;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  /* FAQ Accordion Small Screen */
  .faq-accordion .accordion-button {
    padding: 14px 16px;
    font-size: 0.9rem;
  }
  
  .faq-accordion .accordion-body {
    padding: 0 16px 14px;
    font-size: 0.9rem;
  }
  
  .faq-cta-card {
    padding: 24px 20px;
  }
  
  .faq-cta-card h3 {
    font-size: 1.2rem;
  }
  
  .faq-cta-card p {
    font-size: 0.9rem;
  }
  
  .blog-card .blog-image img {
    height: 180px;
  }
}

/* ==========================================================================
   Modern Footer
   ========================================================================== */
.footer-modern {
  background: #1a2942;
  color: #fff;
  position: relative;
}

/* Main Content Area */
.footer-main-content {
  padding: 50px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand */
.footer-brand-box {
  padding-right: 30px;
}

.footer-title-brand {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Contact List with styled icons */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-contact-list a:hover {
  color: #fff;
}

.footer-contact-list a:hover .contact-icon {
  background: var(--accent-color);
  color: #fff;
}

.contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 14px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* Footer Headings */
.footer-heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 2px;
}

/* Footer Nav List */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 8px;
}

.footer-nav-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-nav-list a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

/* Footer CTA */
.footer-cta-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer-btns {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--accent-color);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background: #fff;
  color: var(--accent-color);
}

.footer-btn.whatsapp {
  background: #25D366;
}

.footer-btn.whatsapp:hover {
  background: #128C7E;
  color: #fff;
}

/* Footer Social */
.footer-social-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-box span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.footer-social-icons {
  display: flex;
  gap: 6px;
}

.footer-social-icons a {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-social-icons a:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px 0;
}

.footer-bottom-left {
  flex-shrink: 0;
}

.footer-bottom-left p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom-left strong {
  color: rgba(255, 255, 255, 0.8);
}

/* ANPC Badges - Right aligned, small */
.footer-anpc {
  display: flex !important;
  gap: 10px !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex: 1 !important;
}

.footer-anpc a {
  display: inline-block !important;
  line-height: 0 !important;
}

.footer-anpc a img,
.footer-modern .footer-anpc a img,
.footer-bottom-bar .footer-anpc img {
  height: 35px !important;
  max-height: 35px !important;
  width: auto !important;
  max-width: 120px !important;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.footer-anpc a:hover img {
  opacity: 1;
}

/* Footer Responsive */
@media (max-width: 991.98px) {
  .footer-brand-box {
    padding-right: 0;
    margin-bottom: 20px;
  }
  
  .footer-main-content {
    padding: 40px 0 30px;
  }
}

@media (max-width: 767.98px) {
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .footer-anpc {
    justify-content: center !important;
    flex: none !important;
    width: 100%;
  }
  
  .footer-btns {
    flex-direction: column;
  }
  
  .footer-btn {
    justify-content: center;
  }
  
  .footer-social-box {
    justify-content: flex-start;
  }
  
  .footer-main-content {
    padding: 35px 0 25px;
  }
}

@media (max-width: 575.98px) {
  .footer-title-brand {
    font-size: 1.4rem;
  }
  
  .footer-heading {
    font-size: 0.95rem;
  }
  
  .footer-anpc {
    gap: 8px !important;
  }
  
  .footer-anpc a img {
    height: 32px !important;
    max-height: 32px !important;
    max-width: 110px !important;
  }
}
