/* ==========================================================================
   GTT Group — Obsidian Gold Premium Theme
   ========================================================================== */

:root {
  /* Obsidian Gold Theme Colors */
  --c-bg: #050507; /* Obsidian Black */
  --c-surface: rgba(255, 255, 255, 0.03);
  --c-surface-hover: rgba(255, 255, 255, 0.08);
  --c-border: rgba(212, 175, 55, 0.15); /* Subtle gold border */
  
  --c-gold: #D4AF37;
  --c-gold-glow: rgba(212, 175, 55, 0.5);
  --c-silver: #C0C0C8;
  --c-silver-glow: rgba(192, 192, 200, 0.3);
  
  --c-text: #FFFFFF;
  --c-text-muted: rgba(255, 255, 255, 0.7);
  
  /* Fonts */
  --font-en: 'Outfit', sans-serif;
  --font-th: 'Noto Sans Thai', sans-serif;
  
  /* Smooth Transitions */
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-th);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-en {
  font-family: var(--font-en);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ==========================================================================
   Ambient Mesh Background
   ========================================================================== */
.mesh-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: var(--c-bg);
}

.mesh-blob {
  position: absolute;
  filter: blur(120px);
  opacity: 0.2;
  animation: float 25s infinite ease-in-out alternate;
  border-radius: 50%;
}

.blob-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: var(--c-gold);
}

.blob-2 {
  bottom: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: var(--c-silver);
  animation-delay: -5s;
}

.blob-3 {
  top: 40%;
  left: 30%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--c-gold), transparent);
  animation-delay: -10s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(10%, 10%) scale(1.2); }
}

/* ==========================================================================
   Scroll Progress
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-silver));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px var(--c-gold-glow);
}

/* ==========================================================================
   Navbar (Glassmorphism)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(5, 5, 7, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  padding: 1rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.brand-gtt { 
  color: #fff; 
  text-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.brand-group { 
  color: var(--c-gold); 
  text-shadow: 0 0 20px var(--c-gold-glow);
}

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

.nav-links a {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-gold);
  transition: var(--transition);
  box-shadow: 0 0 10px var(--c-gold-glow);
}

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

.nav-links a:hover, .nav-links a.nav-active {
  color: var(--c-gold);
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* ==========================================================================
   Language Switcher
   ========================================================================== */
.lang-switcher {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  color: var(--c-text);
  cursor: pointer;
  font-family: var(--font-en);
  font-size: 0.9rem;
  transition: var(--transition);
}

.lang-current:hover {
  background: var(--c-surface-hover);
  border-color: var(--c-gold);
}

.lang-chevron {
  width: 14px;
  height: 14px;
  transition: var(--transition);
}

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

.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 150px;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

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

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 0.6rem;
  color: var(--c-text-muted);
  cursor: pointer;
  font-family: var(--font-en);
  font-size: 0.9rem;
  transition: var(--transition);
}

.lang-option:hover {
  background: var(--c-surface-hover);
  color: var(--c-text);
}

.lang-option.active {
  color: var(--c-gold);
  background: rgba(212, 175, 55, 0.1);
}

/* ==========================================================================
   Mobile Toggle
   ========================================================================== */
.mobile-toggle {
  display: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 2000;
  transition: var(--transition);
}

.mobile-toggle:hover {
  border-color: var(--c-gold);
  background: rgba(255,255,255,0.1);
}

.mobile-toggle .line {
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
  transform-origin: center;
}

.mobile-toggle.active .line:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
  background: var(--c-gold);
}

.mobile-toggle.active .line:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
  background: var(--c-gold);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.magnetic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-btn {
  background: linear-gradient(135deg, #a67c00, var(--c-gold), #fff4cc);
  color: #000;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px var(--c-gold-glow);
  transition: var(--transition);
}

.premium-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.premium-btn .btn-text {
  position: relative;
  z-index: 2;
}

.btn-glare {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.6), rgba(255,255,255,0));
  transform: skewX(-20deg);
  animation: shimmer 3s infinite;
  z-index: 1;
}

