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

/* ==================== CUSTOM MODAL ==================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  max-width: 420px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  position: relative;
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--bg-light);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
  background: #e8f4f8;
  transform: scale(1.1);
}

.modal-close svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
}

.modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, #3ba8ad 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.modal-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
}

.modal-icon.error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.modal-icon.warning {
  background: linear-gradient(135deg, var(--accent-yellow) 0%, #f59e0b 100%);
}

.modal-icon.info {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
}

.modal-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 16px;
}

.modal-content {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 24px;
  white-space: pre-line;
}

.modal-content.terms-content {
  text-align: left;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 10px;
  font-size: 0.9rem;
}

.modal-content.terms-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content.terms-content::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: 3px;
}

.modal-content.terms-content::-webkit-scrollbar-thumb {
  background: var(--accent-cyan);
  border-radius: 3px;
}

.modal-btn {
  width: 100%;
  padding: 14px 24px;
  background: var(--accent-cyan);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal-btn:hover {
  background: #3ba8ad;
  transform: translateY(-2px);
}

.modal-btn:active {
  transform: translateY(0);
}

:root {
  --primary-blue: #1a4b8c;
  --primary-dark: #0f2d54;
  --accent-cyan: #43c7cd;
  --accent-yellow: #f9c74f;
  --bubble-light: #d4eef7;
  --bubble-medium: #a8d8ea;
  --bg-light: #f8fbfd;
  --text-dark: #1a365d;
  --text-muted: #64748b;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Screen Management */
.screen {
  display: none;
  min-height: 100vh;
  position: relative;
}

.screen.active {
  display: block;
}

/* ==================== HOME SCREEN ==================== */
#home-screen {
  background: linear-gradient(135deg, var(--bg-light) 0%, #e8f4f8 100%);
  overflow: hidden;
}

.home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-height: 100vh;
}

.home-content {
  flex: 1;
  max-width: 500px;
  z-index: 10;
}

/* Logo Styling */
.logo {
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
}

.logo-img {
  width: 420px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.tagline {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-cyan);
  color: var(--white);
  border: none;
  padding: 12px 28px 12px 12px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.cta-button:hover {
  background: var(--accent-yellow);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.dog-icon {
  width: 50px;
  height: 50px;
  background: var(--bubble-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.dog-svg {
  width: 55px;
  height: 55px;
}

.cta-text {
  font-weight: 600;
}

.arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
  transform: translateX(4px);
}

/* Hero Image Section */
.home-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.hero-dog {
  width: 100%;
  max-width: 500px;
  height: 400px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  object-position: center center;
}

/* Decorative Bubbles */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--bubble-light);
  opacity: 0.7;
  z-index: 1;
}

.bubble-1 {
  width: 120px;
  height: 120px;
  bottom: -30px;
  right: -20px;
  animation: float 6s ease-in-out infinite;
}

.bubble-2 {
  width: 80px;
  height: 80px;
  bottom: 50px;
  right: -60px;
  animation: float 5s ease-in-out infinite 0.5s;
}

.bubble-3 {
  width: 60px;
  height: 60px;
  top: 20px;
  right: 30px;
  animation: float 7s ease-in-out infinite 1s;
}

.bubble-4 {
  width: 40px;
  height: 40px;
  top: -20px;
  left: 50px;
  background: var(--bubble-medium);
  animation: float 4s ease-in-out infinite 0.3s;
}

.bubble-5 {
  width: 30px;
  height: 30px;
  bottom: 100px;
  left: -30px;
  background: var(--bubble-medium);
  animation: float 5s ease-in-out infinite 0.7s;
}

/* Floating Bubbles Animation */
.floating-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.float-bubble {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bubble-light), var(--bubble-medium));
  opacity: 0;
  animation: rise 12s ease-in-out infinite;
}

.fb-1 { width: 20px; height: 20px; left: 10%; animation-delay: 0s; }
.fb-2 { width: 35px; height: 35px; left: 25%; animation-delay: 2s; }
.fb-3 { width: 15px; height: 15px; left: 40%; animation-delay: 4s; }
.fb-4 { width: 25px; height: 25px; left: 55%; animation-delay: 1s; }
.fb-5 { width: 30px; height: 30px; left: 70%; animation-delay: 3s; }
.fb-6 { width: 18px; height: 18px; left: 85%; animation-delay: 5s; }
.fb-7 { width: 22px; height: 22px; left: 15%; animation-delay: 6s; }
.fb-8 { width: 28px; height: 28px; left: 90%; animation-delay: 7s; }

