:root {
  /* Rich Dark Color Palette */
  --background: #09090b;
  /* zinc-950 */
  --foreground: #fafafa;
  --primary: #fbbf24;
  /* Amber-400 */
  --primary-foreground: #000000;
  --card: #18181b;
  /* zinc-900 */
  --card-hover: #27272a;
  --border: rgba(255, 255, 255, 0.08);
  --muted: #a1a1aa;

  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--background);
  overflow-x: hidden;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Base Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
  list-style: none;
}

/* Custom Selection */
::selection {
  background-color: rgba(251, 191, 36, 0.3);
  color: var(--foreground);
}

/* Typography */
.text-primary {
  color: var(--primary);
}

.italic {
  font-style: italic;
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.glass-text {
  background: linear-gradient(135deg, #fbbf24 0%, #fffbeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}

.animate-on-scroll.slide-right {
  transform: translateX(-40px);
}

.animate-on-scroll.slide-left {
  transform: translateX(40px);
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* Hover effects */
.hover-lift {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.hover-lift:hover {
  transform: translateY(-8px);
}

.pulse-hover {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pulse-hover:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

/* Shine Effect on Buttons */
.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(30deg);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}

.shine-effect:hover::after {
  left: 120%;
  opacity: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-family: var(--font-sans);
}

.btn-lg {
  height: 3.5rem;
  padding: 0 2.5rem;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 8px 20px -8px rgba(251, 191, 36, 0.5);
}

.btn-primary:hover {
  background-color: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -8px rgba(251, 191, 36, 0.7);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--foreground);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.75rem 0;
}

.navbar.scrolled {
  background-color: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(16px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-primary {
  color: var(--primary);
}

.logo-secondary {
  color: var(--foreground);
  transition: color 0.3s;
}

.logo:hover .logo-secondary {
  color: var(--primary);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(250, 250, 250, 0.7);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--foreground);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  transition: transform 0.2s;
}

.mobile-toggle:active {
  transform: scale(0.9);
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(24, 24, 27, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.mobile-nav.hidden {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  opacity: 0;
  pointer-events: none;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-links a {
  display: block;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 500;
}

.mobile-nav-links a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

.mobile-btn {
  width: 100%;
  margin-top: 1rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
  opacity: 0.15;
  filter: saturate(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(9, 9, 11, 0.4) 0%, var(--background) 100%);
}

.hero-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  max-width: 60rem;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background-color: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  color: var(--primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1.05;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(250, 250, 250, 0.75);
  max-width: 44rem;
  margin: 0 auto 3rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.hero-scroll-indicator {
  position: relative;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 10;
  cursor: pointer;
}

.scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(250, 250, 250, 0.4);
  margin-bottom: 0.5rem;
  font-weight: 500;
  position: center;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.bounce {
  animation: bounce 2.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

/* Grid Layouts */
.grid-2-cols {
  display: grid;
  gap: 5rem;
}

.grid-3-cols {
  display: grid;
  gap: 2.5rem;
}

.grid-4-cols {
  display: grid;
  gap: 3rem;
}

/* Sections Common */
section {
  padding: 8rem 0;
  position: relative;
}

.section-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.line {
  height: 1px;
  width: 3rem;
  background-color: var(--primary);
}

.section-title-sm {
  color: var(--primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.section-title-lg {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

/* Margins */
.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-16 {
  margin-top: 4rem;
}

/* About Section */
.about {
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.about-image-wrapper {
  position: relative;
}

.about-image-container {
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  z-index: 10;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.1);
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-img {
  transform: scale(1.05);
}

.about-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(9, 9, 11, 0.5), transparent);
  pointer-events: none;
}

.decorative-border {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 1rem;
  z-index: 0;
  transition: transform 0.5s;
}

.about-image-wrapper:hover .decorative-border {
  transform: translate(-10px, -10px);
}

.decorative-glow {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 12rem;
  height: 12rem;
  background-color: rgba(251, 191, 36, 0.08);
  border-radius: 50%;
  filter: blur(3rem);
  z-index: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 0.75rem;
  border: 1px solid transparent;
}

.stat-card:hover {
  border-color: rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
}

/* Services Section */
.bg-card {
  background-color: var(--card);
}

.services {
  position: relative;
  border-top: 1px solid var(--border);
}

.services-texture {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.8%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22/%3E%3C/svg%3E");
}

.card {
  background: linear-gradient(180deg, rgba(39, 39, 42, 0.4) 0%, rgba(24, 24, 27, 0.3) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  /* Delicate top rim light */
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.6);
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(251, 191, 36, 0.3);
  border-top-color: rgba(251, 191, 36, 0.6);
  background: linear-gradient(180deg, rgba(39, 39, 42, 0.6) 0%, rgba(24, 24, 27, 0.4) 100%);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 40px -10px rgba(251, 191, 36, 0.15);
  /* Amber glow */
}

.card-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: radial-gradient(ellipse at top, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
  transition: all 0.5s ease;
  opacity: 0;
  pointer-events: none;
}

.card:hover .card-highlight {
  opacity: 1;
}

.card-header {
  padding: 2.5rem 2.5rem 1rem;
  text-align: left;
  position: relative;
  z-index: 2;
}

.icon-wrapper {
  display: inline-flex;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(39, 39, 42, 0.5) 0%, rgba(24, 24, 27, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.25rem;
  margin-bottom: 2rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.5), inset 0 2px 10px rgba(255, 255, 255, 0.05);
}

.card:hover .icon-wrapper {
  transform: scale(1.05) translateY(-5px);
  border-color: rgba(251, 191, 36, 0.4);
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.1) 0%, rgba(39, 39, 42, 0.5) 100%);
  box-shadow: 0 15px 25px -10px rgba(251, 191, 36, 0.2), inset 0 2px 10px rgba(251, 191, 36, 0.1);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
  line-height: 1.2;
}

.card:hover .card-title {
  color: var(--primary);
}

.card-body {
  padding: 0 2.5rem 2.5rem;
  text-align: left;
  flex-grow: 1;
}

.card-desc {
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
}

/* Contact Section */
.contact {
  border-top: 1px solid var(--border);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  padding: 1rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--primary);
  box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.02);
}

.contact-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.5);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-value {
  font-size: 1.4rem;
  font-weight: 500;
}

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

.border-top {
  border-top: 1px solid var(--border);
}

.flex {
  display: flex;
}

.gap-4 {
  gap: 1rem;
}

.social-link {
  padding: 0.8rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: inline-flex;
  transition: all 0.3s;
}

.social-link:hover {
  color: var(--background);
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* Form */
.form-wrapper {
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: rgba(24, 24, 27, 0.6);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  color: rgba(250, 250, 250, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.input-group input,
.input-group textarea {
  width: 100%;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}

.input-group input:hover,
.input-group textarea:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.15);
}

textarea {
  min-height: 180px;
  resize: vertical;
}

.message-banner {
  padding: 1.25rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.message-banner.success {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.message-banner.error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.hidden {
  display: none;
}

.w-full {
  width: 100%;
}

/* Footer */
.footer {
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  background-color: #050505;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.footer-links a,
.footer-links li {
  color: rgba(250, 250, 250, 0.6);
  font-weight: 300;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.hover-text-effect {
  position: relative;
  display: inline-block;
}

.hover-text-effect::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-text-effect:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.col-span-2 {
  grid-column: span 2;
}

.space-y-3 {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-bottom {
  margin-top: 3rem;
  color: rgba(250, 250, 250, 0.4);
  font-weight: 300;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom a {
  color: rgba(250, 250, 250, 0.4);
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* Responsive */
@media (min-width: 768px) {
  .hero-title {
    font-size: 5.5rem;
  }

  .grid-2-cols {
    grid-template-columns: 1fr 1fr;
  }

  .grid-3-cols {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4-cols {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-actions {
    flex-direction: row;
  }

  .section-badge {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6.5rem;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 1.25rem;
  }

  section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .hero-scroll-indicator {
    bottom: auto;
    margin-top: 2rem;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
  }

  .animate-on-scroll.slide-right,
  .animate-on-scroll.slide-left {
    transform: translateY(30px);
  }

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

  .section-title-lg {
    font-size: 2.25rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .hero-actions a {
    width: 100%;
  }

  .about-image-wrapper {
    margin-bottom: 2.5rem;
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
  }

  .decorative-border {
    right: -1rem;
    bottom: -1rem;
  }

  .decorative-glow {
    left: -1rem;
    top: -1rem;
  }

  .form-wrapper {
    padding: 2rem 1.25rem;
  }

  .grid-2-cols,
  .grid-3-cols,
  .grid-4-cols {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  /* Responsive tweaks for new sections */
  .portfolio-card h4 {
    font-size: 1.25rem !important;
  }

  .testimonial-card {
    padding: 1.5rem !important;
  }
}

/* --- Portfolio Overhaul --- */
.portfolio {
  padding: 10rem 0;
  border-top: 1px solid var(--border);
  background: radial-gradient(circle at 50% -20%, rgba(251, 191, 36, 0.05) 0%, transparent 60%);
}

.portfolio-card {
  position: relative;
  background: rgba(24, 24, 27, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover {
  transform: translateY(-10px);
  border-color: rgba(251, 191, 36, 0.2);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px -10px rgba(251, 191, 36, 0.1);
}

.portfolio-img-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.8;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.08);
  opacity: 1;
}

.portfolio-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 5;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(0px);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 10;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
  backdrop-filter: blur(4px);
}

.portfolio-content {
  padding: 2rem;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
}

.portfolio-project-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.portfolio-card:hover .portfolio-project-title {
  color: var(--primary);
}

.portfolio-project-desc {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
}

.glass-btn {
  background: rgba(251, 191, 36, 0.8) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #000 !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.portfolio-card:hover .glass-btn {
  transform: translateY(0);
}

.glass-btn:hover {
  background: var(--primary) !important;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(251, 191, 36, 0.3);
}

/* On mobile, always show portfolio overlay so users can tap */
@media (max-width: 767px) {
  .portfolio-overlay {
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.35) !important;
    backdrop-filter: blur(2px) !important;
  }

  .portfolio-card .glass-btn {
    transform: translateY(0) !important;
    padding: 0.5rem 1.25rem !important;
    font-size: 0.8rem !important;
  }

  .portfolio-card:hover {
    transform: none;
  }

  .portfolio-card:active {
    transform: scale(0.98);
  }
}

/* --- FAQ Section Styles --- */
.faq-accordion {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--foreground);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-question .icon {
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  margin: 0;
  color: #cbd5e1;
  /* Sligtly brighter than muted for readability */
  line-height: 1.7;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 1rem;
  }
}

/* --- Modals & Devices --- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal.open {
  opacity: 1;
  pointer-events: all;
  overflow: hidden;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
}

.modal-container {
  position: relative;
  z-index: 10;
  padding: 2rem;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.modal-close:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--primary);
  color: #000;
  border-color: transparent;
  box-shadow: 0 0 25px var(--primary-glow);
}

/* === MOBILE MODAL & PORTFOLIO RESPONSIVE === */
@media (max-width: 767px) {

  /* Portfolio section mobile spacing */
  .portfolio {
    padding: 5rem 0 !important;
  }

  .portfolio .section-title-lg {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .portfolio .grid-3-cols {
    gap: 1.5rem;
  }

  .portfolio-card {
    border-radius: 1rem;
  }

  .portfolio-img-wrapper {
    aspect-ratio: 16 / 9;
  }

  .portfolio-content {
    padding: 1.25rem;
  }

  .portfolio-project-title {
    font-size: 1.15rem !important;
  }

  .portfolio-project-desc {
    font-size: 0.85rem;
  }

  .portfolio-badge {
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.65rem;
  }

  /* ===== FULL-SCREEN MODALS ON MOBILE ===== */
  .modal-container {
    padding: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    align-items: stretch;
    justify-content: stretch;
  }

  .modal-close {
    position: fixed;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 9999;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }

  .modal-close:hover {
    transform: none;
    background: rgba(251, 191, 36, 0.9);
    color: #000;
  }

  /* Device mockups become full-screen on mobile */
  .device-laptop,
  .device-mobile,
  .device-tablet {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    border: none !important;
  }

  .device-laptop::before,
  .device-laptop::after,
  .device-mobile::before {
    display: none !important;
  }

  .device-screen {
    border-radius: 0 !important;
    height: 100% !important;
    margin-top: 0 !important;
  }

  .device-laptop .device-screen {
    margin-top: 0 !important;
    height: 100% !important;
  }

  /* ===== ITALIAN SITE — MOBILE ===== */
  .ita-header {
    height: 56px !important;
    padding: 0 1rem !important;
  }

  .ita-logo {
    font-size: 1.3rem !important;
  }

  .ita-header nav {
    gap: 0.75rem !important;
  }

  .ita-header nav a {
    font-size: 0.6rem !important;
    letter-spacing: 1px !important;
    margin-left: 0 !important;
  }

  .btn-ita-solid {
    padding: 0.5rem 0.8rem !important;
    font-size: 0.6rem !important;
  }

  .ita-hero {
    height: auto !important;
    min-height: 70vh;
    padding: 4rem 1.25rem 3rem !important;
  }

  .ita-hero h1 {
    font-size: 2.5rem !important;
    margin-bottom: 1rem !important;
  }

  .ita-hero p {
    font-size: 0.95rem !important;
    margin-bottom: 2rem !important;
  }

  .ita-hero-badge {
    font-size: 0.65rem !important;
    letter-spacing: 3px !important;
    padding: 0.4rem 1rem !important;
    margin-bottom: 1.5rem !important;
  }

  .ita-hero-btn {
    padding: 1rem 2rem !important;
    font-size: 0.8rem !important;
    letter-spacing: 2px !important;
  }

  .ita-story {
    padding: 3rem 1.25rem !important;
  }

  .ita-story-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .ita-story-text h2 {
    font-size: 2rem !important;
  }

  .ita-story-text p {
    font-size: 0.9rem !important;
  }

  .ita-story-img img {
    box-shadow: none !important;
    border-radius: 8px !important;
  }

  .ita-menu {
    padding: 3rem 1.25rem !important;
  }

  .ita-menu h3 {
    font-size: 2rem !important;
    margin-bottom: 1.5rem !important;
  }

  .ita-menu-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 0 !important;
    margin-bottom: 2rem !important;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .ita-menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .ita-tab {
    font-size: 0.75rem !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
    padding: 0.5rem 1rem !important;
    flex-shrink: 0;
  }

  .ita-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .ita-item-img-wrapper {
    height: 200px !important;
  }

  .ita-item h4 {
    font-size: 1.3rem !important;
    margin: 1rem 1rem 0.5rem !important;
  }

  .ita-item p {
    margin: 0 1rem 1.25rem !important;
    font-size: 0.8rem !important;
  }

  .ita-item-price {
    top: 0.75rem !important;
    right: 0.75rem !important;
    padding: 0.35rem 0.8rem !important;
    font-size: 0.85rem !important;
  }

  .ita-testimonials {
    padding: 3rem 1.25rem !important;
  }

  .ita-testimonials h3 {
    font-size: 1.75rem !important;
    margin-bottom: 2rem !important;
  }

  .testimonials-slider {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .testimonial-card {
    padding: 1.5rem 1.25rem !important;
  }

  .testimonial-card p {
    font-size: 0.9rem !important;
  }

  .ita-reservation {
    padding: 3rem 1.25rem !important;
  }

  .ita-res-container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .ita-res-info h2 {
    font-size: 2rem !important;
  }

  .ita-res-info p {
    font-size: 0.95rem !important;
    margin-bottom: 2rem !important;
  }

  .ita-res-form-wrapper {
    padding: 1.5rem !important;
    border-radius: 12px !important;
  }

  .ita-res-main-form input {
    padding: 0.9rem !important;
    margin-bottom: 1.25rem !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .guests-pills-v2 {
    margin-bottom: 1.5rem !important;
    gap: 0.5rem !important;
  }

  .btn-cta-res {
    padding: 1.1rem !important;
    font-size: 0.8rem !important;
  }

  .ita-footer {
    padding: 2rem 1.25rem !important;
    font-size: 0.75rem !important;
  }

  /* Italian booking overlay mobile */
  .ita-book-overlay {
    padding: 1rem !important;
  }

  .glass-modal {
    padding: 2rem 1.5rem !important;
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 16px !important;
  }

  .ita-book-form h3 {
    font-size: 1.8rem !important;
  }

  .ita-book-desc {
    font-size: 0.85rem !important;
    margin-bottom: 1.5rem !important;
  }

  .glass-modal input {
    padding: 0.9rem !important;
    margin-bottom: 1rem !important;
    font-size: 0.9rem !important;
  }

  .ita-book-row {
    flex-direction: column !important;
    gap: 0 !important;
  }

  .guests-pills {
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
  }

  .guest-pill {
    width: 40px !important;
    height: 40px !important;
    font-size: 0.85rem !important;
  }

  .btn-confirm-book {
    padding: 1rem !important;
    font-size: 0.8rem !important;
  }

  .ita-book-success h3 {
    font-size: 1.8rem !important;
  }

  .success-check {
    font-size: 3rem !important;
  }

  /* ===== CAFE SITE — MOBILE ===== */
  .cafe-site {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif !important;
  }

  .cafe-hero {
    padding: 3.5rem 1.25rem 2rem !important;
    border-bottom-left-radius: 24px !important;
    border-bottom-right-radius: 24px !important;
  }

  .cafe-brand {
    font-size: 1.6rem !important;
    margin-bottom: 0.5rem !important;
  }

  .cafe-hero p {
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
  }

  .cafe-search {
    border-radius: 16px !important;
    padding: 0 1rem !important;
  }

  .cafe-search input {
    padding: 1rem !important;
    font-size: 0.95rem !important;
  }

  .cafe-nav-wrapper {
    padding: 1rem 0 !important;
  }

  .cafe-categories {
    gap: 0.6rem !important;
    padding: 0 1.25rem !important;
  }

  .category-btn {
    padding: 0.7rem 1.2rem !important;
    font-size: 0.8rem !important;
    border-radius: 20px !important;
  }

  .cafe-menu-container {
    padding: 1rem 1.25rem !important;
  }

  .cafe-menu {
    gap: 0.75rem !important;
  }

  .cafe-item {
    padding: 0.8rem !important;
    gap: 1rem !important;
    border-radius: 20px !important;
  }

  .cafe-item-img {
    width: 72px !important;
    height: 72px !important;
    border-radius: 16px !important;
  }

  .cafe-item-info h4 {
    font-size: 0.95rem !important;
    margin-bottom: 0.2rem !important;
  }

  .cafe-item-info p {
    font-size: 0.75rem !important;
    margin-bottom: 0.6rem !important;
    line-height: 1.4 !important;
  }

  .cafe-item-bottom span {
    font-size: 1rem !important;
  }

  .add-btn {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
    font-size: 1.5rem !important;
  }

  .cafe-cart {
    margin: 0 1rem 1rem !important;
    padding: 0.8rem 1.25rem !important;
    border-radius: 16px !important;
    bottom: 1rem !important;
  }

  .cart-total {
    font-size: 1rem !important;
  }

  .cafe-checkout-btn {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.8rem !important;
    border-radius: 10px !important;
  }

  .cafe-success-overlay {
    padding: 1rem !important;
  }

  .cafe-success-modal {
    padding: 2rem 1.5rem !important;
    border-radius: 24px !important;
    max-width: 100% !important;
  }

  .cafe-success-modal h3 {
    font-size: 1.4rem !important;
  }

  .cafe-order-number {
    font-size: 1.2rem !important;
    padding: 0.75rem !important;
    border-radius: 12px !important;
  }

  .cafe-close-success {
    padding: 1rem !important;
    border-radius: 12px !important;
    font-size: 0.9rem !important;
  }

  /* ===== SUSHI SITE — MOBILE ===== */
  .sushi-header {
    height: 56px !important;
    padding: 0 1rem !important;
  }

  .sushi-logo {
    font-size: 1.3rem !important;
  }

  .sushi-header nav {
    gap: 0.75rem !important;
  }

  .sushi-header nav a {
    font-size: 0.6rem !important;
    letter-spacing: 1px !important;
  }

  .sushi-btn-nav-solid {
    padding: 0.5rem 0.8rem !important;
    font-size: 0.6rem !important;
  }

  .sushi-hero {
    height: auto !important;
    min-height: 70vh;
    padding: 4rem 1.25rem 3rem !important;
  }

  .sushi-hero h1 {
    font-size: 2.5rem !important;
    margin-bottom: 1rem !important;
  }

  .sushi-hero p {
    font-size: 0.95rem !important;
    margin-bottom: 2rem !important;
  }

  .sushi-hero-badge {
    font-size: 0.65rem !important;
    letter-spacing: 3px !important;
    padding: 0.4rem 1rem !important;
    margin-bottom: 1.5rem !important;
  }

  .sushi-hero-btn {
    padding: 1rem 2rem !important;
    font-size: 0.8rem !important;
    letter-spacing: 2px !important;
  }

  .sushi-story {
    padding: 3rem 1.25rem !important;
  }

  .sushi-story-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .sushi-story-text h2 {
    font-size: 2rem !important;
  }

  .sushi-story-text p {
    font-size: 0.9rem !important;
  }

  .sushi-story-img img {
    box-shadow: none !important;
    border-radius: 8px !important;
  }

  .sushi-menu {
    padding: 3rem 1.25rem !important;
  }

  .sushi-menu h3 {
    font-size: 2rem !important;
    margin-bottom: 1.5rem !important;
  }

  .sushi-menu-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 0 !important;
    margin-bottom: 2rem !important;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .sushi-menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .sushi-tab {
    font-size: 0.75rem !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
    padding: 0.5rem 1rem !important;
    flex-shrink: 0;
  }

  .sushi-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .sushi-item-img-wrapper {
    height: 200px !important;
  }

  .sushi-item h4 {
    font-size: 1.3rem !important;
    margin: 1rem 1rem 0.5rem !important;
  }

  .sushi-item p {
    margin: 0 1rem 1.25rem !important;
    font-size: 0.8rem !important;
  }

  .sushi-item-price {
    top: 0.75rem !important;
    right: 0.75rem !important;
    padding: 0.35rem 0.8rem !important;
    font-size: 0.85rem !important;
  }

  .sushi-testimonials {
    padding: 3rem 1.25rem !important;
  }

  .sushi-testimonials h3 {
    font-size: 1.75rem !important;
    margin-bottom: 2rem !important;
  }

  .sushi-testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .sushi-testimonial-card {
    padding: 1.5rem 1.25rem !important;
  }

  .sushi-testimonial-card p {
    font-size: 0.9rem !important;
  }

  .sushi-reservation {
    padding: 3rem 1.25rem !important;
  }

  .sushi-res-container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .sushi-res-info h2 {
    font-size: 2rem !important;
  }

  .sushi-res-info p {
    font-size: 0.95rem !important;
    margin-bottom: 2rem !important;
  }

  .sushi-res-form-wrapper {
    padding: 1.5rem !important;
    border-radius: 12px !important;
  }

  .sushi-res-main-form input {
    padding: 0.9rem !important;
    margin-bottom: 1.25rem !important;
  }

  .sushi-guests-pills-v2 {
    margin-bottom: 1.5rem !important;
    gap: 0.5rem !important;
  }

  .sushi-btn-cta-res {
    padding: 1.1rem !important;
    font-size: 0.8rem !important;
  }

  .sushi-footer {
    padding: 2rem 1.25rem !important;
    font-size: 0.75rem !important;
  }

  /* Sushi booking overlay mobile */
  .sushi-book-overlay {
    padding: 1rem !important;
  }

  .sushi-book-modal {
    padding: 2rem 1.5rem !important;
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 16px !important;
  }

  .sushi-book-form h3 {
    font-size: 1.8rem !important;
  }

  .sushi-book-desc {
    font-size: 0.85rem !important;
    margin-bottom: 1.5rem !important;
  }

  .sushi-book-modal input {
    padding: 0.9rem !important;
    margin-bottom: 1rem !important;
    font-size: 0.9rem !important;
  }

  .sushi-book-row {
    flex-direction: column !important;
    gap: 0 !important;
  }

  .sushi-guests-pills {
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
  }

  .sushi-guest-pill {
    width: 40px !important;
    height: 40px !important;
    font-size: 0.85rem !important;
  }

  .sushi-btn-confirm-book {
    padding: 1rem !important;
    font-size: 0.8rem !important;
  }

  .sushi-btn-cancel-book {
    padding: 0.8rem !important;
    font-size: 0.8rem !important;
  }

  .sushi-book-success .success-check {
    font-size: 3rem !important;
  }

  .sushi-book-success h3 {
    font-size: 1.8rem !important;
  }
}

/* Medium screens (tablets) */
@media (min-width: 768px) and (max-width: 1024px) {
  .modal-container {
    padding: 1rem;
  }

  .modal-close {
    top: -1rem;
    right: 0.5rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
  }

  .device-laptop {
    width: 95vw;
    max-width: 900px;
  }

  .ita-hero h1,
  .sushi-hero h1 {
    font-size: 4rem !important;
  }

  .ita-grid,
  .sushi-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Device Mockups */
/* Device Mockups Overhaul */
.device-laptop {
  width: 1000px;
  height: 625px;
  background: #1a1a1a;
  border-radius: 20px;
  padding: 10px 10px 25px;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.9), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  transform: scale(min(calc(95vw / 1000), calc(85vh / 625), 1));
  transform-origin: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.device-laptop::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 30px;
  background: #2a2a2a;
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* Browser UI dots */
.device-laptop::after {
  content: '•••';
  position: absolute;
  top: 15px;
  left: 25px;
  font-size: 24px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 2px;
  z-index: 15;
}

.device-mobile {
  width: 375px;
  height: 812px;
  background: #000;
  border-radius: 48px;
  padding: 12px;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.9), inset 0 0 0 2px #222;
  position: relative;
  transform: scale(min(calc(95vw / 375), calc(85vh / 812), 1));
  transform-origin: center;
}

/* Dynamic Notch */
.device-mobile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 32px;
  background: #000;
  border-radius: 0 0 16px 16px;
  z-index: 100;
}

.device-tablet {
  width: 768px;
  height: 1024px;
  background: #111;
  border-radius: 32px;
  padding: 16px;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.9), inset 0 0 0 2px #222;
  position: relative;
  transform: scale(min(calc(95vw / 768), calc(85vh / 1024), 1));
  transform-origin: center;
}

.device-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 6px;
  overflow-y: auto;
  position: relative;
  overflow-x: hidden;
}

.device-laptop .device-screen {
  margin-top: 30px;
  height: calc(100% - 30px);
}

.device-mobile .device-screen {
  border-radius: 36px;
  background: #fdfdfd;
}

.device-tablet .device-screen {
  border-radius: 20px;
  background: #000;
}

/* Scrollbar for screens */
.device-screen::-webkit-scrollbar {
  width: 6px;
}

.device-screen::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

/* --- Mini Sites Styles --- */
/* Base Shared */
.device-screen {
  scroll-behavior: smooth;
}

/* ===== Sakura Sushi House (Laptop — mirrors Italian structure) ===== */
.sushi-site {
  background: #0a0a0a;
  color: #ebebeb;
  font-family: 'Montserrat', sans-serif;
  position: relative;
}


.sushi-header {
  height: 90px;
  padding: 0 4rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(197, 160, 46, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.sushi-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #c5a02e;
  letter-spacing: -1px;
}

.sushi-header nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.sushi-header nav a {
  text-decoration: none;
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  transition: color 0.3s;
}

.sushi-header nav a:hover {
  color: #c5a02e;
}

.sushi-btn-nav-solid {
  background: #c5a02e;
  color: #0a0a0a !important;
  padding: 0.8rem 1.8rem;
  border-radius: 2px;
  font-weight: 700 !important;
  transition: all 0.3s;
}

.sushi-btn-nav-solid:hover {
  background: #e6bd3a;
  transform: translateY(-2px);
}

/* Sushi Hero */
.sushi-hero {
  height: 100vh;
  background: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.8)),
    url('https://images.unsplash.com/photo-1579871494447-9811cf80d66c?auto=format&fit=crop&w=1400&q=90');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 4rem;
}

.sushi-hero-content {
  max-width: 900px;
}

.sushi-hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(197, 160, 46, 0.5);
  color: #c5a02e;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 0.8rem;
  margin-bottom: 2rem;
}

.sushi-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #fff;
}

.sushi-hero p {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 650px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
}

.sushi-hero-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #c5a02e;
  padding: 1.4rem 3.5rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.sushi-hero-btn:hover {
  background: #c5a02e;
  color: #0a0a0a;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(197, 160, 46, 0.2);
}

/* Sushi Story */
.sushi-story {
  padding: 8rem 4rem;
  background: #151515;
}

.sushi-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sushi-story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #c5a02e;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.sushi-story-text p {
  font-size: 1.05rem;
  color: #999;
  line-height: 1.9;
  font-weight: 300;
}

.sushi-story-img img {
  width: 100%;
  border-radius: 4px;
  box-shadow: -20px 20px 0 #111;
}

/* Sushi Menu */
.sushi-menu {
  padding: 8rem 4rem;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sushi-menu h3 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #c5a02e;
  margin-bottom: 3rem;
}

.sushi-menu-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 5rem;
}

.sushi-tab {
  background: transparent;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  padding: 0.5rem 0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.sushi-tab.active,
.sushi-tab:hover {
  color: #c5a02e;
  border-bottom-color: #c5a02e;
}

.sushi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  animation: fadeIn 0.5s ease;
}

.sushi-item {
  background: #181818;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: transform 0.4s ease, border-color 0.4s;
}

.sushi-item:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 160, 46, 0.3);
}

.sushi-item-img-wrapper {
  position: relative;
  height: 280px;
}

.sushi-item-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s, filter 0.6s;
  filter: brightness(0.85);
}

.sushi-item:hover .sushi-item-img-wrapper img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.sushi-item-price {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(197, 160, 46, 0.95);
  color: #111;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
}

.sushi-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin: 2rem 1.5rem 1rem;
  color: #ebebeb;
}

.sushi-item p {
  margin: 0 1.5rem 2rem;
  color: #888;
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}

/* Sushi Testimonials */
.sushi-testimonials {
  padding: 6rem 4rem;
  background: #151515;
  text-align: center;
}

.sushi-testimonials h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #c5a02e;
  margin-bottom: 4rem;
}

.sushi-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.sushi-testimonial-card {
  background: #111;
  padding: 3rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.sushi-testimonial-card .stars {
  color: #c5a02e;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.sushi-testimonial-card p {
  font-style: italic;
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.sushi-testimonial-card span {
  color: #c5a02e;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* Sushi Reservation */
.sushi-reservation {
  padding: 10rem 4rem;
  background: #0d0d0d;
}

.sushi-res-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 6rem;
  align-items: center;
}

.sushi-res-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: #c5a02e;
  margin-bottom: 2rem;
}

.sushi-res-info p {
  font-size: 1.1rem;
  color: #888;
  line-height: 1.8;
  margin-bottom: 4rem;
}

.sushi-res-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sushi-res-detail-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #ebebeb;
  font-size: 1rem;
}

.sushi-res-form-wrapper {
  background: #151515;
  padding: 4rem;
  border-radius: 20px;
  border: 1px solid rgba(197, 160, 46, 0.1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.sushi-res-main-form label {
  display: block;
  color: #666;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.sushi-res-main-form input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
  width: 100%;
  border-radius: 8px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 2rem;
  transition: all 0.3s;
}

.sushi-res-main-form input:focus {
  border-color: #c5a02e;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.sushi-guests-pills-v2 {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.sushi-guest-pill-v2 {
  flex: 1;
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  color: #888;
  transition: all 0.3s;
}

.sushi-guest-pill-v2.active,
.sushi-guest-pill-v2:hover {
  background: #c5a02e;
  color: #111;
  border-color: #c5a02e;
  font-weight: 600;
}

.sushi-btn-cta-res {
  width: 100%;
  background: #c5a02e;
  color: #111;
  border: none;
  padding: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.sushi-btn-cta-res:hover {
  background: #ffdb6e;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(197, 160, 46, 0.3);
}

/* Sushi Booking Overlay */
.sushi-book-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  animation: fadeIn 0.3s ease;
}

.sushi-book-modal {
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(197, 160, 46, 0.2);
  padding: 4rem 3rem;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  width: 90%;
  max-width: 450px;
  text-align: center;
}

.sushi-book-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #c5a02e;
  margin-bottom: 0.5rem;
}

.sushi-book-desc {
  color: #888;
  margin-bottom: 3rem;
  font-size: 1rem;
}

.sushi-book-row {
  display: flex;
  gap: 1rem;
}

.sushi-book-modal input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  color: #ebebeb;
  transition: all 0.3s;
}

.sushi-book-modal input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: #c5a02e;
  outline: none;
}

.sushi-book-modal input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.5;
  cursor: pointer;
}

.sushi-guests-selector {
  margin-bottom: 2.5rem;
  text-align: left;
}

.sushi-guests-selector p {
  color: #aaa;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sushi-guests-pills {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
}

.sushi-guest-pill {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ebebeb;
  cursor: pointer;
  transition: all 0.2s;
}

.sushi-guest-pill.active,
.sushi-guest-pill:hover {
  background: #c5a02e;
  border-color: #c5a02e;
  color: #111;
  font-weight: 600;
}

.sushi-btn-confirm-book {
  width: 100%;
  background: #c5a02e;
  color: #0a0a0a;
  border: none;
  padding: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  margin-bottom: 1rem;
  border-radius: 4px;
  transition: all 0.3s;
}

.sushi-btn-confirm-book:hover {
  background: #e6bd3a;
}

.sushi-btn-cancel-book {
  width: 100%;
  background: transparent;
  color: #888;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
}

.sushi-btn-cancel-book:hover {
  border-color: #c5a02e;
  color: #c5a02e;
}

.sushi-btn-close-book {
  background: transparent;
  color: #c5a02e;
  border: 1px solid #c5a02e;
  padding: 1rem 3rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
  margin-top: 2rem;
}

.sushi-book-success .success-check {
  font-size: 4rem;
  color: #c5a02e;
  margin-bottom: 1.5rem;
}

.sushi-book-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #c5a02e;
  margin-bottom: 1rem;
}

.sushi-book-success p {
  color: #aaa;
  margin-bottom: 1rem;
}

/* Sushi Footer */
.sushi-footer {
  padding: 3rem;
  text-align: center;
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  letter-spacing: 1px;
}


/* Italian Restaurant (Bella Napoli) */
.italian-site {
  color: #ebebeb;
  font-family: 'Cormorant Garamond', serif;
  background: #111;
  position: relative;
}

.ita-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: padding 0.3s ease;
}

.ita-logo {
  font-size: 2rem;
  color: #d4af37;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: 'Cormorant Garamond', serif;
}

.ita-header nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.ita-header nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #ccc;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.3s;
}

.ita-header nav a:hover {
  color: #d4af37;
}

.italian-site {
  background: #0a0a0a;
  color: #ebebeb;
  font-family: 'Montserrat', sans-serif;
}

.ita-header {
  height: 90px;
  padding: 0 4rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(197, 160, 46, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.ita-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #c5a02e;
  letter-spacing: -1px;
}

.ita-header nav a {
  margin-left: 2.5rem;
  text-decoration: none;
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  transition: color 0.3s;
}

.ita-header nav a:hover {
  color: #c5a02e;
}

.btn-ita-solid {
  background: #c5a02e;
  color: #0a0a0a !important;
  padding: 0.8rem 1.8rem;
  border-radius: 2px;
  font-weight: 700 !important;
  transition: all 0.3s;
}

.btn-ita-solid:hover {
  background: #e6bd3a;
  transform: translateY(-2px);
}

.ita-hero {
  height: 100vh;
  background: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.8)), url('assets/restaurant/hero.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 4rem;
}

.ita-hero-content {
  max-width: 900px;
}

.ita-hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(197, 160, 46, 0.5);
  color: #c5a02e;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 0.8rem;
  margin-bottom: 2rem;
}

