/* Raqueen Konveksi — Premium Custom Styles */

:root {
  --color-cream: #faf8f5;
  --color-beige: #e8e0d5;
  --color-mocca: #a68b6f;
  --color-mocca-dark: #8b7355;
  --color-gold: #c5a059;
  --color-gold-dark: #a8863f;
  --color-gray-soft: #f5f4f2;
  --color-gray: #9a9590;
  --color-charcoal: #2a2826;
  --color-black: #1a1918;
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.4);
  --shadow-soft: 0 4px 24px rgba(26, 25, 24, 0.06);
  --shadow-luxury: 0 20px 60px rgba(26, 25, 24, 0.08);
  --shadow-gold: 0 8px 28px rgba(197, 160, 89, 0.18);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-feature-settings: "kern" 1, "liga" 1;
  cursor: none;
}

.page-body {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(232, 224, 213, 0.45), transparent 55%),
    linear-gradient(180deg, #faf8f5 0%, #f8f4ef 50%, #faf8f5 100%);
}

body.loading {
  overflow: hidden;
}

/* Custom cursor */
.cursor-dot,
.cursor-ring {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--transition-smooth),
    height 0.3s var(--transition-smooth),
    background 0.3s var(--transition-smooth),
    border-color 0.3s var(--transition-smooth);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(197, 160, 89, 0.5);
  background: transparent;
}

.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: var(--color-gold);
  background: rgba(197, 160, 89, 0.1);
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* Loading screen */
.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--color-cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--transition-smooth),
    visibility 0.6s var(--transition-smooth);
}

.loader-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo-img {
  width: min(220px, 72vw);
  height: auto;
  object-fit: contain;
  margin-bottom: 2rem;
}

.loader-bar {
  width: 120px;
  height: 1px;
  background: var(--color-beige);
  overflow: hidden;
  position: relative;
}

.loader-bar::after {
  content: "";
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold));
  animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderSlide {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 160, 89, 0.22);
  box-shadow: 0 8px 28px rgba(26, 25, 24, 0.07);
}

.glass-dark {
  background: rgba(26, 25, 24, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Floating shapes */
.float-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatDrift 12s ease-in-out infinite;
}

.float-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--color-beige);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.float-shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(166, 139, 111, 0.25);
  bottom: 20%;
  left: -10%;
  animation-delay: -4s;
}

.float-shape-3 {
  width: 200px;
  height: 200px;
  background: rgba(232, 224, 213, 0.6);
  top: 40%;
  left: 30%;
  animation-delay: -8s;
}

@keyframes floatDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--transition-smooth),
    transform 0.8s var(--transition-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--transition-smooth),
    box-shadow 0.3s var(--transition-smooth);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--transition-smooth);
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-luxury);
}

.btn-primary.btn-gold {
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 55%, #d4b56e 100%);
  color: #1a1918;
  box-shadow: 0 4px 18px rgba(197, 160, 89, 0.28);
}

.btn-primary.btn-gold:hover {
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  transition: all 0.3s var(--transition-smooth);
}

.btn-outline:hover {
  background: var(--color-charcoal);
  color: white;
  transform: translateY(-2px);
}

/* Cards */
.card-luxury {
  background: #fff;
  border: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: 0 6px 24px rgba(26, 25, 24, 0.06);
  transition: transform 0.4s var(--transition-smooth),
    box-shadow 0.4s var(--transition-smooth),
    border-color 0.4s var(--transition-smooth);
}

.card-luxury:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 160, 89, 0.4);
  box-shadow: var(--shadow-luxury);
}

.card-luxury.glass {
  background: rgba(255, 255, 255, 0.95);
}

/* Section backgrounds — subtle gradients */
.section-gradient-hero {
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(232, 224, 213, 0.55), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(166, 139, 111, 0.12), transparent 55%),
    linear-gradient(180deg, #faf8f5 0%, #f6f0e8 100%);
}

