* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) rgba(255, 127, 80, 0.1);
}

/* Webkit Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 127, 80, 0.1);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    45deg,
    var(--color-primary-dark),
    var(--color-primary)
  );
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

.hero-section,
.menu-section,
.about-section,
.contact-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100vh;
}

/* ====================================
   CONTACT SECTION - MODERN REDESIGN
   ==================================== */

.contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Section Title */
.contact-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 700;
  text-align: center;
}

.contact-title i {
  color: var(--color-primary);
  font-size: 2.2rem;
}

.contact-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

/* Row 1: Phone and Email Cards (2 Columns) */
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 50px 0 40px 0;
}

.contact-info-card {
  background: white;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 127, 80, 0.1);
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 127, 80, 0.15);
  border-color: var(--color-primary);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 127, 80, 0.3);
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(255, 127, 80, 0.4);
}

.contact-text h3 {
  font-size: 1.1rem;
  color: var(--color-text);
  margin: 0 0 8px 0;
  font-weight: 600;
  font-family: var(--font-heading);
}

.contact-text p {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.contact-text a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

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

/* Row 2: Location Section (Full Width) */
.contact-location-section {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 127, 80, 0.1);
  transition: all 0.3s ease;
}

.contact-location-section:hover {
  box-shadow: 0 8px 30px rgba(255, 127, 80, 0.12);
}

.location-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 127, 80, 0.1);
}

.location-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 127, 80, 0.3);
}

.location-text {
  flex: 1;
  text-align: left;
}

.location-text h3 {
  font-size: 1.1rem;
  color: var(--color-text);
  margin: 0 0 8px 0;
  font-weight: 600;
  font-family: var(--font-heading);
  line-height: 1.2;
  text-align: left;
}

.location-text p {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 127, 80, 0.1);
  transition: all 0.3s ease;
}

.map-container:hover {
  box-shadow: 0 6px 25px rgba(255, 127, 80, 0.15);
  border-color: var(--color-primary);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 15px;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-title i {
    font-size: 1.8rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  /* Stack cards vertically on mobile */
  .contact-info-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0 30px 0;
  }

  .contact-info-card {
    padding: 25px 20px;
  }

  .contact-icon,
  .location-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .contact-text h3,
  .location-text h3 {
    font-size: 1rem;
  }

  .contact-text p,
  .location-text p {
    font-size: 0.95rem;
  }

  .contact-location-section {
    padding: 25px 20px;
  }

  .location-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .map-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 50px 10px;
  }

  .contact-title {
    font-size: 1.75rem;
    gap: 0.75rem;
  }

  .contact-subtitle {
    font-size: 0.95rem;
  }

  .contact-info-card {
    padding: 20px 15px;
    flex-direction: column;
    text-align: center;
  }

  .contact-icon,
  .location-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .location-header {
    flex-direction: column;
    text-align: center;
  }

  .contact-location-section {
    padding: 20px 15px;
  }

  .map-container {
    height: 250px;
  }
}
