:root {
  --navy: #0d2b45;
  --navy-light: #1a4060;
  --silver: #c8cdd3;
  --charcoal: #222222;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif; color: var(--charcoal); background: var(--gray-50); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }

.metal-gradient {
  background-color: var(--navy);
  background-image: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}
.metal-gradient.wave-pattern {
  background-color: var(--navy);
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8cdd3' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
@media (min-width: 1024px) { .header-inner { height: 5rem; } }
.logo-link { display: flex; align-items: center; gap: 0.75rem; }
.logo-link img { height: 2.5rem; width: auto; }
@media (min-width: 1024px) { .logo-link img { height: 3rem; } }
.logo-text { display: block; color: var(--white); font-weight: 600; font-size: 0.75rem; line-height: 1.3; }
@media (min-width: 640px) { .logo-text { font-size: 0.875rem; } }

.main-nav { display: none; gap: 0.25rem; }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.main-nav a { padding: 0.5rem 0.75rem; border-radius: 0.25rem; font-size: 0.875rem; font-weight: 500; color: var(--silver); transition: 0.2s; }
.main-nav a:hover, .main-nav a.active { color: var(--white); background: rgb(255 255 255 / 0.15); }

.header-actions { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .header-actions { display: flex; } }
.btn-wa,
.btn-header-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-weight: 700;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  transition: 0.2s;
  white-space: nowrap;
}
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1da851; color: #fff; }
.btn-header-book { background: #F5C518; color: var(--navy); }
.btn-header-book:hover { background: #ffdb4d; color: var(--navy); }
.btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 0.5rem 1rem; background: var(--silver); color: var(--navy); font-weight: 700; border-radius: 0.25rem; border: none; cursor: pointer; transition: 0.2s; font-size: 0.875rem; }
.btn-primary:hover { background: var(--white); }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 2rem; border: 2px solid var(--silver); color: var(--white); font-weight: 700; border-radius: 0.5rem; transition: 0.2s; }
.btn-outline:hover { background: rgb(255 255 255 / 0.1); }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; border-radius: 0.5rem; }

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: rgb(255 255 255 / 0.08);
  border: 2px solid var(--silver);
  border-radius: 0.375rem;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s;
}
.menu-toggle:hover { background: rgb(255 255 255 / 0.15); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.mobile-nav { display: none; border-top: 1px solid rgb(255 255 255 / 0.1); padding: 1rem; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 0.875rem 1rem; color: var(--silver); font-size: 1.0625rem; font-weight: 500; border-radius: 0.25rem; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--white); background: rgb(255 255 255 / 0.15); }
.mobile-nav .btn-wa,
.mobile-nav .btn-header-book {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 1.1875rem;
  border-radius: 0.5rem;
  border: 2px solid #222;
  color: #222;
}
.mobile-nav .btn-wa:hover {
  color: #222;
  background: #1da851;
}
.mobile-nav .btn-header-book:hover {
  color: #222;
  background: #ffdb4d;
}

/* Hero main video */
.hero-main-video {
  width: 100%;
  background: var(--navy);
  line-height: 0;
}
.hero-main-video iframe,
.hero-main-video .hero-video-lazy {
  display: block;
  width: 100%;
  height: 56.25vw;
  max-height: 85vh;
  border: 0;
}
.hero-main-video .hero-video-lazy {
  position: relative;
  height: auto;
  aspect-ratio: 16 / 9;
  max-height: 85vh;
  cursor: pointer;
}
.hero-main-video .hero-video-lazy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Intro banner (below hero video) */
.intro-banner {
  position: relative;
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
  background: url('../images/web/fish002.jpg') center / cover no-repeat;
  overflow: hidden;
}
.intro-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(13 43 69 / 0.72);
  z-index: 0;
}
.intro-banner .container { position: relative; z-index: 1; max-width: 56rem; }
.intro-banner h1 { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 900; margin-bottom: 1.5rem; line-height: 1.2; color: var(--white); }
.intro-banner p { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--silver); margin-bottom: 2.5rem; }
.intro-banner .btn-outline { color: var(--white); border-color: var(--silver); }
.intro-banner .btn-outline:hover { background: rgb(255 255 255 / 0.15); color: var(--white); }
.hero-btns { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .hero-btns { flex-direction: row; } }