@keyframes rise {
  0% {
    bottom: -50px;
    opacity: 0;
    transform: translateX(0) scale(0.5);
  }
  10% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    bottom: 110%;
    opacity: 0;
    transform: translateX(100px) scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Paw Prints */
.paw-prints {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.paw {
  position: absolute;
  width: 40px;
  height: 40px;
  color: var(--bubble-medium);
  opacity: 0.3;
}

.paw-1 {
  top: 15%;
  left: 5%;
  transform: rotate(-30deg);
  animation: pawFade 8s ease-in-out infinite;
}

.paw-2 {
  top: 70%;
  left: 8%;
  transform: rotate(15deg);
  animation: pawFade 8s ease-in-out infinite 2s;
}

.paw-3 {
  top: 40%;
  right: 3%;
  transform: rotate(-15deg);
  animation: pawFade 8s ease-in-out infinite 4s;
}

@keyframes pawFade {
  0%, 100% { opacity: 0.2; transform: scale(1) rotate(-30deg); }
  50% { opacity: 0.5; transform: scale(1.1) rotate(-25deg); }
}

/* Soap Bubbles with shine effect */
.soap-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(212, 238, 247, 0.6) 30%, 
    rgba(168, 216, 234, 0.4) 60%, 
    rgba(168, 216, 234, 0.2) 100%);
  box-shadow: 
    inset -5px -5px 15px rgba(255, 255, 255, 0.5),
    inset 5px 5px 15px rgba(168, 216, 234, 0.3),
    0 0 20px rgba(168, 216, 234, 0.3);
  animation: soapFloat 8s ease-in-out infinite;
}

.soap-bubble::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 20%;
  width: 30%;
  height: 30%;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
  border-radius: 50%;
}

.sb-1 { width: 50px; height: 50px; top: 10%; left: 5%; animation-delay: 0s; }
.sb-2 { width: 30px; height: 30px; top: 25%; right: 10%; animation-delay: 1.5s; }
.sb-3 { width: 40px; height: 40px; bottom: 30%; left: 3%; animation-delay: 3s; }
.sb-4 { width: 25px; height: 25px; top: 60%; right: 5%; animation-delay: 2s; }
.sb-5 { width: 35px; height: 35px; bottom: 15%; right: 15%; animation-delay: 4s; }

@keyframes soapFloat {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-30px) translateX(10px) scale(1.05);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-15px) translateX(-10px) scale(0.95);
    opacity: 0.6;
  }
  75% {
    transform: translateY(-25px) translateX(5px) scale(1.02);
    opacity: 0.8;
  }
}

/* Water splash effect */
.water-splash {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, rgba(212, 238, 247, 0.3) 0%, transparent 100%);
  pointer-events: none;
}

/* Bone decoration */
.bone-deco {
  position: absolute;
  width: 60px;
  height: 25px;
  opacity: 0.15;
  animation: boneFloat 10s ease-in-out infinite;
}

.bone-deco::before,
.bone-deco::after {
  content: '';
  position: absolute;
  background: var(--primary-blue);
  border-radius: 50%;
}

.bone-deco::before {
  width: 25px;
  height: 25px;
  left: 0;
  top: 0;
}

.bone-deco::after {
  width: 25px;
  height: 25px;
  right: 0;
  top: 0;
}

.bone-deco span {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 7px;
  height: 11px;
  background: var(--primary-blue);
}

.bone-1 { top: 20%; left: 2%; transform: rotate(-20deg); animation-delay: 0s; }
.bone-2 { bottom: 25%; right: 5%; transform: rotate(15deg); animation-delay: 3s; }

@keyframes boneFloat {
  0%, 100% { transform: translateY(0) rotate(-20deg); }
  50% { transform: translateY(-15px) rotate(-15deg); }
}

/* ==================== BOOKING SCREEN ==================== */
#booking-screen {
  background: var(--bg-light);
}

.booking-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 70px 20px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.booking-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0 20px;
}

/* Integrated Back Button - Fixed to top left corner */
.back-button-integrated {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px 10px 12px;
  border: none;
  background: linear-gradient(135deg, var(--bubble-light) 0%, var(--bubble-medium) 100%);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-blue);
  box-shadow: 0 2px 8px rgba(168, 216, 234, 0.4);
}

