/* ========================================
   SERVICES.CSS - Updated from source
   Generated from source/style.css
   ======================================== */

/* ===== SERVICES DETAILED ===== */

.services-detailed.section {
  padding: 5rem 0;
}

.services-detailed .container {
  padding: 0 3rem;
  max-width: 1400px;
}

.services-detailed__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-detailed {
  background: var(--white);
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
  overflow: hidden;
  transition: var(--transition);
}

.service-detailed:hover {
  box-shadow: var(--shadow-medium);
}

.service-detailed__header {
  background: var(--primary-color);
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.service-detailed__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-detailed__title {
  color: var(--white);
  margin: 0;
}

.service-detailed__content {
  padding: 2rem;
}

.service-detailed__description {
  margin-bottom: 1.5rem;
}

.service-detailed__features {
  margin-bottom: 2rem;
}

.service-detailed__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.service-detailed__features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: var(--font-bold);
}

.service-detailed__price {
  font-size: 1.25rem;
  font-weight: var(--font-bold);
  color: var(--primary-color);
  text-align: center;
  padding: 1rem;
  background: var(--secondary-color);
  border-radius: var(--border-radius);
}



/* ===== PROCESS SECTION ===== */

.process .container {
  padding: 0 2rem;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-primary);
}

.process-step__number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.process-step__title {
  font-family: 'Amatic SC', 'Arial Black', sans-serif;
  font-size: var(--h3-font-size);
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.process-step__description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* CTA button in process section */
.section__cta {
  margin-top: 3rem;
  text-align: center;
}

.section__cta .btn--primary {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
  transition: all 0.3s ease;
}

.section__cta .btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 165, 116, 0.4);
  background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-primary) 100%);
}

/* Mobile responsiveness for process section */
@media (max-width: 768px) {
  .process .container {
    padding: 0 1.5rem;
  }
  
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .process-step {
    padding: 1.5rem 1rem;
  }
  
  .process-step__number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .process-step__title {
    font-size: var(--h4-font-size);
  }
  
  .process-step__description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .process .container {
    padding: 0 1rem;
  }
  
  .process__steps {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    padding: 1rem;
  }
}



/* ===== CAKE FORMATS SECTION ===== */

.cake-formats {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(255, 255, 255, 0.98) 100%);
  padding: 3rem 0;
  margin: 2rem 0;
  border-radius: 16px;
}

.cake-formats .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cake-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.cake {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 165, 116, 0.1);
  cursor: pointer;
  position: relative;
}

.cake:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: var(--brand-primary);
}

.cake h3 {
  font-family: 'Amatic SC', 'Arial Black', sans-serif;
  font-size: var(--h3-font-size);
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.cake p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 1rem;
  font-weight: 500;
}

.layers {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1.5rem 0;
  position: relative;
}