@keyframes shimmer {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.outline-btn {
  padding: 1rem 2.5rem;
  border-radius: 100px;
  border: 1px solid var(--c-gold);
  background: rgba(212, 175, 55, 0.05);
  color: var(--c-text);
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  gap: 0.75rem;
  transition: var(--transition);
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.outline-btn i {
  color: var(--c-gold);
}

.outline-btn:hover {
  background: var(--c-gold);
  color: #000;
  box-shadow: 0 0 20px var(--c-gold-glow);
}
.outline-btn:hover i {
  color: #000;
}

/* ==========================================================================
   Typography & Utils
   ========================================================================== */
.huge-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.text-stroke {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--c-gold);
  opacity: 0.8;
  text-shadow: 0 0 20px var(--c-gold-glow);
}

.text-gold {
  color: var(--c-gold);
  text-shadow: 0 0 15px var(--c-gold-glow);
}

.text-center { text-align: center; }
.w-100 { width: 100%; }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-family: var(--font-en);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  color: var(--c-silver);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--c-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--c-gold);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  max-width: 500px;
  margin: 1.5rem 0 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
}

.trust-badges {
  display: flex;
  gap: 1.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--c-text-muted);
}

.trust-badge i {
  color: var(--c-gold);
}

.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  animation: pulse-circle 4s infinite alternate;
  will-change: transform;
  transition: transform 0.3s ease-out;
}

@keyframes pulse-circle {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.05); opacity: 1; }
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 3 / 4;
  border-radius: 1.5rem;
  overflow: hidden;
  z-index: 2;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.7),
    0 0 30px var(--c-gold-glow);
  will-change: transform;
  transition: transform 0.3s ease-out;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 5, 7, 0.7) 0%,
    rgba(5, 5, 7, 0.1) 40%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-photo-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(212, 175, 55, 0.35);
  pointer-events: none;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--c-text);
  border-radius: 20px;
  display: flex;
  justify-content: center;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--c-gold);
  border-radius: 2px;
  margin-top: 6px;
  animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0; }
}

/* ==========================================================================
   Bento Services
   ========================================================================== */
