/* CSS Variables - Now loaded dynamically from config.json via PHP in index.php */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 45px;
  width: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  min-height: 48px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--medical-blue-color) 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
  border: none;
  font-weight: 700;
  margin-top:40px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-size: 14px !important;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-phone {
  background: linear-gradient(135deg, var(--trust-green-color) 0%, var(--success-color) 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
  position: relative;
  overflow: hidden;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
}

.btn-phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-phone:hover::before {
  left: 100%;
}

.btn-phone:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--light-blue-color) 0%, #ffffff 50%, var(--light-blue-color) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-color);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-light-color);
  margin-bottom: 30px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  padding: 8px 0;
  border-left: 3px solid var(--trust-green-color);
  padding-left: 15px;
  margin-left: 5px;
  color: var(--text-color);
  font-size: 1.1rem;
}

.feature i {
  color: var(--trust-green-color);
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.2));
}

.hero-cta {
  
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 40px;
  justify-content: center;
}

.hero-cta .btn {
  padding: 16px 32px;
  font-size: 17px;
  min-height: 52px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.trust-badge {
  height: 50px;
  width: auto;
}

.experience-badge,
.patients-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: white;
  border-radius: 12px;
  border: 2px solid var(--trust-green-color);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.badge-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light-color);
  line-height: 1.2;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 500px;
}

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

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-color);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light-color);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
	margin-top:20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--medical-blue-color), var(--trust-green-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(30, 64, 175, 0.15);
  border-color: var(--primary-color);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--light-blue-color) 0%, #ffffff 100%);
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  position: relative;
}

.service-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--medical-blue-color), var(--trust-green-color));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
  opacity: 1;
}

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

.service-icon img {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-color);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

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

/* About Section */
.about {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--light-blue-color) 0%, white 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--trust-green-color), transparent);
  border-radius: 50%;
  opacity: 0.1;
  transform: translate(50%, -50%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
  }
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(30, 64, 175, 0.15);
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.02);
}

.about-text {
  text-align: left;
}

.about-text .section-header {
  text-align: left;
  margin-bottom: 30px;
}

.about-text .section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.about-description {
  margin-bottom: 40px;
}

.about-description p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light-color);
  margin-bottom: 20px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .about-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.highlight-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.1);
  border-color: var(--primary-color);
}

.highlight-item i {
  color: var(--primary-color);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.highlight-item span {
  font-weight: 700;
  color: var(--text-color);
  font-size: 1rem;
}

.about-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.about-cta .btn {
  padding: 14px 28px;
  font-size: 16px;
}

@media (min-width: 640px) {
  .about-cta {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
  }
}

/* Technology Section - Testo a sinistra, immagine a destra */
.technology {
  padding: 60px 0;
  background: linear-gradient(135deg, white 0%, var(--light-blue-color) 100%);
  position: relative;
  overflow: hidden;
}

.technology::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--medical-blue-color), transparent);
  border-radius: 50%;
  opacity: 0.1;
  transform: translate(-50%, -50%);
}

.technology-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .technology-content {
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
  }
}

.technology-text .section-header {
  text-align: left;
  margin-bottom: 30px;
}

.technology-text .section-header h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.technology-description {
  margin-bottom: 40px;
}

.technology-description p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light-color);
  margin-bottom: 20px;
}

.technology-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .technology-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

.technology-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.technology-cta .btn {
  padding: 14px 28px;
  font-size: 16px;
}

@media (min-width: 640px) {
  .technology-cta {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
  }
}

.technology-image {
  position: relative;
}

.technology-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
  transition: transform 0.3s ease;
}

.technology-image:hover img {
  transform: scale(1.02);
}

/* Comfort Section - Immagine a sinistra, testo a destra */
.comfort {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--light-blue-color) 100%);
  position: relative;
  overflow: hidden;
}

.comfort::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--trust-green-color), transparent);
  border-radius: 50%;
  opacity: 0.1;
  transform: translate(50%, -50%);
}

.comfort-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .comfort-content {
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
  }
}

.comfort-text {
  text-align: left;
}

.comfort-text .section-header {
  text-align: left;
  margin-bottom: 30px;
}

.comfort-text .section-header h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.comfort-description {
  margin-bottom: 40px;
}

.comfort-description p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light-color);
  margin-bottom: 20px;
}

.comfort-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .comfort-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

.comfort-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.comfort-cta .btn {
  padding: 14px 28px;
  font-size: 16px;
}

@media (min-width: 640px) {
  .comfort-cta {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
  }
}

.comfort-image {
  position: relative;
}

.comfort-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.15);
  transition: transform 0.3s ease;
}

.comfort-image:hover img {
  transform: scale(1.02);
}

/* Modal */
.modal {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  backdrop-filter: blur(8px);
  animation: modalFadeIn 0.3s ease-out;
  align-items: center !important;
  justify-content: center !important;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(8px);
  }
}

.modal.active {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(30, 64, 175, 0.3);
  border: 1px solid var(--border-color);
  animation: modalSlideIn 0.3s ease-out;
  margin: 20px;
  padding: 30px;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 20px;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: var(--text-light-color);
}

.modal-close:hover {
  color: var(--text-color);
}

/* Contact Form */
.contact-form {
  padding: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.form-half {
  flex: 1;
  margin-bottom: 0;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-label a {
  color: var(--primary-color);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 15px;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #f8fafc 0%, var(--light-blue-color) 100%);
  border-top: 1px solid var(--border-color);
  padding: 40px 0 30px;
  position: relative;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-legal p {
  margin: 0;
  color: var(--text-light-color);
  font-size: 14px;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--medical-blue-color);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .footer-legal {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--medical-blue-color), var(--trust-green-color));
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.footer-info h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--text-color);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light-color);
}

.contact-item i {
  color: var(--primary-color);
  width: 20px;
  height: 20px;
}

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

.footer-cta .btn {
  padding: 16px 32px;
  font-size: 17px;
}

.footer-image img {
  width: 200px;
  height: auto;
  margin-bottom: 25px;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1500;
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--whatsapp-green-color) 0%, var(--whatsapp-dark-color) 100%);
  color: white;
  padding: 12px 16px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  min-width: 48px;
  min-height: 48px;
}

.whatsapp-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, var(--whatsapp-dark-color) 0%, var(--whatsapp-green-color) 100%);
}

.whatsapp-link i {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .whatsapp-button {
    bottom: 20px;
    right: 20px;
    z-index: 2000;
  }
  
  .whatsapp-link {
    padding: 14px;
    font-size: 16px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  }
  
  .whatsapp-link span {
    display: none;
  }
  
  .whatsapp-link i {
    width: 24px;
    height: 24px;
  }
}

/* Success Message */
.success-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, white 0%, var(--light-blue-color) 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.3);
  border: 2px solid var(--trust-green-color);
  z-index: 3000;
  display: none;
  animation: successPulse 0.5s ease-out;
}

@keyframes successPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.success-message.active {
  display: block;
}

.success-content i {
  color: var(--success-color);
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.success-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
}

.success-content p {
  color: var(--text-light-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .services h2 {
    font-size: 2rem;
  }
  
  .modal-content {
    margin: 20px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    width: 95%;
  }
  
  .contact-form,
  .modal-header {
    padding: 20px;
  }
}

/* Remove all list-style bullets - keep only checkmark icons */
ul, ol {
  list-style: none !important;
}

li {
  list-style: none !important;
}