.ita-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #fff;
}

.ita-hero p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 650px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
}

.ita-hero-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #c5a02e;
  padding: 1.4rem 3.5rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.ita-hero-btn:hover {
  background: #c5a02e;
  color: #0a0a0a;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(197, 160, 46, 0.2);
}

.ita-story {
  padding: 8rem 4rem;
  background: #151515;
}

.ita-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ita-story-text h2 {
  font-size: 3.5rem;
  color: #d4af37;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.ita-story-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: #999;
  line-height: 1.9;
  font-weight: 300;
}

.ita-story-img img {
  width: 100%;
  border-radius: 4px;
  box-shadow: -20px 20px 0 #111;
}

.ita-menu {
  padding: 8rem 4rem;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ita-menu h3 {
  text-align: center;
  font-size: 3.5rem;
  color: #d4af37;
  margin-bottom: 3rem;
}

.ita-menu-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 5rem;
}

.ita-tab {
  background: transparent;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  padding: 0.5rem 0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.ita-tab.active,
.ita-tab:hover {
  color: #d4af37;
  border-bottom-color: #d4af37;
}

.ita-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  animation: fadeIn 0.5s ease;
}

.ita-item {
  background: #181818;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: transform 0.4s ease, border-color 0.4s;
}

.ita-item:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
}