.bento-section {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

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

.section-heading p {
  color: var(--c-text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: 1.5rem;
}

.bento-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  text-decoration: none;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.bento-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px var(--c-gold-glow);
  border-color: var(--c-gold);
  transform: translateY(-5px);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-square {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.bento-card:hover .bento-bg {
  transform: scale(1.05);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,7,0.95) 0%, rgba(5,5,7,0.3) 100%);
  z-index: 1;
}

.bento-content {
  position: relative;
  z-index: 2;
  transform: translateZ(30px);
}

.bento-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.icon-amber { color: #f59e0b; }
.icon-purple { color: #a855f7; }

.bento-text h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.bento-text p {
  color: var(--c-text-muted);
  font-size: 1rem;
}

.bento-arrow {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  width: 44px;
  height: 44px;
  background: var(--c-gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-10px, 10px);
  transition: var(--transition);
  z-index: 2;
  box-shadow: 0 0 15px var(--c-gold-glow);
}

.bento-card:hover .bento-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.card-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px transparent;
  transition: var(--transition);
  z-index: 3;
}

.bento-card:hover .card-glow {
  box-shadow: inset 0 0 0 1px var(--c-gold);
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
  padding: 5rem 2rem;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-en);
  color: var(--c-gold);
  text-shadow: 0 0 20px var(--c-gold-glow);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: var(--c-text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   Features Matrix
   ========================================================================== */
.matrix-section {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

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

.matrix-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.matrix-card:hover {
  transform: translateY(-5px);
  background: var(--c-surface-hover);
  border-color: var(--c-gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.matrix-icon {
  width: 50px;
  height: 50px;
  color: var(--c-gold);
  margin-bottom: 1.5rem;
}

.matrix-icon i {
  width: 100%;
  height: 100%;
}

.matrix-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.matrix-card p {
  color: var(--c-text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section {
  padding: 8rem 2rem;
  background: radial-gradient(circle at center, rgba(212,175,55,0.05) 0%, transparent 60%);
}

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

.testimonial-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  background: var(--c-surface-hover);
  border-color: var(--c-gold);
  transform: translateY(-5px);
}

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

.stars {
  color: var(--c-gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.quote-icon {
  color: rgba(255,255,255,0.1);
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--c-gold), #8a7322);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #000;
}

.author-info h5 {
  font-size: 1rem;
}

.author-info p {
  color: var(--c-text-muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  padding: 8rem 2rem;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-desc {
  color: var(--c-text-muted);
  font-size: 1.1rem;
  margin: 1.5rem 0 3rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: 1.5rem;
  border-radius: 1rem;
  transition: var(--transition);
  width: 100%;
}

.info-item:hover {
  background: var(--c-surface-hover);
  border-color: var(--c-gold);
  transform: translateX(10px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(212,175,55,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
}

.info-icon.line-color {
  color: #00B900;
  background: rgba(0,185,0,0.1);
}

.info-text h4 {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  margin-bottom: 0.3rem;
}

.info-text span {
  font-size: 1.1rem;
  font-weight: 500;
}

.glass-form {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  border: 1px solid var(--c-border);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.form-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.input-group {
  position: relative;
  margin-bottom: 2rem;
}

.input-group input, .input-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 1rem 0;
  color: var(--c-text);
  font-size: 1rem;
  font-family: var(--font-th);
  outline: none;
}

.input-group select option {
  background: var(--c-bg);
  color: var(--c-text);
}

.input-group label {
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--c-text-muted);
  transition: var(--transition);
  pointer-events: none;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label {
  top: -0.5rem;
  font-size: 0.8rem;
  color: var(--c-gold);
}

.input-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-gold);
  transition: var(--transition);
}

.input-group input:focus ~ .input-border,
.input-group select:focus ~ .input-border {
  width: 100%;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.glass-footer {
  background: rgba(5,5,7,0.8);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--c-border);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--c-text-muted);
  margin-top: 1rem;
  max-width: 400px;
}

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

.footer-links a {
  color: var(--c-text-muted);
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  color: var(--c-text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   Floating Action Button
   ========================================================================== */
.floating-line-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #00B900;
  color: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0,185,0,0.3);
  z-index: 1000;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.2);
}

.floating-line-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,185,0,0.5);
}

.floating-btn-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: pulse-line 2s infinite;
  box-shadow: 0 0 0 0 rgba(0,185,0,0.7);
}

@keyframes pulse-line {
  0% { box-shadow: 0 0 0 0 rgba(0,185,0,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(0,185,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,185,0,0); }
}

.floating-btn-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */
.animate-hero {
  animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes hero-fade-up {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-hero-scale {
  animation: hero-scale-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes hero-scale-in {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.active {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-container, .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc { margin: 1.5rem auto; }
  .hero-cta { justify-content: center; }
  .trust-badges { justify-content: center; }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .matrix-grid, .stats-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-item { justify-content: center; text-align: left; }
}

@media (max-width: 768px) {
  /* Performance Optimization for Mobile */
  .mesh-blob {
    filter: blur(60px);
    animation-duration: 40s;
  }

  /* Layout Spacing */
  .hero-section {
    padding: 6rem 1.5rem 3rem;
  }
  .bento-section, .matrix-section, .testimonials-section, .contact-section {
    padding: 4rem 1.5rem;
  }
  
  /* Mobile Menu */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5,5,7,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: var(--transition);
    z-index: 1500;
  }
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }
  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
  
  .nav-links a {
    font-size: 1.5rem;
  }
  
  /* Keep Language Switcher on mobile, just adjust layout */
  .nav-actions { 
    display: none; /* Hide top Book Now button to save space on mobile */
  }
  .lang-current {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  .mobile-toggle { 
    display: flex; 
  }
  
  /* Typography */
  .huge-title { font-size: 2.2rem; }
  .hero-desc { font-size: 1rem; margin: 1rem auto; }
  
  /* Hero Visuals */
  .hero-visual { height: auto; min-height: 300px; }
  .hero-circle {
    width: 280px;
    height: 280px;
  }
  .hero-photo-frame {
    max-width: 320px;
    aspect-ratio: 3 / 4;
  }
  
  /* Buttons */
  .premium-btn, .outline-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
  }
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  /* Bento Grid */
  .bento-grid, .matrix-grid, .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .bento-card {
    padding: 1.5rem;
  }
  .bento-text h3 {
    font-size: 1.4rem;
  }
  .bento-large, .bento-square {
    grid-column: span 1;
    min-height: 280px;
  }
  
  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  
  /* Contact Form */
  .contact-container { gap: 2rem; }
  .glass-form {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  /* Floating CTA */
  .floating-line-btn {
    bottom: 20px;
    right: 20px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}