.back-button-integrated:hover {
  background: linear-gradient(135deg, var(--accent-yellow) 0%, #e5b445 100%);
  color: var(--text-dark);
  transform: translateX(-4px);
  box-shadow: 0 4px 12px rgba(249, 199, 79, 0.4);
}

.back-button-icon {
  width: 28px;
  height: 28px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.back-button-integrated:hover .back-button-icon {
  background: rgba(255, 255, 255, 0.9);
}

.back-button-icon svg {
  width: 16px;
  height: 16px;
  color: var(--accent-cyan);
  transition: all 0.3s ease;
}

.back-button-integrated:hover .back-button-icon svg {
  color: var(--accent-yellow);
  transform: translateX(-2px);
}



/* Progress Steps Bar */
.progress-bar-container {
  position: relative;
  margin: 0 -20px;
}

.progress-bar {
  background: var(--accent-cyan);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.progress-bar::-webkit-scrollbar {
  display: none;
}

.progress-wave {
  height: 24px;
  overflow: hidden;
  background: var(--bg-light);
}

.progress-wave svg {
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
}

.step-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.step-item.active {
  background: rgba(255, 255, 255, 0.25);
}

.step-item.completed {
  opacity: 0.9;
}

.step-item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.step-check {
  width: 16px;
  height: 16px;
  color: var(--white);
}

.step-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.step-value {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.step-separator {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 2px;
}

.step-separator svg {
  width: 20px;
  height: 20px;
}

/* Step Content */
.step-content {
  flex: 1;
  padding: 20px 0;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Elements */
.step-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 8px;
}

.step-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

/* Input Fields */
.form-group {
  margin-bottom: 20px;
}

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

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s ease;
  background: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 4px rgba(67, 199, 205, 0.15);
}

.form-input::placeholder {
  color: #a0aec0;
}

.input-icon-wrapper {
  position: relative;
}

.input-icon-wrapper .form-input {
  padding-left: 48px;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-muted);
}

/* Selection Cards */
.selection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.selection-card {
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.selection-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.selection-card.selected {
  border-color: var(--accent-cyan);
  background: linear-gradient(135deg, rgba(67, 199, 205, 0.1), rgba(67, 199, 205, 0.05));
  box-shadow: 0 4px 12px rgba(67, 199, 205, 0.2);
}

.selection-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.selection-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.selection-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Service Cards */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow);
}

.service-card.selected {
  border-color: var(--accent-cyan);
  background: linear-gradient(135deg, rgba(67, 199, 205, 0.1), rgba(67, 199, 205, 0.05));
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--bubble-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
}

.service-info {
  flex: 1;
}

.service-info h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.service-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.service-meta {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  font-size: 0.75rem;
}

.service-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
}

.service-price {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-blue);
}

/* Extra Services */
.extra-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.extra-card:hover {
  border-color: var(--accent-cyan);
}

.extra-card.selected {
  border-color: var(--accent-cyan);
  background: linear-gradient(135deg, rgba(67, 199, 205, 0.1), rgba(67, 199, 205, 0.05));
}

.extra-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.extra-card.selected .extra-checkbox {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

.extra-checkbox svg {
  width: 16px;
  height: 16px;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.extra-card.selected .extra-checkbox svg {
  opacity: 1;
}

.extra-info {
  flex: 1;
}

.extra-info h3 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.extra-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.extra-price {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--primary-blue);
}

/* Date Time Selection */
.calendar-container {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.calendar-nav {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bubble-light);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.calendar-nav:hover {
  background: var(--accent-cyan);
  color: var(--white);
}

.calendar-nav svg {
  width: 20px;
  height: 20px;
}

.calendar-month {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  border: none;
  background: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.calendar-day:hover:not(:disabled) {
  background: var(--bubble-light);
}

.calendar-day.selected {
  background: var(--accent-cyan);
  color: var(--white);
  font-weight: 600;
}

.calendar-day:disabled {
  color: #cbd5e1;
  cursor: not-allowed;
}

.calendar-day.sunday-disabled {
  color: #cbd5e1;
  background: #f8fafc;
  text-decoration: line-through;
}

.calendar-day.other-month {
  color: #cbd5e1;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.time-slot {
  padding: 12px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s ease;
}

.time-slot:hover {
  border-color: var(--accent-cyan);
}

.time-slot.selected {
  border-color: var(--accent-cyan);
  background: var(--accent-cyan);
  color: var(--white);
}

/* Summary Section */
.summary-section {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}

.summary-section h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-section h3 svg {
  width: 20px;
  height: 20px;
  color: var(--accent-cyan);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.summary-value {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0 0;
  margin-top: 8px;
  border-top: 2px solid var(--accent-cyan);
}

.summary-total .summary-label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.summary-total .summary-value {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem;
  color: var(--primary-blue);
}

/* Continue Button */
.continue-btn {
  width: 100%;
  padding: 16px;
  background: var(--accent-cyan);
  color: var(--white);
  border: none;
  border-radius: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(67, 199, 205, 0.3);
}

.continue-btn:hover {
  background: var(--accent-yellow);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 199, 79, 0.4);
}

.continue-btn:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Subtotal Bar */
.subtotal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 14px;
  margin-top: 20px;
  box-shadow: var(--shadow);
}

.subtotal-info span {
  display: block;
}

.subtotal-info .duration {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.subtotal-info .price {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-blue);
}

/* Background Bubbles */
.bg-bubbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.bg-bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--bubble-light);
  opacity: 0.4;
}