.ita-item-img-wrapper {
  position: relative;
  height: 280px;
}

.ita-item-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s, filter 0.6s;
  filter: brightness(0.85);
}

.ita-item:hover .ita-item-img-wrapper img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.ita-item-price {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(212, 175, 55, 0.95);
  color: #111;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.ita-item h4 {
  font-size: 1.8rem;
  margin: 2rem 1.5rem 1rem;
  color: #ebebeb;
}

.ita-item p {
  font-family: 'Montserrat', sans-serif;
  margin: 0 1.5rem 2rem;
  color: #888;
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}

.ita-testimonials {
  padding: 6rem 4rem;
  background: #151515;
  text-align: center;
}

.ita-testimonials h3 {
  font-size: 2.8rem;
  color: #d4af37;
  margin-bottom: 4rem;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.testimonial-card {
  background: #111;
  padding: 3rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card .stars {
  color: #d4af37;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.testimonial-card span {
  font-family: 'Montserrat', sans-serif;
  color: #d4af37;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.ita-footer {
  padding: 3rem;
  text-align: center;
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
}




/* Dedicated Reservation Section */
.ita-reservation {
  padding: 10rem 4rem;
  background: #0d0d0d;
}

.ita-res-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 6rem;
  align-items: center;
}

@media (max-width: 900px) {
  .ita-res-container {
    gap: 4rem;
  }

  .ita-res-info h2 {
    font-size: 3rem;
  }
}

.ita-res-info h2 {
  font-size: 4rem;
  color: #d4af37;
  margin-bottom: 2rem;
}

.ita-res-info p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #888;
  line-height: 1.8;
  margin-bottom: 4rem;
}

