body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom right, #d7ecfa, #a8cbed);
  min-height: 100vh;
}
header {
  background: linear-gradient(to bottom, #dbeafe, #d7ecfa);
  text-align: center;
  padding: 4rem 1rem 3rem 1rem;
}

header h1 {
  font-size: 3rem;
  color: #1e3a8a;
  margin-bottom: 0.25rem;
  font-weight: 800;
}

header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 1rem;
}

header p {
  max-width: 700px;
  margin: 1rem auto 2rem auto;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #374151;
}

.cta-button {
  background-color: #1e40af;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

.cta-button:hover {
  background-color: #3b82f6;
}

section {
  padding: 1.5rem 1.5rem 3rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.75rem;
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-title{
  font-size: 35px;
}

.contact-info{
  font-size: 25px;
}

.review, form {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.fade-divider {
  height: 80px;
  background: linear-gradient(to top, #a4c7de 0%, transparent 100%);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}
.review {
    background: white;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    cursor: default;
    border: 1px solid transparent;
}

.review h4 {
    margin: 0 0 0.25rem;
}
.review .stars {
    color: #fbbf24;
}
.review:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid #93c5fd;
}

form {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  max-width: 700px;
  margin: 0 auto;
}

form label {
  font-weight: 600;
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1e3a8a;
}

form input,
form textarea {
  width: 97%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #cbd5e0;
  border-radius: 0.5rem;
  transition: border-color 0.2s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

select {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #cbd5e0;
    border-radius: 0.5rem;
}
.submit-btn {
    margin-top: 1.5rem;
    background-color: #1e40af;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.image-fade-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: -60px;
  z-index: 2;
  height: 477px;
}

.image-fade {
  position: absolute;
  bottom: 12px;
  left: 0;
  height: 150px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #d7ecfa);
  pointer-events: none;
  z-index: 3;
}

.appliance-image {
  width: 100%;
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 58, 138, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-width: 1100px;
}

.modal h3 {
  margin-top: 0;
  color: #1e3a8a;
}

.modal h2 {
  margin-top: 0;
  color: #1e3a8a;
}

.modal p {
  color: #374151;
}

.modal .close-button {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: #1e3a8a;
  cursor: pointer;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.1rem;
  background: linear-gradient(to right, #dbeafe, #d7ecfa);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 64px;
}

.logo-img {
  height: 72px; 
  margin-top: -1px;
  object-fit: contain;
}

.quote-btn, .contact-btn, .submit-btn, .cta-button, .repairList-btn, .review-btn {
  background: linear-gradient(to right, #1e40af, #3b82f6);
  color: white;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
  position: relative;
  overflow: hidden;
}

.quote-btn:hover, .contact-btn:hover, .submit-btn:hover, .cta-button:hover, .repairList-btn:hover, .review-btn:hover {
  background: linear-gradient(to right, #2563eb, #60a5fa);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.35);
  transform: translateY(-1px);
}

.review-btn-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.nav-buttons {
  display: flex;
  gap: 0.75rem;
}

.close-btn, .chatbot-close {
  position: absolute;
  top: 5px;
  right: 25px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.quote-btn:active, .submit-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 10px rgba(30, 64, 175, 0.2);
}

.site-footer {
  background: linear-gradient(to right, #dbeafe, #d7ecfa);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
  font-family: 'Inter', sans-serif;
  color: #1e3a8a;
  border-top: 2px solid #cbd5e0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 1.5rem;
}

.footer-left,
.footer-right {
  flex: 1 1 300px;
  margin-bottom: 1.5rem;
}

.footer-left h4,
.footer-right h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.footer-left p {
  margin: 0.5rem 0;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-right {
  margin-left: auto; 
  flex: 0 0 auto;
  text-align: right; 
}

.social-icons {
  display: flex;
  gap: 1rem;
  font-size: 1.2rem;
}

.social-icons a {
  color: #1e3a8a;
  transition: transform 0.2s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #3b82f6;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
  border-top: 1px solid #cbd5e0;
  padding-top: 1rem;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.fade-in-section.visible {
  opacity: 1;
  transform: none;
}

.navbar h1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  background: linear-gradient(to right, #1e3a8a, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.appliance-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.appliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  align-items: center;
  padding: 0 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.appliance-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 1rem;
  width: 100%;
  max-width: 180px;
  transition: transform 0.2s ease;
}

.appliance-card img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}
.appliance-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e3a8a;
  margin: 0;
}

.appliance-card:hover {
  transform: translateY(-4px);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 2rem auto 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #1e3a8a;
  width: fit-content;
}

.sub-intro {
  display: flex;
  justify-self: center;
  color: #1e3a8a;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  width: fit-content;
  border-bottom: 2px solid #1e3a8a;
}

.sub-description {
  text-align: center;
  color: #475569;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Chatbot Floating Button */
#chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  padding: 14px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

#chatbot-toggle:hover {
  background-color: #0056b3;
}

/* Chatbot Container */
#chatbot-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 320px;
  max-height: 480px;
  background: #fff;
  border: none;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
  z-index: 999;
  overflow: hidden;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

#chatbot-container.hidden {
  display: none;
}

/* Header */
#chatbot-header {
  background: #007bff;
  color: white;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Message area */
#chatbot-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background: #f7f7f9;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Chat Bubbles */
.message {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 18px;
  line-height: 1.4;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.user-message {
  align-self: flex-end;
  background-color: #DCF8C6;
  color: #222;
  border-bottom-right-radius: 4px;
}

.bot-message {
  align-self: flex-start;
  background-color: #e9ecef;
  color: #333;
  border-bottom-left-radius: 4px;
}

#chatbot-form {
  padding: 12px 16px;
  background-color: #fff;
  border-top: 1px solid #ddd;
  width: 100%;
}

#chatbot-form input {
    width: calc(100% - 60px);
  padding: 14px 16px;
  font-size: 14px;
  border: none;
  border-radius: 20px;
  outline: none;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.3s ease-out 0.1s forwards;
}


@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#chatbot-form input:focus {
  background-color: #fff;
  box-shadow: 0 0 0 2px #007bff33;
}

#chatbot-form input::placeholder {
  color: #999;
}

#chatbot-form button:hover {
  background: #0056b3;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  margin: 0;
  line-height: 1;
  transition: color 0.3s ease;
  padding-top: 0.7rem;
}

.chatbot-close:hover {
  color: #ffdddd;
}

#faq-container .faq-button:hover {
  background-color: #e0e0e0;
}

#faq-container {
  padding: 12px 0px;
  background: #f9f9f9;
  border-radius: 10px;
  margin-top: -25px;
}

.chatbot-intro {
  background-color: #f0f4ff;
  border: 1px solid #d9e4ff;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
  text-align: left;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.chatbot-intro h4 {
  margin: 0 0 6px 0;
  font-size: 15px;
  font-weight: 600;
  color: #007bff;
}

.chatbot-intro p {
  margin: 0;
  font-size: 13px;
  color: #555;
}

.message {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.message-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.bot-message .message-wrapper {
  flex-direction: row;
}

.user-message .message-wrapper {
  justify-content: flex-end;
  flex-direction: row-reverse;
}

.bot-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  align-self: flex-end;
}

.message-bubble {
  background-color: #f1f5f9;
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 75%;
  word-wrap: break-word;
}


.user-message {
  align-self: flex-end;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.bot-message {
  align-self: flex-start;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.user-bubble {
  background-color: #3a8fa7;
  color: #ffffff;
  border-bottom-right-radius: 4px;
}

.bot-bubble {
  background-color: #f1f3f5;
  color: #333;
  border-bottom-left-radius: 4px;
}

#IceMachine{
    height: 120px;
}