/* Legacy hero (unused on index) */
.hero { position: relative; min-height: 85vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-poster { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.hero-video { position: absolute; top: 50%; left: 50%; z-index: 1; width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.77vh; transform: translate(-50%, -50%); border: 0; pointer-events: none; }
.hero-overlay { position: absolute; inset: 0; z-index: 2; background: rgb(13 43 69 / 0.7); }
.hero-video.is-playing + .hero-poster,
.hero-bg.video-playing .hero-poster { opacity: 0; transition: opacity 0.6s; }
.hero-content { position: relative; z-index: 10; text-align: center; color: var(--white); padding: 5rem 1rem; max-width: 56rem; }
.hero-content h1 { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 900; margin-bottom: 1.5rem; line-height: 1.2; }
.hero-content p { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--silver); margin-bottom: 2.5rem; }

/* Sections */
.section { padding: 4rem 0; }
.section-white { background: var(--white); }
.section-gray { background: var(--gray-50); }
.section-title { font-size: 1.875rem; font-weight: 700; color: var(--navy); text-align: center; margin-bottom: 1rem; }
.section-subtitle { color: var(--gray-600); text-align: center; margin-bottom: 3rem; }

/* Grid */
.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 2rem; }
.grid-4 { display: grid; gap: 2rem; grid-template-columns: repeat(2, 1fr); }
.grid-6 { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } .grid-6 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .grid-6 { grid-template-columns: repeat(6, 1fr); } }

/* Cards */
.card { background: var(--white); border-radius: 0.75rem; overflow: hidden; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); transition: box-shadow 0.3s; }
.card:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1); }
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.5rem; }
.card-body h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.card-body p { color: var(--gray-600); }

/* Advantage */
.advantage-item { text-align: center; padding: 1rem; }
.advantage-icon { width: 3rem; height: 3rem; margin: 0 auto 0.75rem; border-radius: 50%; background: rgb(13 43 69 / 0.1); display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 1.25rem; }

/* Process */
.process-section {
  position: relative;
  background: url('../images/web/banner001.jpg') center / cover no-repeat;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(13 43 69 / 0.72);
  z-index: 0;
}
.process-section .container { position: relative; z-index: 1; }
.process-section .section-title { color: var(--white); }
.process-step { text-align: center; }
.process-num { width: 3.5rem; height: 3.5rem; margin: 0 auto 1rem; border-radius: 50%; background: var(--silver); color: var(--navy); font-weight: 900; font-size: 1.25rem; display: flex; align-items: center; justify-content: center; }
.process-step h3 { color: var(--white); font-weight: 700; margin-bottom: 0.25rem; }
.process-step p { color: var(--silver); font-size: 0.875rem; }

