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

/* Ngăn overflow ngang toàn bộ trang */
*, *::before, *::after {
  max-width: 100%;
}

/* Container chính không được vượt quá viewport */
.container, .container-fluid, section, div {
  max-width: 100vw;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f0a623 0%, #d9991a 100%);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(240,166,35,0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(240,166,35,0.6);
}

.back-to-top:active {
  transform: translateY(-2px);
}

body {
  font-family: "Roboto", sans-serif;
  /* Nền tattoo studio cao cấp: gradient xám mượt + texture nhẹ */
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #2a2a2a 100%);
  background-attachment: fixed;
  color: #e5e5e5;
  margin: 0;
  padding: 0;
  padding-top: 90px;
  font-size: 16px;
  overflow-x: hidden;
  /* Ngăn zoom và scroll ngang trên mobile */
  touch-action: pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: none;
}

html {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.015) 2px,
      rgba(255,255,255,0.015) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.015) 2px,
      rgba(255,255,255,0.015) 4px
    );
  pointer-events: none;
  z-index: 0;
}

/* HEADER */
.topbar {
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 72px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.topbar.transparent {
  background: rgba(26, 26, 26, 0.3);
  box-shadow: none;
}

.topbar.scrolled {
  background: rgba(26, 26, 26, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.logo-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-left: 8px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e5e5e5;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(240, 166, 35, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20px);
}

.topbar.scrolled .header-phone {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.header-phone:hover {
  color: #f0a623;
  background: rgba(240, 166, 35, 0.1);
  border-color: #f0a623;
}

.header-phone svg {
  stroke: currentColor;
  flex-shrink: 0;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e5e5e5;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
}

.header-contact:hover {
  color: #f0a623;
  background: rgba(240, 166, 35, 0.1);
}

.header-contact svg {
  stroke: currentColor;
}

.btn-booking-header {
  background: linear-gradient(135deg, #f0a623 0%, #d89520 100%);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(240, 166, 35, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
}

.topbar.scrolled .btn-booking-header {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.btn-booking-header:hover {
  background: linear-gradient(135deg, #d89520 0%, #c08518 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(240, 166, 35, 0.4);
  color: #fff !important;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav .nav-link {
  color: #e5e5e5;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: #f0a623;
  transition: transform 0.3s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: #f0a623;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Booking button highlight */
.btn-booking {
  background: linear-gradient(135deg, #f0a623 0%, #d89520 100%);
  color: #fff !important;
  padding: 10px 24px 10px 48px !important;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(240, 166, 35, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.btn-booking::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zM9 14H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm-8 4H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.btn-booking::after {
  display: none !important;
}

.btn-booking:hover {
  background: linear-gradient(135deg, #d89520 0%, #c08518 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(240, 166, 35, 0.4);
  color: #fff !important;
}

.nav-item {
  position: relative;
}

.nav-link-with-caret {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #d9991a;
  margin-top: 2px;
}

.has-dropdown .dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 140px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border-radius: 4px;
  padding: 8px 0;
  display: none;
  z-index: 100;
}

.has-dropdown .dropdown-menu a {
  display: block;
  padding: 8px 14px;
  color: #333;
  font-size: 14px;
}

.has-dropdown .dropdown-menu a:hover {
  background: #f5f5f5;
  color: #d9991a;
}

.has-dropdown.open .dropdown-menu {
  display: block;
}

.lang span {
  font-size: 14px;
  color: #e5e5e5;
  font-weight: 500;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("images/hero/hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-center {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.hero-logo-circle {
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #f0a623;
  box-shadow: 0 8px 32px rgba(240,166,35,0.4), 0 0 0 12px rgba(240,166,35,0.1);
  transition: all 0.4s ease;
}

.hero-logo-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 48px rgba(240,166,35,0.6), 0 0 0 16px rgba(240,166,35,0.15);
}

.hero-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-subtitle {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 10px;
  font-size: 36px;
  margin-bottom: 32px;
  font-weight: 600;
  text-shadow: 
    0 0 20px rgba(240, 166, 35, 0.8),
    0 0 40px rgba(240, 166, 35, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  animation: glitchIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-subtitle::before,
.hero-subtitle::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.hero-subtitle::before {
  animation: glitchBefore 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  text-shadow: -3px 0 rgba(255, 0, 0, 0.8);
}

.hero-subtitle::after {
  animation: glitchAfter 3s infinite;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  text-shadow: 3px 0 rgba(0, 255, 255, 0.8);
}

@keyframes glitchIn {
  0% {
    opacity: 0;
    transform: scale(0.8) rotateX(90deg);
    filter: blur(10px);
  }
  50% {
    transform: scale(1.05) rotateX(-5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateX(0deg);
    filter: blur(0);
  }
}

@keyframes glitchBefore {
  0%, 90%, 100% {
    opacity: 0;
    transform: translateX(0);
  }
  91% {
    opacity: 1;
    transform: translateX(-5px);
  }
  92% {
    opacity: 0;
    transform: translateX(5px);
  }
  93% {
    opacity: 1;
    transform: translateX(-3px);
  }
  94% {
    opacity: 0;
  }
}

@keyframes glitchAfter {
  0%, 90%, 100% {
    opacity: 0;
    transform: translateX(0);
  }
  91% {
    opacity: 1;
    transform: translateX(5px);
  }
  92% {
    opacity: 0;
    transform: translateX(-5px);
  }
  93% {
    opacity: 1;
    transform: translateX(3px);
  }
  94% {
    opacity: 0;
  }
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  background: transparent;
}

.social img {
  width: 48px !important;
  height: 48px !important;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.social:hover img {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.social-fb,
.social-ig,
.social-tt,
.social-wa,
.social-map {
  background: transparent;
}

.studio-info h1 {
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #f0a623;
}

.studio-info p {
  font-size: 15px;
  margin-bottom: 4px;
}

/* SECTION BELOW HERO */
/* Language Flags Only */
.language-flags {
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px;
  border-radius: 8px;
}

.lang-btn {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  opacity: 0.6;
  line-height: 1;
}

.lang-btn:hover {
  opacity: 1;
  background: rgba(240, 166, 35, 0.2);
  transform: scale(1.1);
}

.lang-btn.active {
  opacity: 1;
  background: rgba(240, 166, 35, 0.3);
  box-shadow: 0 2px 8px rgba(240, 166, 35, 0.3);
}

/* Hide Google Translate completely */
#google_translate_element {
  display: none !important;
}

/* Hide Google Translate branding */
.goog-te-banner-frame {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0 !important;
}

.goog-te-gadget img {
  display: none !important;
}

.goog-te-gadget-simple {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

body {
  top: 0 !important;
}

.section-title {
  background: #e5e5e5;
  padding: 30px 0;
  text-align: center;
}

.section-title h2 {
  font-size: 24px;
  letter-spacing: 2px;
}

.testimonials-title {
  margin-top: 0;
}

/* TATTOO STYLES SECTION */
.tattoo-styles-section {
  background: #f8f8f8;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.tattoo-styles-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.tattoo-styles-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 48px;
  text-transform: uppercase;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 20px;
}

.tattoo-styles-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #f0a623, transparent);
}

.tattoo-styles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.style-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.style-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(240,166,35,0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.style-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.style-card:hover::before {
  opacity: 1;
}

.style-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.style-card-image {
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  position: relative;
}

.style-card-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.style-card:hover .style-card-image::after {
  opacity: 1;
}

.style-card-meta {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  align-items: baseline;
  padding: 16px 18px;
  font-size: 14px;
  position: relative;
  z-index: 2;
}

.style-card-index {
  font-weight: 700;
  color: #f0a623;
  font-size: 16px;
}

.style-card-name {
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a1a1a;
}

.tattoo-styles-viewall {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.btn-view-all {
  padding: 8px 26px;
  border-radius: 999px;
  border: 1px solid #444;
  background: #fff;
  color: #444;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 1px;
}

.btn-view-all:hover {
  background: #444;
  color: #fff;
}

/* ADMIN STYLES */
.admin-body {
  font-family: "Roboto", sans-serif;
  background: #f5f5f5;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: #111;
  color: #fff;
}

.admin-header a {
  color: #f0a623;
  margin-left: 16px;
  text-decoration: none;
}

.admin-header a:hover {
  text-decoration: underline;
}

.admin-content {
  padding: 24px 32px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.admin-table th,
.admin-table td {
  border: 1px solid #ddd;
  padding: 8px 10px;
  font-size: 14px;
}

.admin-table th {
  background: #fafafa;
  text-align: left;
}

.admin-login-wrapper,
.admin-panel {
  max-width: 480px;
  margin: 40px auto;
  background: #fff;
  padding: 24px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.admin-login-wrapper h1,
.admin-panel h2 {
  margin-bottom: 16px;
}

.admin-login-form .form-group,
.admin-form .form-group {
  margin-bottom: 12px;
}

.admin-form .form-row,
.booking-form .form-row {
  display: flex;
  gap: 16px;
}

.admin-form .form-group label,
.admin-login-form .form-group label,
.booking-form .form-group label {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.admin-form input[type="text"],
.admin-form input[type="file"],
.admin-form select,
.admin-login-form input[type="text"],
.admin-login-form input[type="password"],
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="date"],
.booking-form textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.btn-primary {
  display: inline-block;
  padding: 8px 18px;
  background: #f0a623;
  color: #111;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary:hover {
  background: #d18b16;
}

.alert {
  padding: 10px 14px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 14px;
}

.alert-success {
  background: #e6f4ea;
  color: #1e7e34;
}

.alert-error {
  background: #fdecea;
  color: #b71c1c;
}

.booking-section {
  padding: 40px 16px;
  background: #f5f5f5;
}

.booking-container {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 24px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.booking-container h2 {
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-form .form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}

.booking-form .form-group {
  flex: 1;
}

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

.booking-section {
  scroll-margin-top: 90px;
}

@media (max-width: 640px) {
  .booking-form .form-row {
    flex-direction: column;
  }

  .booking-container {
    padding: 16px;
  }
}

/* HOME EXTRA SECTIONS */

.gallery-section {
  padding: 80px 16px;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.gallery-container {
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 16px;
}

.gallery-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f0a623, transparent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-title {
  margin-top: 12px;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  color: #555;
}

.awards-section {
  position: relative;
  padding: 80px 0;
  background: #ffffff;
}

.awards-container {
  max-width: 1120px;
  margin: 0 auto;
}

.awards-bg {
  margin-top: 12px;
  padding: 32px 20px;
  border-radius: 14px;
  background-image: url("images/awards/awards-bg.jpg");
  background-size: cover;
  background-position: center;
}

.section-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 48px;
  text-transform: uppercase;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 20px;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #f0a623, transparent);
}

.section-heading-light {
  color: #fff;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 300px));
  gap: 14px;
  justify-content: center;
  background: transparent;
}

.award-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.3);
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.award-image img {
  width: 100%;
  display: block;
}

.award-content {
  padding: 20px 24px 24px;
  font-size: 15px;
  line-height: 1.7;
}

.award-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.award-content p {
  color: #555;
  line-height: 1.7;
}

.testimonials-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #fff;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
}

.testimonials-overlay {
  display: none;
}

.testimonials-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-container {
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-stats {
  margin-top: 24px;
}

.rating-summary {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 16px 32px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}

.rating-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 8px;
}

.rating-stars .star {
  font-size: 24px;
  color: #f0a623;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.rating-text {
  font-size: 14px;
  color: #e5e5e5;
  margin: 0;
  font-weight: 500;
}


.testimonial-slider {
  position: relative;
  min-height: 400px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f0a623, #d9991a, #f0a623);
}

.testimonial-avatar {
  margin: 0 auto 24px;
  width: 60px;
  height: 60px;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 24px;
}

.testimonial-rating .star {
  font-size: 20px;
  color: #f0a623;
}

.testimonial-quote {
  font-style: italic;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #333;
  font-weight: 400;
  position: relative;
  padding: 0 20px;
}

.testimonial-quote::before {
  content: "\201C";
  position: absolute;
  left: -10px;
  top: -20px;
  font-size: 80px;
  color: #f0a623;
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-quote::after {
  content: "\201D";
  position: absolute;
  right: -10px;
  bottom: -40px;
  font-size: 80px;
  color: #f0a623;
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  font-weight: 700;
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 14px;
  color: #666;
  font-weight: 400;
}

.testimonial-nav {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.testimonial-arrow {
  background: rgba(240,166,35,0.3);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(240,166,35,0.5);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.testimonial-arrow:hover {
  background: rgba(240,166,35,0.8);
  border-color: #f0a623;
  transform: scale(1.1);
}

.testimonial-dots {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.testimonial-dot:hover {
  background: rgba(255,255,255,0.6);
  transform: scale(1.2);
}

.testimonial-dot.active {
  background: #f0a623;
  border-color: rgba(255,255,255,0.5);
  transform: scale(1.3);
}

.why-section {
  background: #f5f5f5;
  padding: 80px 16px;
  position: relative;
  z-index: 1;
}

.why-container {
  max-width: 1100px;
  margin: 0 auto;
}

.why-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.why-item:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.why-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.05);
}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: rgba(240,166,35,0.3);
}

.why-item h3 {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.why-item p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

/* SCROLL REVEAL SECTIONS */
.reveal-section {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-section.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.service-card-image .service-image-placeholder {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.service-card-image .service-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
}

.service-card-image:hover .service-image-placeholder img {
  transform: scale(1.1);
}

.service-card-content {
  padding: 32px 28px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.service-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.service-link {
  color: #f0a623;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-link:hover {
  color: #d89520;
  transform: translateX(5px);
}

/* Service CTA buttons */
.service-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn-service {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0a623 0%, #d89520 100%);
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(240, 166, 35, 0.3);
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-service:hover {
  background: linear-gradient(135deg, #d89520 0%, #c08518 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(240, 166, 35, 0.4);
  color: #fff !important;
}

.btn-service-outline {
  background: transparent;
  color: #f0a623 !important;
  border: 1px solid #f0a623;
  box-shadow: none;
}

.btn-service-outline:hover {
  background: rgba(240, 166, 35, 0.08);
  box-shadow: 0 4px 12px rgba(240, 166, 35, 0.25);
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: #fff;
}

.about-section .lead {
  font-size: 20px;
  color: #f0a623;
  font-weight: 600;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #555;
}

.feature-item svg {
  flex-shrink: 0;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f0a623 0%, #d89520 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(240, 166, 35, 0.3);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(240, 166, 35, 0.4);
}

.scroll-to-top svg {
  color: #fff;
}

/* TABLET OPTIMIZATION */
@media (max-width: 1024px) and (min-width: 769px) {
  body {
    padding-top: 80px;
    overflow-x: hidden;
  }
  
  .container,
  .container-fluid {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .topbar {
    padding: 12px 24px;
  }
  
  .logo-circle {
    width: 56px;
    height: 56px;
  }
  
  .brand-name {
    font-size: 18px;
  }
  
  /* Mobile menu for tablet */
  .navbar-collapse {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(42, 42, 42, 0.98) 100%);
    padding: 20px;
    border-radius: 16px;
    margin-top: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: none;
  }
  
  .navbar-collapse.collapsing {
    transition: height 0.15s ease-in-out;
    overflow: hidden;
  }
  
  .navbar-collapse.show {
    transition: none;
  }
  
  .main-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
  }
  
  .main-nav .nav-link {
    padding: 14px 20px;
    border-radius: 10px;
    text-align: center;
    background: transparent;
    color: #e5e5e5 !important;
    opacity: 1 !important;
  }
  
  .main-nav .nav-link:hover {
    background: rgba(240, 166, 35, 0.15);
    color: #f0a623 !important;
    animation: shake 0.5s ease;
  }
  
  .header-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding-top: 10px;
  }
  
  .header-phone {
    display: none !important;
  }
  
  .btn-booking-header {
    width: 100%;
    padding: 14px 20px;
    text-align: center;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
  }
  
  /* Hero tablet */
  .hero {
    min-height: 80vh;
  }
  
  .hero-logo-circle {
    width: 140px;
    height: 140px;
  }
  
  /* Services tablet */
  .services-section {
    padding: 60px 0;
  }
  
  .services-section .section-heading {
    font-size: 32px;
    margin-bottom: 32px;
  }
  
  .service-card-image .service-image-placeholder {
    height: 340px;
  }
  
  .service-card-image .service-image-placeholder img {
    object-fit: contain;
    object-position: center;
  }
  
  .service-card-content {
    padding: 28px 24px;
  }
  
  .service-card h3 {
    font-size: 22px;
  }
  
  .service-card p {
    font-size: 15px;
  }
  
  /* Service buttons tablet */
  .service-actions {
    gap: 10px;
  }
  
  .btn-service {
    padding: 11px 18px;
    font-size: 13px;
  }
  
  .btn-service-outline {
    padding: 11px 18px;
    font-size: 13px;
  }
  
  /* Tattoo styles tablet */
  .tattoo-styles-section {
    padding: 60px 0;
  }
  
  .tattoo-styles-heading {
    font-size: 32px;
    margin-bottom: 32px;
  }
  
  .style-card {
    height: 280px;
  }
  
  .style-card-meta {
    background: rgba(255, 255, 255, 0.95);
    padding: 16px 18px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
  }
  
  .style-card-index {
    font-size: 18px;
  }
  
  .style-card-name {
    font-size: 16px;
  }
  
  /* All sections */
  .stats-section,
  .awards-section,
  .testimonials-section,
  .instagram-section {
    padding: 60px 0;
  }
  
  .section-heading {
    font-size: 32px;
    margin-bottom: 32px;
  }
  
  .section-heading::after {
    width: 80px;
    height: 3px;
  }
  
  /* Instagram tablet */
  .instagram-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }
  
  .instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .instagram-item {
    height: 200px;
  }
  
  .instagram-cta {
    margin-top: 32px;
  }
  
  /* Stats tablet */
  .stat-number {
    font-size: 42px;
  }
  
  .stat-label {
    font-size: 15px;
  }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .topbar {
    padding: 10px 16px;
  }
  
  .logo-circle {
    width: 50px;
    height: 50px;
  }
  
  .brand-name {
    font-size: 15px;
  }
  
  .navbar-collapse {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(42, 42, 42, 0.98) 100%);
    padding: 20px;
    border-radius: 16px;
    margin-top: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: none;
  }
  
  .navbar-collapse.collapsing {
    transition: height 0.1s ease-in-out;
    overflow: hidden;
  }
  
  .navbar-collapse.show {
    transition: none;
  }
  
  .main-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
  }
  
  /* Language flags mobile */
  .language-flags {
    order: -1;
    margin-bottom: 16px;
    width: 100%;
    justify-content: center;
  }
  
  .lang-btn {
    font-size: 28px;
    padding: 6px 12px;
  }
  
  .main-nav .nav-link {
    padding: 14px 20px;
    border-radius: 10px;
    text-align: center;
    background: transparent;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    color: #e5e5e5 !important;
    opacity: 1 !important;
  }
  
  .main-nav .nav-link:hover {
    background: rgba(240, 166, 35, 0.15);
    color: #f0a623 !important;
    animation: shake 0.5s ease;
  }
  
  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
  }
  
  .header-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding-top: 10px;
  }
  
  .header-phone {
    display: none !important;
  }
  
  .btn-booking-header {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
    box-shadow: 0 4px 16px rgba(240, 166, 35, 0.4);
  }
  
  .btn-booking-header:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(240, 166, 35, 0.5);
  }
  
  /* Hero section mobile - Compact */
  .hero {
    min-height: 70vh;
    padding: 40px 0;
  }
  
  .hero-logo-circle {
    width: 120px;
    height: 120px;
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 24px;
    line-height: 1.4;
    padding: 0 15px;
  }
  
  .hero-subtitle::before {
    width: 120px !important;
  }
  
  .social-row {
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .social {
    width: 36px;
    height: 36px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 15px;
  }
  
  /* Stats section mobile - Compact */
  .stats-section {
    padding: 40px 0;
  }
  
  .stats-grid {
    gap: 16px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .stat-label {
    font-size: 13px;
  }
  
  /* Services section mobile - Compact */
  .services-section {
    padding: 40px 0;
  }
  
  .services-section .section-heading {
    font-size: 26px;
    margin-bottom: 24px;
  }
  
  .service-card-image .service-image-placeholder {
    height: 320px;
  }
  
  .service-card-image .service-image-placeholder img {
    object-fit: contain;
    object-position: center;
  }
  
  .service-card-content {
    padding: 20px 16px;
  }
  
  .service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  
  .service-link {
    font-size: 13px;
  }
  
  /* Service buttons mobile */
  .service-actions {
    flex-direction: row;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
  }
  
  .btn-service {
    flex: 1;
    min-width: 140px;
    padding: 12px 14px;
    font-size: 13px;
    text-align: center;
  }
  
  .btn-service-outline {
    flex: 1;
    min-width: 140px;
    padding: 12px 14px;
    font-size: 13px;
  }
  
  .service-banner {
    margin-bottom: 16px;
  }
  
  .service-banner-title {
    font-size: 24px;
  }

  .navbar-toggler {
    border: 2px solid rgba(240,166,35,0.5);
    padding: 8px 12px;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(240,166,35,0.25);
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(240,166,35,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .navbar-collapse {
    margin-top: 16px;
  }

  .main-nav {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .main-nav .nav-link {
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .main-nav .nav-link:hover,
  .main-nav .nav-link.active {
    background: rgba(240,166,35,0.1);
  }

  .main-nav .nav-link::after {
    display: none;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .hero {
    min-height: 100vh;
    background-position: center;
    background-attachment: scroll;
  }

  .hero-logo-circle {
    width: 140px;
    height: 140px;
    border-width: 5px;
  }

  .hero-subtitle {
    font-size: 24px;
    letter-spacing: 6px;
    padding: 0 20px;
    line-height: 1.5;
  }
  
  .hero-subtitle::before {
    width: 150px !important;
  }

  .social-row {
    gap: 12px;
    margin-bottom: 20px;
  }

  .social img {
    width: 40px !important;
    height: 40px !important;
  }

  .gallery-heading,
  .section-heading,
  .tattoo-styles-heading {
    font-size: 26px;
    margin-bottom: 24px;
  }

  /* Compact all sections */
  .gallery-section,
  .tattoo-styles-section,
  .awards-section,
  .testimonials-section,
  .why-section,
  .instagram-section {
    padding: 40px 0;
  }
  
  .section-heading {
    font-size: 26px !important;
    margin-bottom: 24px !important;
  }
  
  /* Tattoo styles - Keep original size */
  .tattoo-styles-section {
    padding: 60px 0;
  }
  
  .tattoo-styles-heading {
    font-size: 28px;
    margin-bottom: 32px;
  }
  
  .style-card {
    height: 250px;
  }
  
  .style-card-meta {
    background: rgba(255, 255, 255, 0.95);
    padding: 14px 16px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
  }
  
  .style-card-index {
    font-size: 18px;
    color: #f0a623;
  }
  
  .style-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
  }
  
  /* Instagram - Compact */
  .instagram-grid {
    gap: 8px;
  }
  
  .instagram-item {
    height: 150px;
  }

  .studio-info h1 {
    font-size: 22px;
  }

  .studio-info p {
    font-size: 13px;
  }

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

  .section-title h2 {
    font-size: 20px;
  }

  .tattoo-styles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-item {
    padding: 32px 24px;
  }

  .testimonial-quote {
    font-size: 16px;
    padding: 0 20px;
  }

  .testimonial-quote::before {
    font-size: 40px;
  }
}

/* LIGHTBOX GALLERY */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-image-wrapper {
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  user-select: none;
}

.lightbox-close {
  top: 24px;
  right: 28px;
  transform: none;
  font-size: 30px;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

@media (max-width: 640px) {
  .lightbox-prev,
  .lightbox-next {
    font-size: 26px;
  }
}

/* FOOTER */
.site-footer {
  background: rgba(26, 26, 26, 0.98);
  color: #e5e5e5;
  padding: 40px 16px 20px;
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.footer-brand {
  flex: 0 0 180px;
  text-align: center;
}

.footer-logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
}

.footer-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand-name {
  font-weight: 700;
}

.footer-columns {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  justify-items: center;
}

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #f0a623;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  font-size: 13px;
  margin-bottom: 6px;
  color: #d0d0d0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-icon {
  font-size: 16px;
}

.footer-col a {
  color: #9db4d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #f0a623;
  text-decoration: underline;
}

.footer-map-box img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

/* Back button style */
.nav-link-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0 !important;
  background: linear-gradient(135deg, #f0a623 0%, #d89520 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 12px rgba(240, 166, 35, 0.3);
}

.nav-link-back:hover {
  background: linear-gradient(135deg, #d89520 0%, #c08518 100%);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(240, 166, 35, 0.4);
}

.nav-link-back::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-bottom {
  max-width: 1120px;
  margin: 20px auto 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
  color: #999;
}

@media (max-width: 768px) {
  .footer-container {
    max-width: 100%;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand contact"
      "map   map";
    gap: 16px;
    align-items: flex-start;
  }

  .footer-brand {
    grid-area: brand;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .footer-brand .footer-logo-circle {
    margin: 0 0 4px 0;
    width: 56px;
    height: 56px;
  }

  .footer-brand-name {
    margin-top: 0;
  }

  .footer-columns {
    grid-area: contact / contact / contact / contact;
    display: contents;
  }

  .footer-col.footer-contact {
    grid-area: contact;
    text-align: center;
  }
  
  .footer-contact li {
    justify-content: center;
  }

  .footer-col.footer-map {
    grid-area: map;
    text-align: center;
  }

  .footer-map-box iframe {
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }
}

/* ===== HIDE GOOGLE TRANSLATE BAR ===== */
/* Ẩn thanh Google Translate trên đầu trang */
.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

.skiptranslate {
  display: none !important;
}

/* Ẩn iframe Google Translate */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

/* Ẩn dropdown Google Translate */
#google_translate_element {
  display: none !important;
}

/* Fix body bị đẩy xuống khi Google Translate active */
body.translated-ltr {
  top: 0 !important;
  margin-top: 0 !important;
}

/* Ẩn hoàn toàn Google Translate toolbar */
.goog-te-banner-frame,
.goog-te-balloon-frame,
div#goog-gt-tt,
div.goog-te-balloon-frame {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Fix cho mobile */
@media (max-width: 768px) {
  body {
    top: 0 !important;
    position: relative !important;
  }
  
  .goog-te-banner-frame {
    display: none !important;
  }
}