.bg-b1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
  animation: float 8s ease-in-out infinite;
}

.bg-b2 {
  width: 150px;
  height: 150px;
  bottom: 100px;
  left: -40px;
  animation: float 10s ease-in-out infinite 2s;
}

.bg-b3 {
  width: 100px;
  height: 100px;
  bottom: -30px;
  right: 20%;
  animation: float 7s ease-in-out infinite 1s;
}

/* Floating Soap Bubbles for Booking Flow */
.booking-floating-bubbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.booking-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(212, 238, 247, 0.5) 40%, 
    rgba(168, 216, 234, 0.3) 100%);
  box-shadow: 
    inset -3px -3px 10px rgba(255, 255, 255, 0.4),
    inset 3px 3px 10px rgba(168, 216, 234, 0.2),
    0 0 15px rgba(168, 216, 234, 0.2);
  animation: bookingBubbleFloat 15s ease-in-out infinite;
}

.booking-bubble::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 20%;
  width: 25%;
  height: 25%;
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, transparent 70%);
  border-radius: 50%;
}

.bb-1 { width: 40px; height: 40px; left: 5%; animation-delay: 0s; }
.bb-2 { width: 25px; height: 25px; right: 8%; animation-delay: 3s; }
.bb-3 { width: 35px; height: 35px; left: 15%; animation-delay: 6s; }
.bb-4 { width: 20px; height: 20px; right: 20%; animation-delay: 2s; }
.bb-5 { width: 30px; height: 30px; left: 3%; animation-delay: 8s; }
.bb-6 { width: 22px; height: 22px; right: 5%; animation-delay: 4s; }

@keyframes bookingBubbleFloat {
  0% {
    bottom: -60px;
    opacity: 0;
    transform: translateX(0) scale(0.8);
  }
  10% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.5;
    transform: translateX(30px) scale(1);
  }
  90% {
    opacity: 0.3;
  }
  100% {
    bottom: 110%;
    opacity: 0;
    transform: translateX(-20px) scale(0.9);
  }
}

/* ==================== CONFIRMATION SCREEN ==================== */
#confirmation-screen {
  background: linear-gradient(135deg, var(--bg-light) 0%, #e8f4f8 100%);
  overflow: hidden;
}

#confirmation-screen.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirmation-container {
  text-align: center;
  padding: 40px;
  position: relative;
  z-index: 10;
}

.success-animation {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
}

.checkmark-circle {
  width: 100px;
  height: 100px;
  animation: scaleIn 0.5s ease-out;
}

.checkmark {
  width: 100%;
  height: 100%;
}

.checkmark circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark path {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.success-title {
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
}

.success-logo-img {
  width: 380px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.success-tagline {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.success-message {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  display: inline-block;
}

.new-booking-btn {
  padding: 14px 32px;
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.new-booking-btn:hover {
  background: var(--accent-yellow);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 199, 79, 0.4);
}

/* Celebration Bubbles */
.celebration-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.celeb-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(212, 238, 247, 0.6) 40%, 
    rgba(168, 216, 234, 0.4) 100%);
  box-shadow: 
    inset -4px -4px 12px rgba(255, 255, 255, 0.5),
    inset 4px 4px 12px rgba(168, 216, 234, 0.3),
    0 0 20px rgba(168, 216, 234, 0.3);
  animation: celebBubbleRise 8s ease-out infinite;
}

.celeb-bubble::before {
  content: '';
  position: absolute;
  top: 12%;
  left: 18%;
  width: 30%;
  height: 30%;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, transparent 70%);
  border-radius: 50%;
}