/* YouTube */
.youtube-lazy { position: relative; aspect-ratio: 16/9; background: var(--navy); border-radius: 0.5rem; overflow: hidden; cursor: pointer; }
.youtube-lazy img { width: 100%; height: 100%; object-fit: cover; }
.youtube-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgb(0 0 0 / 0.3); transition: 0.2s; }
.youtube-lazy:hover .youtube-play { background: rgb(0 0 0 / 0.4); }
.youtube-play span { width: 4rem; height: 4rem; background: #dc2626; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; transition: transform 0.2s; }
.youtube-lazy:hover .youtube-play span { transform: scale(1.1); }
.youtube-lazy iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Blog card */
.blog-card .card-img { aspect-ratio: 4/3; background: var(--gray-200); }
.blog-tag { font-size: 0.75rem; font-weight: 500; padding: 0.125rem 0.5rem; border-radius: 0.25rem; background: rgb(13 43 69 / 0.1); color: var(--navy); }
.blog-meta { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.blog-date { font-size: 0.75rem; color: var(--gray-400); }
.read-more { color: var(--navy); font-weight: 600; font-size: 0.875rem; margin-top: 0.75rem; display: inline-block; }

/* FAQ */
.faq-item { border: 1px solid var(--gray-200); border-radius: 0.5rem; margin-bottom: 1rem; overflow: hidden; }
.faq-item summary { padding: 1rem 1.5rem; font-weight: 600; color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "▼"; font-size: 0.75rem; color: var(--silver); transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem 1rem; color: var(--gray-600); }

/* CTA */
.cta-section {
  position: relative;
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
  background: url('../images/web/webimg005.jpg') center / cover no-repeat;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(13 43 69 / 0.72);
  z-index: 0;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 1rem; color: var(--white); }
.cta-section p { color: var(--silver); font-size: 1.125rem; margin-bottom: 2rem; }
.cta-section .btn-outline { color: var(--white); border-color: var(--silver); }
.cta-section .btn-outline:hover { background: rgb(255 255 255 / 0.15); color: var(--white); }
.cta-btns { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .cta-btns { flex-direction: row; } }

/* Page hero */
.page-hero {
  position: relative;
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
  background: url('../images/web/webimg004.jpg') center / cover no-repeat;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(13 43 69 / 0.72);
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--white); }
.page-hero p { color: var(--silver); font-size: 1.125rem; }

/* Gallery */
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2.5rem; }
.filter-btn { padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; border: 1px solid var(--gray-200); background: var(--white); color: var(--navy); cursor: pointer; transition: 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.masonry-grid { column-count: 1; column-gap: 1rem; }
@media (min-width: 640px) { .masonry-grid { column-count: 2; } }
@media (min-width: 1024px) { .masonry-grid { column-count: 3; } }
.masonry-item { break-inside: avoid; margin-bottom: 1rem; cursor: pointer; border-radius: 0.5rem; overflow: hidden; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); position: relative; }
.masonry-item img { width: 100%; transition: transform 0.3s; }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item .overlay { position: absolute; inset: 0; background: rgb(13 43 69 / 0); display: flex; align-items: flex-end; transition: 0.2s; }
.masonry-item:hover .overlay { background: rgb(13 43 69 / 0.4); }
.masonry-item .overlay span { color: white; font-size: 0.875rem; padding: 0.75rem; opacity: 0; transition: 0.2s; }
.masonry-item:hover .overlay span { opacity: 1; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 100; background: rgb(0 0 0 / 0.95); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-height: 85vh; max-width: 90vw; object-fit: contain; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: none; border: none; color: white; padding: 0.75rem; cursor: pointer; font-size: 2rem; }
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-caption { position: absolute; bottom: 1.5rem; color: white; text-align: center; width: 100%; font-size: 0.875rem; }
body.lightbox-open { overflow: hidden; }

