/* Import common styles */
@import url("common.css");

/* Additional CSS Variables for Location Page */
:root {
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --gradient: linear-gradient(135deg, var(--accent) 0%, #44a0ff 100%);
}

/* Home Page Specific Styles */

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 3rem;
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  background-image: url("../assets/images/home_hero.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(26, 26, 26, 0.9) 50%,
    rgba(26, 26, 26, 0.1) 100%
  );
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
  padding: 3rem;
  animation: heroContentFadeIn 1.2s ease-out;
}

/* Hero Content Animations */
@keyframes heroContentFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLabelSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroTitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSubtitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCtaSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 50px;
  font-size: 0.85rem;
  color: white;
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(44, 90, 160, 0.3);
  animation: heroLabelSlideIn 0.8s ease-out 0.2s both;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  animation: heroTitleFadeIn 1s ease-out 0.4s both;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.8;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: heroSubtitleFadeIn 1s ease-out 0.6s both;
  white-space: nowrap;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: heroCtaSlideUp 1s ease-out 0.8s both;
}

.hero-cta .btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-cta .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.hero-cta .btn-primary:hover::before {
  left: 100%;
}

.hero-cta .btn-primary:hover {
  background: #1e4380;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44, 90, 160, 0.4);
}

.hero-cta .btn-primary:active {
  transform: translateY(0);
  transition: transform 0.1s;
}

.hero-cta .btn-primary.scrolling {
  animation: scrollPulse 1s ease-in-out;
}

@keyframes scrollPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
  }
}

.hero-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn-secondary:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Stats Section */
.stats {
  padding: 4rem 3rem;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

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

/* Features Section */
.features {
  padding: 6rem 3rem;
  background: var(--bg-secondary);
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Products Section */
.products {
  padding: 6rem 3rem;
  background: var(--bg-primary);
  scroll-margin-top: 90px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
  overflow: hidden;
  background: transparent;
  height: 300px;
}

.product-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.product-card:hover .product-card-inner {
  transform: rotateY(180deg);
}

.product-front,
.product-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}

.product-front {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.product-back {
  background: var(--accent);
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
}

.product-image {
  width: 100%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
}

.product-image img {
  max-width: 80%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(20%);
  border-radius: 12px;
}

.product-category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.5rem;
  text-align: center;
}

.product-title {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.product-back .product-category {
  color: rgba(255, 255, 255, 0.8);
}

.product-back .product-title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.product-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  color: var(--accent);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.product-cta:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(4px);
}

/* Mobile: disable flip on touch devices */
@media (hover: none) {
  .product-card:active .product-card-inner {
    transform: rotateY(180deg);
  }
}

/* Home Page Responsive */
@media (max-width: 1024px) {
  .hero {
    background-position: center center;
  }

  .hero-content {
    max-width: 500px;
    padding: 2.5rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

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

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

@media (max-width: 768px) {
  .hero {
    padding: 2rem 1.5rem;
    background-position: center center;
    background-size: cover;
  }

  .hero-content {
    max-width: 100%;
    padding: 2rem;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .stats,
  .features,
  .products {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .features-grid,
  .products-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 1rem;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

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

  .stat-value {
    font-size: 2rem;
  }
}

/* Location Page Styles */
.location-card {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 3rem;
  transition: transform 0.3s, box-shadow 0.3s;
  color: var(--text-primary);
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.location-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  background-image: url("../assets/images/home_hero.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: white;
  padding: 4rem 3rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.location-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(26, 26, 26, 0.9) 50%,
    rgba(26, 26, 26, 0.1) 100%
  );
  pointer-events: none;
}

.location-header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.location-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: iconPulse 2s infinite;
}

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

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

.location-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.location-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 0;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.location-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.decoration-line {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1px;
}

.decoration-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes iconPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
}

.location-body {
  padding: 3rem;
}

/* Map Section */
.map-section {
  margin-bottom: 3rem;
}

.map-section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 15px;
  border: 1px solid var(--border);
}

.map-section-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-section-icon i {
  font-size: 1.5rem;
  color: white;
}

.map-section-text {
  text-align: left;
}

.map-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--text-primary);
}