.cb-1 { width: 50px; height: 50px; left: 5%; animation-delay: 0s; }
.cb-2 { width: 35px; height: 35px; left: 15%; animation-delay: 0.5s; }
.cb-3 { width: 45px; height: 45px; left: 25%; animation-delay: 1s; }
.cb-4 { width: 30px; height: 30px; left: 35%; animation-delay: 0.3s; }
.cb-5 { width: 55px; height: 55px; left: 50%; animation-delay: 0.8s; }
.cb-6 { width: 40px; height: 40px; left: 60%; animation-delay: 1.2s; }
.cb-7 { width: 25px; height: 25px; left: 70%; animation-delay: 0.2s; }
.cb-8 { width: 48px; height: 48px; left: 80%; animation-delay: 0.7s; }
.cb-9 { width: 32px; height: 32px; left: 90%; animation-delay: 1.5s; }
.cb-10 { width: 38px; height: 38px; left: 10%; animation-delay: 2s; }
.cb-11 { width: 28px; height: 28px; left: 45%; animation-delay: 2.5s; }
.cb-12 { width: 42px; height: 42px; left: 75%; animation-delay: 3s; }

@keyframes celebBubbleRise {
  0% {
    bottom: -80px;
    opacity: 0;
    transform: translateX(0) scale(0.5) rotate(0deg);
  }
  15% {
    opacity: 0.9;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translateX(40px) scale(1.1) rotate(10deg);
  }
  75% {
    opacity: 0.5;
    transform: translateX(-30px) scale(0.95) rotate(-5deg);
  }
  100% {
    bottom: 120%;
    opacity: 0;
    transform: translateX(20px) scale(0.8) rotate(15deg);
  }
}

/* Happy Dog Container */
.happy-dog-container {
  margin: 20px auto 30px;
  animation: dogBounce 2s ease-in-out infinite;
}

.happy-dog {
  width: 180px;
  height: 160px;
}

@keyframes dogBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Dog sparkle animations */
.sparkle {
  animation: sparkleShine 1.5s ease-in-out infinite;
}

.sparkle-1 { animation-delay: 0s; }
.sparkle-2 { animation-delay: 0.5s; }
.sparkle-3 { animation-delay: 1s; }

@keyframes sparkleShine {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Dog bubbles animation */
.dog-bubble {
  animation: dogBubbleFloat 3s ease-in-out infinite;
}

.db-1 { animation-delay: 0s; }
.db-2 { animation-delay: 0.4s; }
.db-3 { animation-delay: 0.8s; }
.db-4 { animation-delay: 1.2s; }
.db-5 { animation-delay: 1.6s; }

@keyframes dogBubbleFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-8px) scale(1.1);
    opacity: 0.9;
  }
}

/* Blink animation for dog eyes */
.blink-eye {
  opacity: 0;
  animation: blinkEyes 4s ease-in-out infinite;
}

@keyframes blinkEyes {
  0%, 45%, 55%, 100% {
    opacity: 0;
  }
  48%, 52% {
    opacity: 1;
  }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .home-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    gap: 40px;
  }

  .home-content {
    max-width: 100%;
  }

  .logo {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.4rem;
  }

  .hero-dog {
    max-width: 350px;
    height: 300px;
  }

  .cta-button {
    margin: 0 auto;
  }
}

@media (max-width: 500px) {
  .logo {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .description {
    font-size: 1rem;
  }

  .selection-grid {
    grid-template-columns: 1fr;
  }

  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }

  .progress-steps {
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-bottom: 10px;
  }

  .step-pill {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .step-name {
    display: none;
  }

  .step-pill.active .step-name,
  .step-pill.completed .step-name {
    display: inline;
  }
}

/* Booking Footer */
.booking-footer {
  padding: 20px;
  text-align: center;
  margin-top: auto;
}

.terms-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}

.terms-link:hover {
  color: var(--accent-cyan);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.terms-link svg {
  width: 16px;
  height: 16px;
}

/* Textarea */
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s ease;
  background: var(--white);
  resize: vertical;
  min-height: 100px;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 4px rgba(67, 199, 205, 0.15);
}

.form-textarea::placeholder {
  color: #a0aec0;
}

/* Terms and Conditions Checkbox */
.terms-checkbox-container {
  margin: 20px 0;
  padding: 16px;
  background: var(--bubble-light);
  border-radius: 12px;
}

.terms-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.terms-checkbox {
  display: none;
}

.terms-checkbox-custom {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--accent-cyan);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background: var(--white);
}