/* Forms */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--navy); margin-bottom: 0.25rem; }
.form-group input:not([type="radio"]):not([type="checkbox"]),
.form-group select,
.form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--gray-200); border-radius: 0.5rem; font-size: 1rem; font-family: inherit; }
.form-group input:not([type="radio"]):not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 2px rgb(13 43 69 / 0.2); }
.form-card { background: var(--gray-50); padding: 2rem; border-radius: 0.75rem; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); }
.booking-section { max-width: 40rem; margin: 0 auto; }
.booking-form-wrap { width: 100%; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-row-2 { grid-template-columns: 1fr; } }
.btn-submit { width: 100%; padding: 1rem; font-size: 1rem; }
.booking-form.hidden { display: none; }
.radio-group { display: flex; flex-direction: column; gap: 0.5rem; }
.radio-group label { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; min-height: 3rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: 0.5rem; cursor: pointer; font-weight: 500; color: var(--charcoal); white-space: nowrap; }
.radio-group label:hover { border-color: var(--navy); }
.radio-group input[type="radio"] { width: 1.125rem; height: 1.125rem; margin: 0; flex-shrink: 0; accent-color: var(--navy); }
.success-msg { display: none; text-align: center; padding: 2rem; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 0.75rem; margin-top: 2rem; }
.success-msg.show { display: block; }
.success-msg h2 { color: #166534; font-size: 1.5rem; margin-bottom: 0.5rem; }
.success-msg p { color: #15803d; }

/* Footer */
.site-footer { background: var(--charcoal); color: var(--silver); margin-top: auto; }
.footer-grid { display: grid; gap: 2rem; padding: 3rem 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-grid h3 { color: var(--white); font-weight: 600; margin-bottom: 1rem; }
.footer-grid a { color: var(--gray-400); font-size: 0.875rem; display: block; margin-bottom: 0.5rem; transition: 0.2s; }
.footer-grid a:hover { color: var(--white); }
.footer-grid p { color: var(--gray-400); font-size: 0.875rem; line-height: 1.6; }
.footer-bottom { border-top: 1px solid #374151; padding: 1.5rem 0; text-align: center; font-size: 0.875rem; color: #6b7280; }

/* Float buttons */
.float-wa { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; width: 3.5rem; height: 3.5rem; background: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgb(0 0 0 / 0.3); transition: transform 0.2s; }
.float-wa:hover { transform: scale(1.1); }
.float-phone { position: fixed; bottom: 1.5rem; right: 6rem; z-index: 50; width: 3.5rem; height: 3.5rem; background: var(--navy); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgb(0 0 0 / 0.3); }
@media (min-width: 1024px) { .float-phone { display: none; } }

/* Blog article */
.article-content { max-width: 48rem; margin: 0 auto; padding: 4rem 1rem; }
.article-content h1 { font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.article-content img { border-radius: 0.5rem; margin: 1.5rem 0; }
.article-nav { display: flex; justify-content: space-between; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--gray-200); gap: 1rem; }
.article-nav a { color: var(--navy); font-size: 0.875rem; font-weight: 500; }
.article-nav a:hover { text-decoration: underline; }

/* Search & filter bar */
.toolbar { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .toolbar { flex-direction: row; } }
.search-input { flex: 1; padding: 0.75rem 1rem; border: 1px solid var(--gray-200); border-radius: 0.5rem; font-size: 1rem; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* Service blocks (single page) */
.service-block { display: grid; gap: 2.5rem; align-items: center; padding: 3rem 0; border-bottom: 1px solid var(--gray-200); }
.service-block:last-child { border-bottom: none; }
@media (min-width: 1024px) {
  .service-block { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .service-block-reverse .service-block-img { order: 2; }
  .service-block-reverse .service-block-content { order: 1; }
}
.service-block-img img { border-radius: 0.75rem; box-shadow: 0 10px 25px rgb(0 0 0 / 0.1); width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.service-block-content h2 { font-size: 1.75rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.service-short { font-weight: 600; color: var(--navy-light); margin-bottom: 1rem; }
.service-block-content > p { color: var(--gray-600); line-height: 1.8; margin-bottom: 1.25rem; }
.service-applicable { margin-bottom: 1.5rem; }
.service-applicable li { color: var(--gray-600); padding: 0.25rem 0; padding-left: 1.25rem; position: relative; }
.service-applicable li::before { content: "✓"; position: absolute; left: 0; color: var(--navy); font-weight: 700; }
.services-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.services-nav a { padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; background: var(--gray-50); color: var(--navy); border: 1px solid var(--gray-200); transition: 0.2s; }
.services-nav a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.text-center { text-align: center; }
.hidden { display: none !important; }
.two-col { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; align-items: center; } }
.sticky-img { position: sticky; top: 6rem; border-radius: 0.75rem; box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1); }
.map-embed { border-radius: 0.75rem; overflow: hidden; height: 16rem; margin-top: 2rem; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.contact-item { display: flex; gap: 1rem; padding: 1rem; background: var(--gray-50); border-radius: 0.5rem; margin-bottom: 1rem; transition: 0.2s; }
.contact-item:hover { background: var(--gray-200); }
.contact-icon { width: 3rem; height: 3rem; border-radius: 50%; background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.25rem; }
.branch-card { padding: 1rem; border: 1px solid var(--gray-200); border-radius: 0.5rem; margin-bottom: 1rem; }
.branch-card h3 { color: var(--navy); font-weight: 700; margin-bottom: 0.25rem; }