.section-gradient-pearl {
  background: linear-gradient(175deg, #ffffff 0%, #faf6f0 48%, #ffffff 100%);
}

.section-gradient-soft {
  background: linear-gradient(150deg, #f5f4f2 0%, #ebe4da 50%, #f5f4f2 100%);
}

.section-gradient-warm {
  background: linear-gradient(160deg, #faf8f5 0%, #f2e9de 42%, #faf8f5 100%);
}

/* Brand logo */
.brand-logo {
  display: block;
  object-fit: contain;
  transition: opacity 0.3s var(--transition-smooth), transform 0.3s var(--transition-smooth);
}

.brand-logo-light {
  mix-blend-mode: screen;
}

.navbar-brand-logo {
  height: 2.5rem;
  width: auto;
  max-width: 9.5rem;
  transform-origin: left center;
}

a:hover .navbar-brand-logo {
  opacity: 0.9;
  transform: scale(1.03);
}

.footer-brand-logo {
  height: 2.5rem;
  width: auto;
  max-width: 9rem;
}

/* Navbar */
.navbar-scrolled {
  background: rgba(236, 229, 220, 0.88) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  border-bottom: 1px solid rgba(166, 139, 111, 0.08);
}

/* Footer social — minimal white border */
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  transition:
    color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-btn:hover {
  color: var(--color-gold);
  border-color: rgba(197, 160, 89, 0.85);
  background: rgba(197, 160, 89, 0.1);
  transform: translateY(-2px);
}

.footer-social-btn:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

/* FAQ accordion — bubble cards */
.faq-item {
  background: #2a2826;
  border: none;
  border-radius: 1.25rem;
  box-shadow: 0 10px 28px rgba(26, 25, 24, 0.14);
  overflow: hidden;
  transition:
    box-shadow 0.3s var(--transition-smooth),
    background 0.3s var(--transition-smooth),
    transform 0.3s var(--transition-smooth);
}

.faq-item:hover {
  background: #33302d;
  box-shadow: 0 14px 32px rgba(26, 25, 24, 0.18);
  transform: translateY(-2px);
}

.faq-item.open {
  background: #2a2826;
  box-shadow: 0 14px 36px rgba(26, 25, 24, 0.2);
}

.faq-item .faq-trigger span {
  color: #f5f1ea;
}

.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition-smooth), padding 0.4s var(--transition-smooth);
}

.faq-item.open .faq-answer {
  max-height: 420px;
  border-top: 1px solid rgba(197, 160, 89, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.faq-item .faq-answer p {
  color: rgba(255, 255, 255, 0.65);
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: rgba(197, 160, 89, 0.18);
  border: none;
  transition: transform 0.3s var(--transition-smooth), color 0.3s var(--transition-smooth), background 0.3s var(--transition-smooth);
  color: var(--color-gold);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(197, 160, 89, 0.28);
  color: var(--color-gold);
}

/* Gallery masonry */
.masonry-grid {
  column-count: 3;
  column-gap: 1rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .masonry-grid { column-count: 2; }
}

@media (max-width: 640px) {
  .masonry-grid { column-count: 1; }
}

/* WhatsApp float */
.wa-float {
  animation: waPulse 3s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5); }
}

/* Image hover */
.img-luxury {
  transition: transform 0.6s var(--transition-smooth);
}

.img-luxury:hover {
  transform: scale(1.03);
}

/* Stat counter animation */
.stat-number {
  font-variant-numeric: tabular-nums;
}

/* Pricing table */
.pricing-row:hover {
  background: rgba(232, 224, 213, 0.3);
}

/* Section spacing */
.section-luxury {
  padding-top: clamp(5rem, 12vw, 8rem);
  padding-bottom: clamp(5rem, 12vw, 8rem);
}

/* Hero gradient text */
.text-gradient {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Line decoration */
.line-accent {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), transparent);
  border-radius: 2px;
}

.icon-gold-ring {
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.28);
}

/* Testimonial quote */
.quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--color-beige);
}