.terms-checkbox-custom::after {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--accent-cyan);
  border-radius: 3px;
  transform: scale(0);
  transition: transform 0.2s ease;
}

.terms-checkbox:checked + .terms-checkbox-custom::after {
  transform: scale(1);
}

.terms-checkbox:checked + .terms-checkbox-custom {
  border-color: var(--accent-cyan);
  background: rgba(67, 199, 205, 0.1);
}

.terms-text {
  flex: 1;
}

.terms-text a {
  color: var(--accent-cyan);
  text-decoration: underline;
  font-weight: 500;
}

.terms-text a:hover {
  color: var(--primary-blue);
}

/* Service Type Cards */
.service-type-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.service-type-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 2px solid var(--bubble-medium);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.service-type-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(67, 199, 205, 0.15);
}

.service-type-card.selected {
  border-color: var(--accent-cyan);
  background: linear-gradient(135deg, rgba(67, 199, 205, 0.08), rgba(67, 199, 205, 0.02));
}

.service-type-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--bubble-light), var(--bubble-medium));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-type-icon svg {
  stroke: var(--accent-cyan);
}

.service-type-info {
  flex: 1;
}

.service-type-info h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.service-type-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-type-badge {
  position: absolute;
  top: -8px;
  right: 12px;
  background: var(--accent-yellow);
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ==================== INFO GRID - 2x2 CENTERED BLOCK ==================== */
.info-grid-wrapper {
  padding: 40px 24px;
  display: flex;
  justify-content: center;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  width: 100%;
}

.grid-cell {
  min-height: 320px;
}

.grid-image {
  overflow: hidden;
}

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

.grid-services {
  background: var(--accent-yellow);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.grid-about {
  background: var(--accent-cyan);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.grid-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #ffffff;
  opacity: 0.7;
  display: block;
  margin-bottom: 2px;
}

.grid-subtitle.light {
  color: var(--accent-yellow);
  opacity: 1;
}

.grid-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.grid-title.light {
  color: var(--white);
}

.services-list {
  margin-bottom: 20px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.service-number {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff !important;
  opacity: 0.4;
  min-width: 32px;
}

.service-info {
  flex: 1;
}

.service-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff !important;
  margin: 0 0 1px 0;
}

.service-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: #ffffff !important;
  opacity: 0.7;
  margin: 0;
}

.grid-cta {
  display: inline-block;
  background: var(--accent-cyan);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  align-self: flex-start;
}

.grid-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.grid-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--white);
  opacity: 0.75;
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.grid-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.grid-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
  width: fit-content;
}

.grid-btn.primary {
  background: var(--accent-yellow);
  color: var(--text-dark);
  border: 2px solid var(--accent-yellow);
}

.grid-btn.primary:hover {
  background: #ffffff;
  color: var(--text-dark);
  border-color: #ffffff;
}

.grid-btn.secondary {
  background: transparent;
  color: var(--accent-yellow);
  border: 2px solid var(--accent-yellow);
}

.grid-btn.secondary:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
  
  .grid-cell {
    min-height: 280px;
  }
  
  .grid-image:first-child {
    order: 1;
  }
  
  .grid-services {
    order: 2;
  }
  
  .grid-about {
    order: 3;
  }
  
  .grid-image:last-child {
    order: 4;
  }
  
  .grid-title {
    font-size: 1.6rem;
  }
}

/* ==================== CONTACT & LOCATION SECTION ==================== */
.contact-location-section {
  width: 100%;
  background: var(--accent-cyan);
  position: relative;
  z-index: 10;
}

.contact-location-container {
  display: flex;
  width: 100%;
  min-height: 350px;
}

.contact-map {
  flex: 1;
  min-height: 350px;
  background: #e8f4f8;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 350px;
}

.contact-info-side {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 50px;
  width: 100%;
  max-width: 600px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-cyan);
}

.contact-details h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.contact-details p {
  font-size: 0.85rem;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

.contact-details a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-details a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.contact-logo {
  margin-top: 10px;
}

.contact-logo-img {
  width: 200px;
  height: auto;
}

/* Contact Section Responsive */
@media (max-width: 900px) {
  .contact-location-container {
    flex-direction: column;
  }
  
  .contact-map {
    min-height: 300px;
  }
  
  .contact-info-side {
    padding: 30px 20px;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px 30px;
  }
}

@media (max-width: 600px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-info-item {
    justify-content: flex-start;
  }
  
  .contact-logo-img {
    width: 160px;
  }
}