.ita-res-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.res-detail-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  color: #ebebeb;
  font-size: 1rem;
}

.ita-res-form-wrapper {
  background: #151515;
  padding: 4rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.ita-res-main-form label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  color: #666;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.ita-res-main-form input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
  width: 100%;
  border-radius: 8px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 2rem;
  transition: all 0.3s;
}

.ita-res-main-form input:focus {
  border-color: #d4af37;
  background: rgba(255, 255, 255, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.guests-pills-v2 {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.guest-pill-v2 {
  flex: 1;
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  color: #888;
  transition: all 0.3s;
}

.guest-pill-v2.active,
.guest-pill-v2:hover {
  background: #d4af37;
  color: #111;
  border-color: #d4af37;
  font-weight: 600;
}

.btn-cta-res {
  width: 100%;
  background: #d4af37;
  color: #111;
  border: none;
  padding: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-cta-res:hover {
  background: #ffdb6e;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Glass Reservation Modal */
.ita-book-overlay,
.cafe-success-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  animation: fadeIn 0.3s ease;
}

.glass-modal {
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 4rem 3rem;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  width: 90%;
  max-width: 450px;
  text-align: center;
}

.ita-book-form h3 {
  font-size: 2.8rem;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.ita-book-desc {
  font-family: 'Montserrat', sans-serif;
  color: #888;
  margin-bottom: 3rem;
  font-size: 1rem;
}

.ita-book-row {
  display: flex;
  gap: 1rem;
}

.glass-modal input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem;
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  color: #ebebeb;
  transition: all 0.3s;
}

.glass-modal input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: #d4af37;
  outline: none;
}

.glass-modal input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.5;
  cursor: pointer;
}

.ita-guests-selector {
  margin-bottom: 2.5rem;
  text-align: left;
}

.ita-guests-selector p {
  font-family: 'Montserrat', sans-serif;
  color: #aaa;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.guests-pills {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
}

.guest-pill {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  color: #ebebeb;
  cursor: pointer;
  transition: all 0.2s;
}

.guest-pill:hover,
.guest-pill.active {
  background: #d4af37;
  color: #111;
  border-color: #d4af37;
  font-weight: 600;
}

.btn-confirm-book {
  background: #d4af37;
  color: #111;
  margin-top: 1rem;
  padding: 1.2rem;
  width: 100%;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-confirm-book:hover {
  background: #c3a02f;
}

.btn-close-book-cancel {
  background: transparent;
  color: #666;
  width: 100%;
  padding: 1rem;
  border: none;
  font-family: 'Montserrat', sans-serif;
  margin-top: 0.5rem;
  letter-spacing: 1px;
  cursor: pointer;
}

.btn-close-book-cancel:hover {
  color: #ccc;
}

.success-check {
  font-size: 4rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.ita-book-success h3 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.ita-book-success p {
  font-family: 'Montserrat', sans-serif;
  color: #aaa;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.btn-close-book {
  background: #d4af37;
  color: #111;
  padding: 1.2rem;
  width: 100%;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
}

/* --- Cafe QR Menu (Dark Premium App UI) --- */
.cafe-site {
  background: #0a0a0b;
  min-height: 100%;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  color: #f1f1f1;
  position: relative;
  display: flex;
  flex-direction: column;
}

.cafe-hero {
  padding: 5rem 2.5rem 3rem;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0) 0%, #0a0a0b 100%),
    linear-gradient(135deg, rgba(255, 126, 95, 0.1) 0%, rgba(10, 10, 11, 0) 50%);
  text-align: left;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 126, 95, 0.2);
}

.cafe-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 800;
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.cafe-brand svg {
  color: #ff7e5f;
  filter: drop-shadow(0 0 8px rgba(255, 126, 95, 0.4));
}

.cafe-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.cafe-search {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.cafe-search:focus-within {
  border-color: rgba(255, 126, 95, 0.4);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 32px rgba(255, 126, 95, 0.1);
}

.cafe-search svg {
  color: #ff7e5f;
}

.cafe-search input {
  background: transparent;
  border: none;
  padding: 1.4rem;
  width: 100%;
  font-size: 1.1rem;
  outline: none;
  color: #fff;
}

.cafe-search input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.cafe-nav-wrapper {
  background: rgba(10, 10, 11, 0.9);
  backdrop-filter: blur(24px);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cafe-nav-wrapper::-webkit-scrollbar {
  display: none;
}

.cafe-categories {
  display: flex;
  gap: 1.2rem;
  padding: 0 2.5rem;
  width: max-content;
}

.category-btn {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.category-btn.active {
  background: #ff7e5f;
  color: #fff;
  border: none;
  box-shadow: 0 8px 25px rgba(255, 126, 95, 0.4);
  transform: translateY(-2px);
  position: relative;
}

.category-btn.active::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  z-index: -1;
}

.cafe-menu-container {
  padding: 2rem;
  flex: 1;
  background: radial-gradient(circle at top right, rgba(255, 126, 95, 0.03), transparent 400px);
}

.cafe-menu {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  perspective: 1000px;
}

.cafe-item {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 1.1rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.04);
  animation: cafeItemIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes cafeItemIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cafe-item:nth-child(1) {
  animation-delay: 0.1s;
}

.cafe-item:nth-child(2) {
  animation-delay: 0.2s;
}

.cafe-item:nth-child(3) {
  animation-delay: 0.3s;
}

.cafe-item:nth-child(4) {
  animation-delay: 0.4s;
}

.cafe-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 126, 95, 0.4);
}

.cafe-item:active {
  transform: scale(0.96);
}

.cafe-item-img {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cafe-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: brightness(0.9);
}

.cafe-item:hover .cafe-item-img img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

.cafe-item-info {
  flex: 1;
}

.cafe-item-info h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: #f0f0f0;
  letter-spacing: -0.3px;
}

.cafe-item-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.cafe-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cafe-item-bottom span {
  font-weight: 900;
  font-size: 1.15rem;
  color: #ff7e5f;
}

.add-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #e8e8e8;
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.add-btn:hover {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: #fff;
  border-color: transparent;
}

/* Float Cart */
.cafe-cart {
  position: sticky;
  bottom: 2rem;
  margin: 0 2rem 2rem;
  background: linear-gradient(135deg, rgba(255, 126, 95, 0.95), rgba(254, 180, 123, 0.95));
  padding: 1.2rem 2rem;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  box-shadow: 0 15px 40px rgba(255, 126, 95, 0.3);
  z-index: 20;
}

.cart-details {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.cart-icon {
  font-size: 1.4rem;
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #fff;
  color: #ff7e5f;
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.cart-total {
  font-weight: 700;
  font-size: 1.2rem;
}

.cafe-checkout-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: all 0.3s;
}

.cafe-checkout-btn:hover {
  background: #fff;
  color: #ff7e5f;
  border-color: #fff;
}

/* Success Overlay */
.cafe-success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cafe-success-modal {
  background: #1a1a1a;
  border: 1px solid rgba(255, 126, 95, 0.2);
  padding: 3rem;
  border-radius: 32px;
  text-align: center;
  width: 90%;
  max-width: 380px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.success-anim {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
}

.checkmark__circle {
  stroke: #ff7e5f;
  stroke-width: 2;
  fill: none;
}

.checkmark__check {
  stroke: #ff7e5f;
  stroke-width: 4;
  fill: none;
}

.cafe-success-modal h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.cafe-success-modal p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}

.cafe-order-number {
  background: rgba(255, 126, 95, 0.1);
  border: 1px solid rgba(255, 126, 95, 0.2);
  padding: 1rem;
  border-radius: 16px;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #ff7e5f;
}

.cafe-close-success {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: #fff;
  border: none;
  width: 100%;
  padding: 1.2rem;
  border-radius: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(255, 126, 95, 0.3);
}

.cafe-close-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 126, 95, 0.4);
}

.hidden {
  display: none !important;
}

/* --- Premium Animations --- */
.flying-cart-item {
  position: fixed;
  z-index: 9999;
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Image Shimmer Effect */
img {
  background: linear-gradient(90deg, rgba(39, 39, 42, 0.2) 25%, rgba(63, 63, 70, 0.2) 50%, rgba(39, 39, 42, 0.2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}