/* ===== HOW TO ORDER SECTION - MODERN DESIGN ===== */
.how-to-order-section {
  position: relative;
  background-color: var(--color-secondary);
  padding: 100px var(--spacing-md) 80px;
  text-align: center;
  overflow: hidden;
  z-index: 5;
  margin-top: -100px;
  padding-top: 150px;
}

.how-to-order-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
          radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.section-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}


.how-to-order-section .section-header {
  display: none !important;
}

.how-to-order-section .section-subtitle {
  display: none !important;
}

/* Force rerender - prevent cache */
.how-to-order-section::after {
  content: '';
  display: none;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 3.5em;
  color: var(--color-gray);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
  font-size: 1.3em;
  color: var(--color-gray);
  font-weight: 400;
  opacity: 0.8;
}

.how-to-order-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.order-card {
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.card-header {
  padding: 35px 30px 25px;
  background: transparent;
  text-align: center;
  position: relative;
}

.icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: transparent;
  border: 4px solid var(--color-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.order-card:hover .icon-circle {
  border-color: var(--color-primary);
}

.icon-circle i {
  font-size: 2.2em;
  color: var(--color-gray);
  transition: color 0.4s ease;
}

.order-card:hover .icon-circle i {
  color: var(--color-primary);
}

.card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.8em;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.card-body {
  padding: 30px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: transparent;
  border-radius: 10px;
}

.hours-row.highlight {
  background: rgba(0, 0, 0, 0.05);
}

.hours-row .day {
  font-weight: 600;
  color: var(--color-gray);
  font-size: 1em;
}

.hours-row .time {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.1em;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: transparent;
  border-radius: 10px;
}

.feature-item i {
  color: var(--color-primary);
  font-size: 1.3em;
  min-width: 24px;
}

.feature-item span {
  font-weight: 500;
  color: var(--color-gray);
  font-size: 1em;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: transparent;
  border-radius: 12px;
  position: relative;
}

.payment-option.preferred {
  background: rgba(0, 0, 0, 0.05);
}

.payment-icon {
  width: 50px;
  height: 50px;
  background: transparent;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-icon i {
  font-size: 1.5em;
  color: var(--color-gray);
}

.payment-info {
  flex: 1;
}

.payment-info h4 {
  font-size: 1.1em;
  color: var(--color-gray);
  margin-bottom: 3px;
  font-weight: 700;
}

.payment-info p {
  font-size: 0.9em;
  color: var(--color-gray);
  opacity: 0.7;
  margin: 0;
}

.badge.recommended {
  background: var(--color-primary);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.badge.recommended i {
  font-size: 0.9em;
}

.info-note {
  display: flex;
  gap: 12px;
  padding: 15px;
  background: transparent;
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
}

.info-note i {
  color: var(--color-primary);
  font-size: 1.2em;
  margin-top: 2px;
}

.info-note p {
  font-size: 0.95em;
  color: var(--color-gray);
  margin: 0;
  line-height: 1.5;
}

.card-footer {
  padding: 20px 30px;
  background: transparent;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 25px;
  font-weight: 600;
  color: var(--color-gray);
}

.status-badge.open i {
  color: #27ae60;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.order-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--color-primary), #c0392b);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
  transition: all 0.3s ease;
}

.order-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

.cta-section {
  margin-top: 60px;
  padding: 50px 30px;
  background: transparent;
  border-radius: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content h3 {
  font-family: var(--font-heading);
  font-size: 2.5em;
  color: var(--color-gray);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.cta-content p {
  font-size: 1.2em;
  color: var(--color-gray);
  opacity: 0.8;
  margin-bottom: 30px;
}

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

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-btn.primary {
  background: linear-gradient(135deg, var(--color-primary), #c0392b);
  color: white;
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.5);
}

.cta-btn.secondary {
  background: var(--color-gray);
  color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary:hover {
  background: var(--color-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.order-bottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  pointer-events: none;
}

/* ===== SPECIALITY SECTION ===== */
.content-section-speciality {
  background-color: var(--color-light);
  padding: var(--spacing-xl) var(--spacing-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.speciality-header {
  margin-top: 100px;
  margin-bottom: 100px;
  position: relative;
  z-index: 3;
}

.content-section-speciality h2 {
  font-family: var(--font-heading);
  font-size: 3.5em;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.speciality-circles-row {
  display: flex;
  justify-content: center;
  gap: 100px;
  max-width: 1400px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 3;
}

.speciality-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.speciality-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
}

.speciality-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.speciality-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speciality-circle-item h3 {
  font-family: var(--font-heading);
  font-size: 1.8em;
  font-weight: 600;
  color: var(--color-dark);
  margin-top: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.speciality-cards-container {
  max-width: 900px;
  margin: 40px auto;
  position: relative;
  z-index: 3;
}

.speciality-expanded-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
  transition: all 0.5s ease;
  position: relative;
}

.speciality-expanded-card.active {
  max-height: 600px;
  opacity: 1;
  margin-bottom: 30px;
}

.card-content {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.card-image {
  flex: 0 0 350px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-info {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-info h3 {
  font-family: var(--font-heading);
  font-size: 2.2em;
  color: var(--color-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-info p {
  font-size: 1.1em;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.card-price {
  font-family: var(--font-heading);
  font-size: 2.5em;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: auto;
}

.button-speciality {
  background-color: var(--color-gray);
  color: var(--color-light);
  padding: 15px 30px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1.1em;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  display: inline-block;
  margin-top: 40px;
}

.button-speciality:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button-speciality:active {
  background-color: #c0392b;
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* ===== CONTACT SECTION ===== */
.content-section-contact {
  background-color: var(--color-dark);
  color: var(--color-light);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-bottom: 100px;
}

.content-section-contact .contact-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.contact-header {
  margin-top: 150px;
  margin-bottom: 50px;
  position: relative;
  z-index: 3;
}

.content-section-contact h2 {
  font-family: var(--font-heading);
  font-size: 3.5em;
  font-weight: 700;
  color: var(--color-light);
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  display: inline-block;
  padding-bottom: var(--spacing-sm);
}

.content-section-contact h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  margin: var(--spacing-sm) auto 0;
}

.map-container {
  position: relative;
  padding-bottom: 30%;
  height: 0;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto var(--spacing-xl);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 5px solid var(--color-light);
  z-index: 3;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-info-section {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 var(--spacing-md);
  text-align: center;
}

.contact-info-section h2 {
  margin-bottom: var(--spacing-md);
  font-size: 3.5em;
}

.contact-subtitle {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 60px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.contact-simple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contact-simple-item {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.contact-simple-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.contact-simple-grid .contact-simple-item:nth-child(1) {
  transition-delay: 0.2s;
}
.contact-simple-grid .contact-simple-item:nth-child(2) {
  transition-delay: 0.4s;
}
.contact-simple-grid .contact-simple-item:nth-child(3) {
  transition-delay: 0.6s;
}

.contact-simple-icon {
  font-size: 3em;
  color: var(--color-secondary);
  margin-bottom: 20px;
  display: block;
}

.contact-simple-item h3 {
  font-family: var(--font-heading);
  font-size: 1.8em;
  color: var(--color-secondary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contact-simple-item p {
  font-size: 1.1em;
  color: var(--color-light);
  line-height: 1.8;
  margin-bottom: 8px;
}

.contact-simple-item p:last-of-type {
  margin-bottom: 0;
}

.contact-phone {
  display: block;
  font-size: 1.3em;
  color: var(--color-light);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.contact-phone:hover {
  color: var(--color-secondary);
}

.contact-note {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-top: 15px;
}

.company-name {
  font-weight: 700;
  color: var(--color-secondary);
  font-size: 1.1em;
  margin-bottom: 15px;
}

.contact-simple-item strong {
  color: var(--color-secondary);
  font-weight: 600;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  margin-top: 15px;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--color-light);
}

.contact-link i {
  font-size: 1em;
}

.button-write-us {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-light);
  font-family: var(--font-heading);
  font-size: 1.5em;
  padding: 15px var(--spacing-lg);
  border-radius: var(--radius-round);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  border: 2px solid transparent;
  opacity: 0;
  transform: translateY(30px);
}

.button-write-us:hover {
  background-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
  border-color: var(--color-primary);
}

.button-write-us.is-revealed {
  opacity: 1;
  transform: translateY(0);
}