.layer {
  background: linear-gradient(45deg, #DEB887 0%, #D2B48C 25%, #FFF8DC 50%, #F5F5DC 75%, #CD853F 100%);
  height: 15px;
  width: 80px;
  border-radius: 6px;
  margin: 1px 0;
  box-shadow: 
    inset 0 2px 4px rgba(255, 255, 255, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.layer:nth-child(odd) {
  background: linear-gradient(45deg, #DEB887 0%, #D2B48C 50%, #CD853F 100%);
  height: 18px;
}

.layer:nth-child(even) {
  background: linear-gradient(45deg, #FFF8DC 0%, #F5F5DC 50%, #FFFACD 100%);
  height: 12px;
  width: 75px;
}

/* Proportional cake layer widths based on diameter */
.cake[data-info*="12 cm"] .layer,
.cake[data-info*="Diametro 12 cm"] .layer {
  width: 65px; /* Base width for 12cm diameter (increased from 48px) */
}

.cake[data-info*="15 cm"] .layer,
.cake[data-info*="Diametro 15 cm"] .layer {
  width: 80px; /* 15/12 * 65 = 81px (rounded to 80px) */
}

.cake[data-info*="17 cm"] .layer,
.cake[data-info*="Diametro 17 cm"] .layer {
  width: 92px; /* 17/12 * 65 = 92px */
}

.cake[data-info*="18 cm"] .layer,
.cake[data-info*="Diametro 18 cm"] .layer {
  width: 98px; /* 18/12 * 65 = 97.5px (rounded to 98px) */
}

.cake[data-info*="20 cm"] .layer,
.cake[data-info*="Diametro 20 cm"] .layer {
  width: 108px; /* 20/12 * 65 = 108px */
}

.cake[data-info*="22 cm"] .layer,
.cake[data-info*="Diametro 22 cm"] .layer {
  width: 119px; /* 22/12 * 65 = 119px */
}

.cake[data-info*="25 cm"] .layer,
.cake[data-info*="Diametro 25 cm"] .layer {
  width: 135px; /* 25/12 * 65 = 135px */
}

.cake-formats__notes {
  background: rgba(212, 165, 116, 0.08);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
  border-left: 4px solid var(--brand-primary);
}

.cake-formats__notes h4 {
  font-family: 'Amatic SC', 'Arial Black', sans-serif;
  font-size: var(--h4-font-size);
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.cake-formats__notes p {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.cake-formats__notes strong {
  color: var(--brand-primary);
  font-weight: 600;
}

.cake-formats__notes em {
  color: var(--text-secondary);
  font-style: italic;
}

/* Tooltip */
.cake-tooltip {
  position: fixed;
  background: var(--white);
  color: var(--text-color);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  font-size: 0.9em;
  max-width: 250px;
  z-index: 1000;
  border: 1px solid var(--first-color-alt);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .cake-formats {
    padding: 2rem 0;
    margin: 1rem 0;
  }
  
  .cake-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .cake {
    padding: 1rem;
  }
  
  .layer {
    width: 60px;
    height: 12px;
  }
  
  .layer:nth-child(odd) {
    height: 14px;
  }
  
  .layer:nth-child(even) {
    width: 55px;
    height: 10px;
  }
  
  .cake-formats__notes {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .cake-grid {
    grid-template-columns: 1fr;
  }
  
  .layer {
    width: 50px;
    height: 10px;
  }
  
  .layer:nth-child(odd) {
    height: 12px;
  }
  
  .layer:nth-child(even) {
    width: 45px;
    height: 8px;
  }
}



/* ===== CAKE MODAL STYLES ===== */

.cake-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  padding: 2rem 1rem;
}

.cake-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.cake-modal__content {
  background: var(--white);
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  position: relative;
  animation: slideDown 0.4s ease-out;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cake-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-color);
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cake-modal__close:hover {
  background: var(--brand-primary);
  color: var(--white);
  transform: rotate(90deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cake-modal__body {
  display: flex;
  flex-direction: column;
}

.cake-modal__visual {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.modal-cake-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 1rem 0;
}

.modal-cake-visual .layer {
  background: linear-gradient(45deg, #DEB887 0%, #D2B48C 25%, #FFF8DC 50%, #F5F5DC 75%, #CD853F 100%);
  height: 15px;
  width: 80px;
  border-radius: 6px;
  margin: 1px 0;
  box-shadow: 
    inset 0 2px 4px rgba(255, 255, 255, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.modal-cake-visual .layer:nth-child(odd) {
  background: linear-gradient(45deg, #DEB887 0%, #D2B48C 50%, #CD853F 100%);
  height: 18px;
}

.modal-cake-visual .layer:nth-child(even) {
  background: linear-gradient(45deg, #FFF8DC 0%, #F5F5DC 50%, #FFFACD 100%);
  height: 12px;
  width: 75px;
}

.cake-modal__info {
  padding: 2.5rem;
}

.cake-modal__title {
  font-family: 'Amatic SC', 'Arial Black', sans-serif;
  font-size: 2.5rem;
  color: var(--brand-primary);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.cake-modal__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(212, 166, 116, 0.1) 0%, rgba(246, 231, 199, 0.1) 100%);
  border-radius: 12px;
}

.cake-modal__detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.cake-modal__detail-item i {
  font-size: 1.8rem;
  color: var(--brand-primary);
  margin-bottom: 0.25rem;
}

.cake-modal__detail-item span {
  font-size: 0.95rem;
  color: var(--text-color);
  font-weight: 600;
  line-height: 1.4;
}

.cake-modal__description {
  margin-bottom: 2rem;
  text-align: center;
}

.cake-modal__description p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.cake-modal__configs {
  margin-bottom: 2rem;
}

.cake-modal__btn {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: var(--white);
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(212, 166, 116, 0.3);
}

.cake-modal__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 166, 116, 0.4);
}

.cake-modal__btn:active {
  transform: translateY(0);
}

/* Make cake cards clickable */
.cake {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cake:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cake:active {
  transform: translateY(-2px);
}

/* Mobile responsive for cake modal */
@media (max-width: 768px) {
  .cake-modal {
    padding: 1rem 0.5rem;
  }
  
  .cake-modal__content {
    max-width: 95vw;
    border-radius: 16px;
  }
  
  .cake-modal__visual {
    padding: 2rem 1rem;
    min-height: 150px;
  }
  
  .cake-modal__info {
    padding: 1.5rem;
  }
  
  .cake-modal__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .cake-modal__details {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  
  .cake-modal__detail-item {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
  
  .cake-modal__detail-item i {
    font-size: 1.5rem;
  }
  
  .cake-modal__detail-item span {
    font-size: 0.9rem;
  }
  
  .cake-modal__description p {
    font-size: 1rem;
  }
  
  .cake-modal__btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
  
  .cake-modal__close {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
    top: 0.75rem;
    right: 0.75rem;
  }
}

@media (max-width: 480px) {
  .modal-cake-visual .layer {
    width: 60px;
    height: 12px;
  }
  
  .modal-cake-visual .layer:nth-child(odd) {
    height: 14px;
  }
  
  .modal-cake-visual .layer:nth-child(even) {
    width: 55px;
    height: 10px;
  }
}

/* ===== DOCS MODAL STYLES ===== */

.docs-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.docs-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.docs-modal__content {
  background: var(--white);
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  position: relative;
  animation: slideDown 0.4s ease-out;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.docs-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-color);
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.docs-modal__close:hover {
  background: var(--brand-primary);
  color: var(--white);
  transform: rotate(90deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.docs-modal__header {
  padding: 2rem 2rem 1rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
}

.docs-modal__title {
  font-family: 'Amatic SC', 'Arial Black', sans-serif;
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.docs-modal__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.docs-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.docs-viewer {
  display: flex;
  gap: 2rem;
  height: 100%;
}

.docs-viewer__sidebar {
  flex: 0 0 250px;
  border-right: 1px solid var(--gray-medium);
  padding-right: 1.5rem;
}

.docs-viewer__sidebar-title {
  font-size: 1.2rem;
  color: var(--brand-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.docs-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.docs-viewer__main {
  flex: 1;
  overflow: visible;
  background: rgba(212, 165, 116, 0.02);
  border-radius: 12px;
  padding: 1rem;
  height: 100%;
  display: flex;
}

.doc-viewer {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.doc-viewer__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-light);
  text-align: center;
}

.doc-viewer__placeholder i {
  font-size: 4rem;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.doc-viewer__placeholder p {
  font-size: 1.1rem;
}

/* Document list item styles */
.doc-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(212, 165, 116, 0.05);
  border: 1px solid rgba(212, 165, 116, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.doc-item:hover {
  background: rgba(212, 165, 116, 0.1);
  border-color: var(--brand-primary);
  transform: translateX(5px);
}

.doc-item.active {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  color: var(--white);
  border-color: var(--brand-primary);
}

.doc-item i {
  font-size: 1.5rem;
  color: var(--brand-primary);
}

.doc-item.active i {
  color: var(--white);
}

.doc-item span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Document viewer content styles */
.doc-viewer__pdf,
.doc-viewer__image {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1rem;
}

.doc-viewer__pdf iframe {
  flex: 1;
  min-height: 500px;
  border-radius: 8px;
  background: var(--white);
}

.doc-viewer__image {
  align-items: center;
  padding: 1rem;
}

.doc-viewer__image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.doc-viewer__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  flex-wrap: wrap;
}

.btn--small {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn--small i {
  font-size: 0.9rem;
}

/* Mobile responsive for docs modal */
@media (max-width: 768px) {
  .docs-modal {
    padding: 1rem 0.5rem;
  }
  
  .docs-modal__content {
    max-width: 95vw;
    max-height: 95vh;
    border-radius: 16px;
  }
  
  .docs-modal__header {
    padding: 1.5rem 1rem 1rem 1rem;
  }
  
  .docs-modal__title {
    font-size: 2rem;
  }
  
  .docs-modal__subtitle {
    font-size: 1rem;
  }
  
  .docs-modal__body {
    padding: 1rem;
  }
  
  .docs-viewer {
    flex-direction: column;
    gap: 1rem;
  }
  
  .docs-viewer__sidebar {
    flex: none;
    border-right: none;
    border-bottom: 1px solid var(--gray-medium);
    padding-right: 0;
    padding-bottom: 1rem;
    max-height: 200px;
    overflow-y: auto;
  }
  
  .docs-viewer__sidebar-title {
    font-size: 1rem;
  }
  
  .doc-item {
    padding: 0.75rem;
    gap: 0.5rem;
  }
  
  .doc-item i {
    font-size: 1.25rem;
  }
  
  .doc-item span {
    font-size: 0.85rem;
  }
  
  .doc-viewer__actions {
    gap: 0.5rem;
    padding: 0.75rem;
    flex-direction: column;
  }
  
  .btn--small {
    width: 100%;
    justify-content: center;
  }
  
  .doc-viewer__pdf iframe {
    min-height: 400px;
  }
  
  .docs-modal__close {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
    top: 0.75rem;
    right: 0.75rem;
  }
}

@media (max-width: 480px) {
  .docs-modal__close {
    width: 35px;
    height: 35px;
    font-size: 1.25rem;
  }
  
  .docs-modal__title {
    font-size: 1.75rem;
  }
  
  .docs-viewer__sidebar {
    max-height: 150px;
  }
  
  .doc-item {
    padding: 0.6rem;
  }
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVE STYLES ===== */

/* Page Header Mobile Optimization */
@media screen and (max-width: 768px) {
  .page-header {
    padding: 6rem 0 3rem;
  }
  
  .page-header__title {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }
  
  .page-header__subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media screen and (max-width: 480px) {
  .page-header {
    padding: 5rem 0 2.5rem;
  }
  
  .page-header__title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .page-header__subtitle {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
}

/* Services Detailed Section Mobile Optimization */
@media screen and (max-width: 1024px) {
  .services-detailed.section {
    padding: 4rem 0;
  }
  
  .services-detailed .container {
    padding: 0 1.5rem;
  }
  
  .services-detailed__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
  }
}

@media screen and (max-width: 768px) {
  .services-detailed.section {
    padding: 3rem 0;
  }
  
  .services-detailed .container {
    padding: 0 1rem;
  }
  
  .services-detailed__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-detailed__header {
    padding: 1.75rem;
  }
  
  .service-detailed__icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
  }
  
  .service-detailed__title {
    font-size: 1.5rem;
  }
  
  .service-detailed__content {
    padding: 1.75rem;
  }
  
  .service-detailed__description {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
  
  .service-detailed__features li {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
  }
  
  .service-detailed__price {
    font-size: 1.15rem;
    padding: 0.875rem;
  }
  
  /* Info card special styling */
  .service-detailed--info .service-detailed__cta {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .services-detailed.section {
    padding: 2.5rem 0;
  }
  
  .services-detailed .container {
    padding: 0 0.75rem;
  }
  
  .services-detailed__grid {
    gap: 1.25rem;
  }
  
  .service-detailed__header {
    padding: 1.5rem;
  }
  
  .service-detailed__icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .service-detailed__title {
    font-size: 1.35rem;
  }
  
  .service-detailed__content {
    padding: 1.5rem;
  }
  
  .service-detailed__description {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .service-detailed__features li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .service-detailed__price {
    font-size: 1.1rem;
    padding: 0.75rem;
  }
}

/* Cake Formats Section Enhanced Mobile */
@media screen and (max-width: 768px) {
  .cake-formats {
    padding: 2.5rem 0;
    margin: 1.5rem 0;
  }
  
  .cake-formats .container {
    padding: 0 1rem;
  }
  
  .cake-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0;
  }
  
  .cake {
    padding: 1.25rem;
  }
  
  .cake h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .cake p {
    font-size: 0.85rem;
    margin-top: 0.75rem;
  }
  
  .cake-formats__notes {
    padding: 1.25rem;
    margin-top: 1.5rem;
  }
  
  .cake-formats__notes h4 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }
  
  .cake-formats__notes p {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }
}

@media screen and (max-width: 480px) {
  .cake-formats {
    padding: 2rem 0;
    margin: 1rem 0;
  }
  
  .cake-formats .container {
    padding: 0 0.75rem;
  }
  
  .cake-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.25rem 0;
  }
  
  .cake {
    padding: 1rem;
  }
  
  .cake h3 {
    font-size: 1.35rem;
  }
  
  .cake p {
    font-size: 0.8rem;
  }
  
  .cake-formats__notes {
    padding: 1rem;
    margin-top: 1.25rem;
  }
  
  .cake-formats__notes h4 {
    font-size: 1.25rem;
  }
  
  .cake-formats__notes p {
    font-size: 0.85rem;
  }
}

/* Process Section Enhanced Mobile */
@media screen and (max-width: 768px) {
  .process .container {
    padding: 0 1rem;
  }
  
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .process-step {
    padding: 1.75rem 1rem;
  }
  
  .process-step__number {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
  }
  
  .process-step__title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }
  
  .process-step__description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .section__cta {
    margin-top: 2.5rem;
  }
  
  .section__cta .btn--primary {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .process .container {
    padding: 0 0.75rem;
  }
  
  .process__steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .process-step {
    padding: 1.5rem 1rem;
  }
  
  .process-step__number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .process-step__title {
    font-size: 1.25rem;
    margin-bottom: 0.65rem;
  }
  
  .process-step__description {
    font-size: 0.85rem;
  }
  
  .section__cta {
    margin-top: 2rem;
  }
  
  .section__cta .btn--primary {
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
  }
}

/* Footer Mobile Optimization */
@media screen and (max-width: 768px) {
  .footer {
    padding: 2.5rem 0 1rem;
  }
  
  .footer .container {
    padding: 0 1.5rem;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1rem;
  }
  
  .footer__logo {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .footer__logo-img {
    height: 65px;
    max-width: 220px;
  }
  
  .footer__description {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  
  .footer__social {
    gap: 0.75rem;
    justify-content: center;
  }
  
  .footer__title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .footer__contact-item {
    margin-bottom: 1rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  
  .footer__contact-item span {
    font-size: 0.95rem;
  }
  
  .footer__map-container {
    max-width: 100%;
  }
  
  .footer__copy {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  
  .footer__copy p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .footer {
    padding: 2rem 0 0.75rem;
  }
  
  .footer .container {
    padding: 0 1rem;
  }
  
  .footer__content {
    gap: 2rem;
    padding: 0 0.5rem;
  }
  
  .footer__logo {
    padding: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .footer__logo-img {
    height: 55px;
    max-width: 180px;
  }
  
  .footer__description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  .footer__social {
    gap: 0.6rem;
  }
  
  .footer__social-link {
    width: 40px;
    height: 40px;
  }
  
  .social-icon {
    width: 18px;
    height: 18px;
  }
  
  .footer__title {
    font-size: 1rem;
  }
  
  .footer__contact-item {
    font-size: 0.9rem;
  }
  
  .footer__contact-item i {
    font-size: 0.95rem;
  }
  
  .footer__copy {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
  }
  
  .footer__copy p {
    font-size: 0.85rem;
  }
}


