/* 
  Annabelle Thaï Massage - Premium Redesign 
  Theme: Light Blue & Orange 3D
*/

:root {
  --primary: #0ea5e9; /* Sky 500 */
  --primary-light: #e0f2fe; /* Sky 100 */
  --primary-dark: #0369a1; /* Sky 700 */
  --accent: #f97316; /* Orange 500 */
  --accent-light: #fff7ed; /* Orange 50 */
  --white: #ffffff;
  --bg-color: #f8fafc;
  --text-main: #0f172a; /* Slate 900 */
  --text-muted: #475569; /* Slate 600 */
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --font-main: 'Inter', 'Kanit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* --- 3D Background Atmosphere --- */
.bg-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, var(--primary-light), #fff);
}

.blob {
  position: absolute;
  width: 600px;
  height: 600px;
  filter: blur(100px);
  border-radius: 50%;
  opacity: 0.4;
  animation: float 20s infinite alternate ease-in-out;
}

.blob-a {
  background: var(--primary);
  top: -100px;
  right: -100px;
}

.blob-b {
  background: var(--accent);
  bottom: -100px;
  left: -100px;
  animation-delay: -5s;
  width: 500px;
  height: 500px;
}

.blob-c {
  background: #7dd3fc;
  top: 40%;
  left: 30%;
  width: 400px;
  height: 400px;
  animation-delay: -10s;
}

.grid-glow {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(14, 165, 233, 0.1) 1px, transparent 0);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 100px) scale(1.1); }
  100% { transform: translate(-50px, 50px) scale(0.9); }
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: var(--glass);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 700;
  font-size: 1.25rem;
}

.brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switch {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.05);
  padding: 6px 18px;
  border-radius: 99px;
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  backdrop-filter: none;
}

.lang-switch:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.lang-switch .globe-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.lang-selector {
  position: relative;
}

.lang-switch span {
  font-size: 1.1rem;
  color: #1a1a1a;
  line-height: 1;
  text-transform: uppercase;
}

.lang-switch .chevron-icon {
  width: 16px;
  height: 16px;
  color: #718096;
  transition: transform 0.3s ease;
}

.lang-selector.open .chevron-icon {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 0.5rem;
  list-style: none;
  min-width: 80px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  border: 1px solid rgba(0,0,0,0.05);
}