.map-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}

.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 지도 바로가기 버튼들 */
.map-shortcuts {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  justify-content: center;
  flex-wrap: wrap;
}

.map-shortcut-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}

.map-shortcut-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.map-shortcut-btn.naver-map {
  background: linear-gradient(135deg, #03c75a 0%, #00a651 100%);
  color: white;
}

.map-shortcut-btn.naver-map:hover {
  background: linear-gradient(135deg, #00a651 0%, #008a44 100%);
  border-color: #00a651;
  color: white;
}

.map-shortcut-btn.kakao-map {
  background: linear-gradient(135deg, #fee500 0%, #fdd835 100%);
  color: #3c1e1e;
}

.map-shortcut-btn.kakao-map:hover {
  background: linear-gradient(135deg, #fdd835 0%, #fbc02d 100%);
  border-color: #fdd835;
  color: #3c1e1e;
}

.map-shortcut-btn i {
  font-size: 1.1rem;
}

.map-placeholder {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.map-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

/* Address Section */
.address-section {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 3rem;
}

.address-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-align: center;
}

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

.address-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.address-item:hover {
  transform: translateY(-2px);
}

.address-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.address-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.address-item a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.address-item a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* Contact Section */
.contact-section {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
}

.contact-section .contact-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-item {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: var(--bg-secondary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-item .contact-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contact-details p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

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

.contact-details a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cta-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cta-icon i {
  font-size: 1.5rem;
  color: white;
}

.cta-text {
  text-align: left;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 0;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--accent);
  border: 2px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-weight: 700;
}

.cta-buttons .btn-primary:hover {
  background: var(--accent-light);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-weight: 700;
}

.cta-buttons .btn-secondary:hover {
  background: white;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Location Page Responsive */
@media (max-width: 768px) {
  .location-header {
    padding: 2rem 1.5rem;
  }

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

  .location-body {
    padding: 2rem 1.5rem;
  }

  .contact-section {
    padding: 2rem 1.5rem;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .address-details {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .location-header-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .location-text {
    text-align: center;
  }

  .location-title {
    font-size: 2.2rem;
  }

  .location-subtitle {
    font-size: 1.1rem;
  }

  .location-icon {
    width: 70px;
    height: 70px;
  }

  .location-icon i {
    font-size: 1.8rem;
  }

  .map-section-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }

  .map-section-text {
    text-align: center;
  }

  .map-title {
    font-size: 1.6rem;
  }

  .map-subtitle {
    font-size: 0.9rem;
  }

  .map-section-icon {
    width: 45px;
    height: 45px;
  }

  .map-section-icon i {
    font-size: 1.3rem;
  }

  .cta-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cta-text {
    text-align: center;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .cta-subtitle {
    font-size: 1.1rem;
  }

  .cta-icon {
    width: 50px;
    height: 50px;
  }

  .cta-icon i {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .location-header {
    padding: 3rem 2rem 2rem;
  }

  .location-title {
    font-size: 1.8rem;
  }

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

  .location-icon {
    width: 60px;
    height: 60px;
  }

  .location-icon i {
    font-size: 1.5rem;
  }

  .decoration-line {
    width: 40px;
  }

  .map-section-header {
    padding: 1rem;
  }

  .map-title {
    font-size: 1.4rem;
  }

  .map-subtitle {
    font-size: 0.85rem;
  }

  .map-section-icon {
    width: 40px;
    height: 40px;
  }

  .map-section-icon i {
    font-size: 1.1rem;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

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

  .cta-icon {
    width: 45px;
    height: 45px;
  }

  .cta-icon i {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .location-title {
    font-size: 1.8rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

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