* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

ul {
  list-style: none;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.btn-secondary:hover {
  background: #007bff;
  color: white;
  transform: translateY(-2px);
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav-hours {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 1rem;
  gap: 0.5rem;
}

.hours-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 123, 255, 0.1);
  padding: 0.6rem 1.1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #333;
  border: 1px solid rgba(0, 123, 255, 0.2);
  transition: all 0.3s ease;
}

.hours-indicator i {
  color: #007bff;
  font-size: 0.8rem;
}

.hours-text {
  font-weight: 500;
  white-space: nowrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.open {
  background: #28a745;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.3);
}

.status-dot.closed {
  background: #dc3545;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.3);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #007bff;
}

.nav-phone {
  background: #007bff;
  color: white !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-phone:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.hero {
  padding: 180px 0 60px;
  background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
  display: flex;
  align-items: center;
  width: 100%;
  overflow-x: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.hero-content {
  width: 100%;
  box-sizing: border-box;
}

.hero-logo {
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
}

.hero-logo-img {
  max-height: 120px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.hero-logo-img:hover {
  transform: scale(1.05);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-icon {
  font-size: 6rem;
  color: #007bff;
  opacity: 0.8;
  animation: float 3s ease-in-out infinite;
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.prices-display {
  padding: 40px 0;
  background: white;
}

.price-category {
  margin-bottom: 40px;
}

.price-category h2 {
  color: #007bff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.price-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  padding: 1.25rem 1.5rem;
  margin: 0;
  background: white;
  color: #007bff;
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 3px solid #007bff;
}

.price-category-header:hover {
  background: #f8f9ff;
  color: #0056b3;
  border-bottom-color: #0056b3;
}

.toggle-icon {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-height: 2000px;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease;
  opacity: 1;
}

.price-grid.collapsed {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
}

.services {
  padding: 80px 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.service-card ul {
  text-align: left;
}

.service-card li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}

.about {
  padding: 80px 0;
  background: #f8f9ff;
}

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

.about-text h2 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature i {
  font-size: 2rem;
  color: #007bff;
  width: 60px;
  flex-shrink: 0;
}

.feature h4 {
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.feature p {
  color: #666;
  margin: 0;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-icon {
  font-size: 6rem;
  color: #007bff;
  opacity: 0.8;
}

.contact {
  padding: 80px 0;
  background: #f8f9ff;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: #007bff;
  width: 30px;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-item h4 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #666;
  margin: 0;
}

.opening-hours p {
  margin-bottom: 0.25rem;
}

.opening-hours-note {
  margin-top: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid #eee;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #007bff;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #007bff;
  transform: translateY(-2px);
}

.social-media-contact {
  border-top: 1px solid #eee;
  padding-top: 1rem;
  margin-top: 1rem;
}

.social-links-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.social-links-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #007bff;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.social-links-contact a:hover {
  background: #f8f9fa;
  color: #0056b3;
  transform: translateX(5px);
}

.social-links-contact a i {
  font-size: 1.1em;
  width: 20px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  text-align: center;
  color: #666;
}

.service-card,
.contact-form {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(2) {
  animation-delay: 0.1s;
}

.service-card:nth-child(3) {
  animation-delay: 0.2s;
}

.service-card:nth-child(4) {
  animation-delay: 0.3s;
}

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

.nav-link.active {
  color: #007bff;
  font-weight: 600;
}

.page-header {
  padding: 100px 0 30px;
  margin-top: 80px;
  background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
}

.price-info {
  margin-top: 2rem;
}

.price-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 123, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  color: #007bff;
  font-weight: 500;
}

.model-selector {
  margin: 2rem 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.model-dropdown {
  width: 100%;
  padding: 15px 20px;
  font-size: 1.1rem;
  border: 2px solid #007bff;
  border-radius: 8px;
  background: white;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23007bff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.model-dropdown:hover {
  border-color: #0056b3;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.model-dropdown:focus {
  outline: none;
  border-color: #0056b3;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.price-display-area {
  min-height: 200px;
  margin: 2rem 0;
}

.no-selection {
  text-align: center;
  padding: 40px 20px;
  color: #999;
}

.no-selection i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #ddd;
}

.no-selection p {
  font-size: 1rem;
  margin: 0;
}

.selected-model-prices {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

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

.selected-model-prices h2 {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  margin: 0;
  padding: 1rem 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}

.price-table {
  padding: 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}

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

.price-row:hover {
  background: #f8f9ff;
}

.price-row .service {
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
}

.price-row .price {
  font-weight: 700;
  color: #007bff;
  font-size: 1.05rem;
}

.price-section {
  padding: 60px 0;
  border-bottom: 1px solid #f0f0f0;
}

.price-section:last-of-type {
  border-bottom: none;
}

.price-section h2 {
  color: #1a1a1a;
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.price-section h2 i {
  color: #007bff;
}

.price-tables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.price-table {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.price-table:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.price-table h3 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f8f9ff;
}

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

.price-item span:first-child {
  color: #333;
  font-weight: 500;
  flex: 1;
}

.price-item span:last-child {
  color: #007bff;
  font-weight: 600;
  white-space: nowrap;
  margin-left: 1rem;
}

.price-item .free {
  color: #28a745;
  font-weight: 700;
}

.price-info-section {
  padding: 35px 0;
  background: #f8f9ff;
}

.price-info-section h2 {
  text-align: center;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
  font-size: 1.4rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.info-item {
  text-align: center;
  padding: 0.85rem;
  background: white;
  border-radius: 7px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.info-item i {
  font-size: 1.7rem;
  color: #007bff;
  margin-bottom: 0.45rem;
}

.info-item h3 {
  color: #1a1a1a;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.info-item p {
  color: #666;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
}

.price-notes {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.price-notes h3 {
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.price-notes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-notes li {
  color: #666;
  position: relative;
}

.prices-display {
  padding: 30px 0;
  background: white;
}

.samsung-section {
  background: #f8f9ff;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #007bff;
  display: inline-block;
  width: 100%;
}

.price-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1rem;
}

.price-category {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.price-category:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.price-category h2:not(.price-category-header),
.price-category h3:not(.price-category-header) {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  margin: 0;
  padding: 0.8rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

.price-category h3.price-category-header {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  margin: 0;
  padding: 0.8rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  padding: 1.25rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.price-grid .price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border-left: 4px solid transparent;
}

.price-grid .price-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 123, 255, 0.15);
  border-left-color: #007bff;
}

.price-grid .service-name {
  font-weight: 500;
  color: #333;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.price-grid .service-name::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #28a745;
  font-size: 0.8rem;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.price-grid .price {
  font-weight: 700;
  color: #007bff;
  font-size: 1rem;
  white-space: nowrap;
  margin-left: 0.75rem;
  padding: 0.35rem 0.8rem;
  background: rgba(0, 123, 255, 0.08);
  border-radius: 6px;
}

.price-notes li {
  padding-left: 1.5rem;
}

.price-notes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}

.contact-page {
  padding-top: 80px;
}

.page-header {
  background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
  color: #333;
  padding: 80px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.page-header p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.breadcrumb a {
  color: #007bff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.breadcrumb a:hover {
  opacity: 0.7;
}

.breadcrumb span {
  color: #666;
  opacity: 0.8;
}

.contact-item h3 {
  color: #007bff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  margin-bottom: 0.5rem;
}

.contact-note {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

.map-link {
  color: #007bff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.map-link:hover {
  color: #0056b3;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

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

.day {
  font-weight: 500;
}

.time {
  color: #007bff;
  font-weight: 600;
}

.contact-form h2 {
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-form p {
  color: #666;
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.nav-link.active {
  color: #007bff;
  font-weight: 600;
}

.announcement-box {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #007bff;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.announcement-box.show {
  opacity: 1;
  transform: translateY(0);
}

.announcement-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.announcement-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  background: #007bff;
}

.announcement-text {
  flex: 1;
}

.announcement-text h4 {
  margin: 0 0 0.5rem 0;
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 600;
}

.announcement-text p {
  margin: 0 0 0.5rem 0;
  color: #666;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.announcement-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.announcement-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Announcement Types */
.announcement-info {
  border-left-color: #007bff;
}

.announcement-info .announcement-icon {
  background: #007bff;
}

.announcement-warning {
  border-left-color: #ffc107;
  background: #fff9e6;
}

.announcement-warning .announcement-icon {
  background: #ffc107;
  color: #333;
}

.announcement-success {
  border-left-color: #28a745;
  background: #f0f9f0;
}

.announcement-success .announcement-icon {
  background: #28a745;
}

.announcement-offer {
  border-left-color: #dc3545;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
}

.announcement-offer .announcement-icon {
  background: #dc3545;
}

.announcement-offer .announcement-text h4 {
  color: #dc3545;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.scroll-to-top:hover {
  background: #0056b3;
  transform: translateY(0) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:active {
  transform: translateY(0) scale(0.95);
}

.legal-page {
  padding: 120px 0 60px;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  min-height: 100vh;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
  color: #007bff;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #007bff;
}

.legal-content h2 {
  color: #333;
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 4px solid #007bff;
}

.legal-content h3 {
  color: #555;
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.legal-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.legal-content strong {
  color: #333;
  font-weight: 600;
}

.legal-content ul {
  margin: 1rem 0 1.5rem 0;
  padding-left: 0;
}

.legal-content ul li {
  color: #555;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.legal-content ul li::before {
  content: "→";
  position: absolute;
  left: 0.5rem;
  color: #007bff;
  font-weight: bold;
}

.legal-content > p:first-of-type {
  font-size: 0.95rem;
  color: #666;
  background: #f8f9fa;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border-left: 3px solid #007bff;
}

.special-hours-notice {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.3rem 0;
  margin-top: 0.3rem;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  line-height: 1.3;
}

.special-hours-notice.show {
  opacity: 1;
}

.special-hours-icon {
  font-size: 0.95rem;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

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

.special-hours-title {
  font-weight: 600;
  font-size: 0.85rem;
}

.special-hours-message {
  font-size: 0.85rem;
  font-weight: 500;
}

.special-hours-date {
  font-size: 0.8rem;
  font-style: italic;
  opacity: 0.8;
  font-weight: 500;
}

.special-hours-info {
  color: #004085;
}

.special-hours-info .special-hours-icon,
.special-hours-info .special-hours-title {
  color: #007bff;
}

.special-hours-warning {
  color: #663c00;
}

.special-hours-warning .special-hours-icon,
.special-hours-warning .special-hours-title {
  color: #ff9800;
}

.special-hours-closed {
  color: #721c24;
}

.special-hours-closed .special-hours-icon,
.special-hours-closed .special-hours-title {
  color: #f44336;
}

/* ============================================
   RESPONSIVE STYLES - Mobile & Tablet
   ============================================ */

/* Desktop Large (1200px and down) */
@media (max-width: 1200px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet (1024px and down) */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Mobile Large (768px and down) */
@media (max-width: 768px) {
  /* HTML & General */
  html {
    scroll-padding-top: 80px;
  }

  /* Navigation */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hours-indicator {
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
  }

  /* Hero Section */
  .hero {
    padding: 120px 0 40px;
    min-height: auto;
  }

  .hero-container {
    padding: 0 10px;
    max-width: 100%;
  }

  .hero-content {
    max-width: 100%;
    overflow: hidden;
    padding: 0 5px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
    padding: 0 5px;
  }

  .hero-buttons {
    justify-content: center;
    width: 100%;
    padding: 0 5px;
  }

  .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
    width: 100%;
    max-width: 300px;
  }

  .hero-logo {
    margin-bottom: 1rem;
    padding: 0;
    width: 100%;
  }

  .hero-logo-img {
    max-height: 80px;
    max-width: 90%;
    height: auto;
  }

  .hero-image {
    display: none;
  }

  /* Sections */
  .services {
    padding: 60px 0;
  }

  .about {
    padding: 60px 0;
  }

  .pricing {
    padding: 60px 0;
  }

  .contact {
    padding: 60px 0;
  }

  .about-icon {
    font-size: 4rem;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

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

  .service-card {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Price Grid */
  .price-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 0.5rem;
  }

  .price-grid .price-item {
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
  }

  .price-grid .service-name {
    font-size: 0.85rem;
    gap: 0.4rem;
  }

  .price-grid .service-name::before {
    font-size: 0.75rem;
    width: 16px;
    height: 16px;
  }

  .price-grid .price {
    font-size: 0.9rem;
    padding: 0.3rem 0.7rem;
  }

  /* Page Headers */
  .page-header {
    padding: 90px 0 20px;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .page-header p {
    font-size: 0.9rem;
  }

  /* Price Info */
  .price-note {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    font-size: 0.85rem;
  }

  .price-tables {
    grid-template-columns: 1fr;
  }

  .price-categories {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .price-section {
    padding: 20px 0;
  }

  .price-info-section {
    padding: 30px 0;
  }

  .price-category h2,
  .price-category h3 {
    font-size: 1rem;
    padding: 0.7rem 0.8rem;
  }

  .prices-display {
    padding: 20px 0;
  }

  /* Contact Page */
  .breadcrumb {
    font-size: 0.8rem;
  }

  /* Announcement Box */
  .announcement-box {
    margin-top: 1rem;
    padding: 0.8rem;
    margin-left: 5px;
    margin-right: 5px;
    width: calc(100% - 10px);
    max-width: calc(100% - 10px);
    box-sizing: border-box;
  }

  .announcement-content {
    gap: 0.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .announcement-text {
    width: 100%;
    overflow: hidden;
    padding: 0 5px;
  }

  .announcement-text h4 {
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .announcement-text p {
    font-size: 0.85rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .announcement-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  /* Scroll to Top */
  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 1.1rem;
  }

  /* Legal Pages */
  .legal-page {
    padding: 100px 0 40px;
  }

  .legal-content {
    padding: 2rem 1.5rem;
    border-radius: 8px;
  }

  .legal-content h1 {
    font-size: 2rem;
  }

  .legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }

  .legal-content h3 {
    font-size: 1.1rem;
  }

  /* Special Hours */
  .special-hours-notice {
    font-size: 0.8rem;
    padding: 0.2rem 0;
    gap: 0.5rem;
  }

  .special-hours-icon {
    font-size: 0.85rem;
  }

  .special-hours-title,
  .special-hours-message {
    font-size: 0.8rem;
  }

  .special-hours-date {
    font-size: 0.75rem;
  }
}

/* Mobile Medium (480px and down) */
@media (max-width: 480px) {
  /* General */
  .container {
    padding: 0 15px;
  }

  /* Hero */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .service-card {
    padding: 1.5rem;
  }

  /* Info Grid */
  .info-grid {
    grid-template-columns: 1fr;
  }

  /* Scroll to Top */
  .scroll-to-top {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
    font-size: 1rem;
  }

  /* Legal Content */
  .legal-content {
    padding: 1.5rem 1rem;
  }

  .legal-content h1 {
    font-size: 1.75rem;
  }

  .legal-content h2 {
    font-size: 1.3rem;
  }

  /* Special Hours */
  .hours-indicator {
    padding: 0.45rem 0.8rem;
    font-size: 0.8rem;
  }

  .special-hours-notice {
    font-size: 0.75rem;
    padding: 0.2rem 0;
    gap: 0.4rem;
  }

  .special-hours-icon {
    font-size: 0.8rem;
  }

  .special-hours-title,
  .special-hours-message {
    font-size: 0.75rem;
  }

  .special-hours-date {
    font-size: 0.7rem;
  }
}