.lang-selector.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option-btn {
  display: block;
  width: 100%;
  padding: 0.6rem 1rem;
  text-align: center;
  background: none;
  border: none;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 500;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-option-btn:hover {
  background: #f7fafc;
  color: var(--primary);
}

.lang-option-btn.active {
  color: var(--primary);
  font-weight: 700;
  background: #eff6ff;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #f97316 !important; /* Vibrant Orange */
  color: #fff !important;
  box-shadow: 0 6px 0 #c2410c, 0 12px 24px rgba(249, 115, 22, 0.4) !important;
  border: none !important;
  position: relative;
  top: 0;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  top: 2px;
  box-shadow: 0 4px 0 #c2410c, 0 8px 16px rgba(249, 115, 22, 0.3) !important;
}

.btn-primary:active {
  top: 6px;
  box-shadow: none !important;
}

.btn-outline {
  background: var(--glass);
  border: 1px solid var(--primary);
  color: var(--primary);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-soft {
  background: var(--accent);
  color: #ffffff;
  border: 2px solid var(--accent);
  border-radius: 99px;
  padding: 0.6rem 1.8rem;
  transition: all 0.3s ease;
}

.btn-soft:hover {
  background: #ffffff;
  color: var(--accent);
}

/* --- Banner Hero Section --- */
.banner-hero {
  position: relative;
  height: 110vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/Banner1.png') center/cover no-repeat;
  z-index: 1;
}

.banner-overlay {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
  text-align: left;
}

.hero-eyebrow {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.banner-overlay h1 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}

.banner-overlay p {
  font-size: 1.5rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.banner-btn {
  margin-top: 2rem;
  padding: 1rem 3rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff9966, #ff5e62);
  color: #fff !important;
  text-decoration: none;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 10px 20px rgba(255, 94, 98, 0.3);
}

.banner-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(255, 94, 98, 0.4);
}

.banner-alert {
  margin-top: 1.5rem !important;
  font-size: 1rem;
  opacity: 0.8 !important;
}

.banner-bottom {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.8;
  z-index: 10;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .brand {
    gap: 0.5rem;
  }
  .brand-text {
    display: none;
  }
  .lang-switch {
    padding: 4px 10px;
    gap: 6px;
  }
  .lang-switch span {
    font-size: 0.85rem;
  }
  .lang-switch .globe-icon {
    width: 16px;
    height: 16px;
  }
  .banner-hero {
    height: auto;
    aspect-ratio: 16/9;
    align-items: center;
    background-color: transparent;
  }
  .banner-bg {
    background-size: contain;
    background-position: center;
  }
  .desktop-only { display: none !important; }
  .cta-banner {
    flex-direction: column !important;
    padding: 2.5rem 1.5rem;
    text-align: center;
    gap: 2rem;
  }
  .cta-content h2 { font-size: 1.75rem; line-height: 1.4; text-wrap: balance; }
  .benefit-grid { justify-content: center; }
}

/* --- Sections --- */
.section {
  padding: 6rem 0;
}

.section-head {
  margin-bottom: 4rem;
}

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

.section-tag {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.info-card {
  padding: 2.5rem;
  border-radius: 24px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.info-card h3 {
  margin-bottom: 1rem;
  color: var(--accent);
}

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

.price-card {
  padding: 3rem 2rem;
  border-radius: 32px;
  background: white;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  background: linear-gradient(135deg, #f97316, #c2410c);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.price-card.featured .price-time {
  color: var(--primary-light);
}

.price-time {
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1rem;
}

.price-value {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

/* --- Policy & Alert Redesign --- */
.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: stretch;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .policy-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.policy-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.2rem 1.75rem;
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.02);
}

.policy-item:hover {
  transform: translateX(15px);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.2);
}

.policy-item:hover .policy-icon-circle {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.policy-icon-circle {
  width: 44px;
  height: 44px;
  background: #fff7ed;
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.policy-item span {
  font-size: 1rem;
  font-weight: 500;
}

.policy-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding-right: 20px;
  padding-bottom: 20px;
}

.policy-main-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 160px 40px 40px 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.alert-card {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  padding: 2.5rem;
  border-radius: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  max-width: 420px;
  z-index: 10;
  border: 1px solid rgba(255, 82, 82, 0.1);
}

.alert-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.alert-badge {
  background: #ff5252;
  color: #fff;
  padding: 0.4rem 1.2rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(255, 82, 82, 0.3);
}

.alert-icon-red {
  width: 32px;
  height: 32px;
  background: #ffe5e5;
  color: #ff5252;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.alert-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #c92a2a;
}

.alert-card p {
  color: #495057;
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Reviews --- */
.review-slider-container {
  overflow: hidden;
  width: 100%;
  margin-top: 2rem;
  cursor: grab;
}

.review-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-page {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1rem 0;
}

@media (max-width: 1024px) {
  .review-page {
    grid-template-columns: 1fr;
  }
}

.review-card {
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
}

.stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.quote-icon {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.review-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  min-height: 80px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.5rem;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

.user-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pagination-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.dot {
  width: 12px;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--accent);
  width: 24px;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  padding: 2rem;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--glass);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: var(--accent);
  transform: rotate(90deg);
}

/* --- Floating Contact --- */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
  transform: translateX(100px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-contact.active {
  transform: translateX(0);
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  padding: 10px;
  border: 2px solid white;
}

.float-btn img, .float-btn svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.float-btn.line { background: #06c755; }
.float-btn.whatsapp { background: #25d366; }
.float-btn.phone { background: var(--primary); }

.float-btn:hover {
  transform: scale(1.15) translateX(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

@media (max-width: 640px) {
  .floating-contact {
    right: 15px;
    bottom: 30px;
  }
  .float-btn {
    width: 45px;
    height: 45px;
    padding: 9px;
  }
}

/* --- Premium CTA Banner --- */
.cta-banner-wrap {
  margin: 4rem auto 6rem;
}

.cta-banner {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border-radius: 40px;
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.1);
}

.cta-banner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?q=80') center/cover no-repeat;
  mask-image: linear-gradient(to left, black 60%, transparent);
  opacity: 0.15;
}

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

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2.5rem;
  font-size: 1.25rem;
}

.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.benefit-item {
  background: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.benefit-item svg {
  color: var(--accent);
}

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

.btn-cta-book {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  padding: 2rem 3rem;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 15px 35px rgba(234, 88, 12, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.btn-cta-book:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 45px rgba(234, 88, 12, 0.5);
}

.btn-cta-book .main-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: 800;
}

.btn-cta-book .sub-text {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 400;
}

/* --- Contact Info Section (New Design) --- */
.contact-header {
  margin-bottom: 3rem;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.contact-header p {
  color: #718096;
  font-size: 1.125rem;
  line-height: 1.6;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fefcbf;
  color: #d69e2e;
  padding: 0.4rem 1.2rem;
  border-radius: 99px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-badge svg {
  color: #d69e2e;
}

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

.contact-card-new {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.contact-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-wrap img, .icon-wrap svg {
  width: 36px;
  height: 36px;
}

.sub-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-card-new h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.contact-card-new p {
  color: #718096;
  font-size: 1rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.btn-card {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

/* LINE Specifics */
.line-card .icon-wrap { background-color: #e6f7e6; }
.line-card .sub-title { color: #00B900; }
.line-card .btn-card { background-color: #00B900; color: #ffffff; }
.line-card .btn-card:hover { background-color: #009900; }

/* WhatsApp Specifics */
.whatsapp-card .icon-wrap { background-color: #e8f9ed; }
.whatsapp-card .sub-title { color: #25D366; }
.whatsapp-card .btn-card { background-color: #e8f9ed; color: #25D366; }
.whatsapp-card .btn-card:hover { background-color: #d1f4db; }

/* Phone Specifics */
.phone-card .icon-wrap { background-color: #e6f0fa; color: #3182ce; }
.phone-card .sub-title { color: #3182ce; }
.phone-card .btn-card { background-color: #e6f0fa; color: #3182ce; }
.phone-card .btn-card:hover { background-color: #d1e5f8; }

.loc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.loc-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.loc-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loc-card.green .loc-icon { background-color: #e6f7e6; color: #00B900; }
.loc-card.green .loc-title { color: #00B900; }

.loc-card.blue .loc-icon { background-color: #e6f0fa; color: #3182ce; }
.loc-card.blue .loc-title { color: #3182ce; }

.loc-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.loc-details strong {
  display: block;
  font-size: 1.25rem;
  color: #1a202c;
  margin-bottom: 0.25rem;
}

.loc-details p {
  color: #718096;
  font-size: 0.95rem;
  margin: 0;
}

.contact-footer-text {
  text-align: center;
  color: #718096;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
  h1 { font-size: 2.75rem; }
  .hero-banner-full { height: 50vh; }
  .cards-grid, .pricing-grid, .review-grid, .contact-grid, .loc-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .policy-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { padding-top: 4rem; }
  .hero-banner-full { height: 40vh; min-height: 300px; }
  .hero-copy { padding: 1rem 0; border-radius: 0; }
  h1 { font-size: 2.25rem; }
  .contact-card { padding: 2rem; }
  .contact-meta { flex-direction: column; gap: 1rem; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .hero-notes { flex-direction: column; gap: 1rem; }
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* --- Utilities --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* --- Profile Section --- */
.profile-section {
  background: linear-gradient(to right, var(--bg-color), var(--primary-light));
  border-radius: 32px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  box-shadow: var(--shadow-md);
  margin: 4rem 0;
}
.profile-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 768px) {
  .profile-section {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }
}

/* --- Process Steps --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.process-step {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.3s ease;
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.step-number {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
