/* 
   Argjendaria Kajolli - Restructured & Optimized Styling
   Preloader, Tab styles, Gold sweep animations, and Mobile optimizations
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- DESIGN TOKENS --- */
:root {
  --bg-dark: #070707;
  --bg-dark-card: #0f0f0f;
  --bg-dark-card-hover: #161616;
  
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #aa7c11;
  --gold-gradient: linear-gradient(135deg, #f5d77f 0%, #d4af37 50%, #aa7c11 100%);
  --gold-gradient-glow: linear-gradient(135deg, rgba(245, 215, 127, 0.1) 0%, rgba(212, 175, 55, 0.1) 50%, rgba(170, 124, 17, 0.02) 100%);
  
  --text-white: #ffffff;
  --text-gray-light: #e2e2e2;
  --text-gray-muted: #9c9c9c;
  --text-dark: #0a0a0a;
  
  --border-gold-soft: 1px solid rgba(212, 175, 55, 0.15);
  --border-gold-bright: 1px solid rgba(212, 175, 55, 0.5);
  --shadow-gold-soft: 0 5px 25px rgba(212, 175, 55, 0.05);
  --shadow-gold-glow: 0 0 30px rgba(212, 175, 55, 0.18);
  --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.7);

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* --- RESET & BASIC STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-gray-light);
  font-family: var(--font-sans);
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

body {
  line-height: 1.5;
  background: var(--bg-dark);
}

/* Luxury Gold Dust Background Animation */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
  animation: bgGlowAnim 15s ease-in-out infinite alternate;
}

@keyframes bgGlowAnim {
  0% { transform: scale(1); }
  100% { transform: scale(1.05) translate(2%, 2%); }
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, textarea, select {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
}

/* --- GOLD PRELOADER --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #050505;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.preloader-ring {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top: 2px solid var(--gold-primary);
  border-bottom: 2px solid var(--gold-primary);
  animation: spinPreloader 2s linear infinite;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.preloader-ring::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-left: 2px solid var(--gold-light);
  border-right: 2px solid var(--gold-light);
  animation: spinPreloaderRev 1.5s linear infinite;
}

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

.preloader-brand {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  color: var(--text-white);
  animation: pulsePreloaderText 2s ease-in-out infinite alternate;
}

.preloader-tagline {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-top: 5px;
}

@keyframes spinPreloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spinPreloaderRev {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

@keyframes pulsePreloaderText {
  0% { opacity: 0.7; letter-spacing: 0.12em; }
  100% { opacity: 1; letter-spacing: 0.18em; }
}

/* --- TYPOGRAPHY UTILITIES --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-white);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--gold-primary);
  font-weight: 600;
}

.subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  display: inline-block;
  font-weight: 600;
}

.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-glow);
}

.btn-secondary {
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.01);
}

.btn-secondary:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

/* --- HEADER & NAVIGATION --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.header.scrolled {
  background: rgba(7, 7, 7, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.header.scrolled .header-container {
  padding: 0.75rem 2rem;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-top: -3px;
}

.nav-menu {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  list-style: none;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-gray-light);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--gold-primary);
}

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

.nav-cta {
  font-size: 0.75rem;
  padding: 0.5rem 1.1rem;
  border-radius: 4px;
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  transition: var(--transition-smooth);
}

/* --- SECTION GENERAL --- */
.section {
  padding: 5.5rem 1.5rem;
  position: relative;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

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

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 550px;
}

.landmark-badge {
  background: rgba(212, 175, 55, 0.08);
  border: var(--border-gold-soft);
  color: var(--gold-light);
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.15;
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.hero-description {
  font-size: 1rem;
  color: var(--text-gray-muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
}

/* Showcase Rotating Ring */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-frame {
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: var(--border-gold-soft);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: rotateFrame 45s linear infinite;
}

.showcase-inner-frame {
  width: 85%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.1);
  position: absolute;
  animation: rotateFrame 30s linear infinite reverse;
}

.showcase-img-wrap {
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.12);
  z-index: 2;
  position: relative;
  animation: rotateFrame 45s linear infinite reverse; /* Keeps the ring oriented correctly */
}

.showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes rotateFrame {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --- UNIFIED REPAIRS SECTION --- */
.slider-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.repair-services-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.compact-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1.2rem;
  margin-bottom: 2rem;
}

.compact-service-item {
  display: flex;
  gap: 0.8rem;
}

.csi-icon {
  color: var(--gold-primary);
  font-size: 0.8rem;
  line-height: 1.4;
  flex-shrink: 0;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.csi-text h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.csi-text p {
  font-size: 0.8rem;
  color: var(--text-gray-muted);
  line-height: 1.4;
}

.slider-container-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.slider-container {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-dark), 0 0 25px rgba(212, 175, 55, 0.03);
  border: var(--border-gold-soft);
  user-select: none;
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.slider-before-label, .slider-after-label {
  position: absolute;
  bottom: 15px;
  background: rgba(7, 7, 7, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 10;
}

.slider-before-label { left: 15px; }
.slider-after-label { right: 15px; }

.slider-after-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.slider-after-overlay-inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold-primary);
  z-index: 5;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.slider-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
  cursor: ew-resize;
  border: 2px solid var(--bg-dark);
  color: var(--text-dark);
  font-size: 0.9rem;
  transition: transform 0.15s ease;
}

.slider-handle-button:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.slider-drag-instructions {
  font-size: 0.8rem;
  color: var(--text-gray-muted);
}

/* --- TAB SYSTEM (PIERCING & CAROUSEL) --- */
.tab-header-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1px;
}

.tab-trigger {
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--text-gray-muted);
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.tab-trigger::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.tab-trigger.active {
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.tab-trigger.active::after {
  width: 100%;
}

.tab-trigger:hover {
  color: var(--text-white);
}

.tab-viewport {
  position: relative;
  min-height: 400px;
}

.tab-pane {
  display: none;
  opacity: 0;
}

.tab-pane.active {
  display: block;
  animation: tabFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tab 1: Piercing Specifics */
.piercing-perks {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.perk-item {
  position: relative;
  padding-left: 1.8rem;
  font-size: 0.9rem;
  color: var(--text-gray-muted);
}

.perk-item::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-primary);
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.perk-item strong {
  color: var(--text-white);
}

.piercing-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: var(--border-gold-soft);
  box-shadow: var(--shadow-dark);
  aspect-ratio: 4/3;
  width: 100%;
}

.piercing-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.piercing-visual:hover img {
  transform: scale(1.04);
}

.piercing-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(7, 7, 7, 0.95), rgba(7, 7, 7, 0.3) 60%, transparent);
  padding: 2rem 1.5rem 1.5rem;
}

/* Tab 2: Carousel Specifics */
.carousel-outer {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.carousel-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--bg-dark-card);
  border: var(--border-gold-soft);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-dark);
  transition: var(--transition-smooth);
}

/* Gold Sweep Shine Effect on Hover */
.carousel-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(212, 175, 55, 0.18) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
}

.carousel-card:hover::after {
  left: 140%;
  transition: all 1.2s ease-in-out;
}

.carousel-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold-glow);
}

.carousel-img-wrap {
  width: 100%;
  aspect-ratio: 1.1;
  overflow: hidden;
  background: #141414;
}

.carousel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.carousel-card:hover .carousel-img-wrap img {
  transform: scale(1.04);
}

.carousel-details {
  padding: 1.2rem;
  text-align: center;
}

.carousel-title {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  font-family: var(--font-serif);
}

.carousel-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: var(--border-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition-fast);
  background: rgba(255, 255, 255, 0.01);
}

.carousel-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

/* --- CONTACT & LOCATION --- */
.contact-grid {
  /* Inherits grid-2 */
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: var(--border-gold-soft);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(212, 175, 55, 0.01);
  box-shadow: var(--shadow-gold-soft);
}

.contact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 0.2rem;
}

.contact-value {
  color: var(--text-white);
  font-size: 0.95rem;
}

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

.landmark-tag {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold-light);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: var(--border-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--text-gray-light);
  transition: var(--transition-fast);
  background: rgba(255, 255, 255, 0.01);
}

.social-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

/* Contact Form Panel */
.contact-form-panel {
  background: var(--bg-dark-card);
  border: var(--border-gold-soft);
  border-radius: 8px;
  padding: 2.2rem 2.2rem;
  box-shadow: var(--shadow-dark);
  position: relative;
}

/* Glow sweep shine on form panel */
.contact-form-panel::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(212, 175, 55, 0.08) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
}

.contact-form-panel:hover::after {
  left: 140%;
  transition: all 1.5s ease-in-out;
}

.form-group {
  margin-bottom: 1.2rem;
}

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

.form-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-gray-muted);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.01);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.9rem;
}

select.form-control option {
  background-color: var(--bg-dark-card);
  color: var(--text-white);
  padding: 10px;
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.form-status {
  padding: 0.8rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
  font-size: 0.8rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.25);
  color: #2ecc71;
}

/* --- FOOTER --- */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: #040404;
  padding: 3.5rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

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

.footer-nav {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials .social-btn {
  width: 38px;
  height: 38px;
  font-size: 0.95rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--text-gray-muted);
  letter-spacing: 0.05em;
  text-align: center;
}

/* --- SCROLL REVEALS --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .grid-2 {
    gap: 2.5rem;
  }
  
  .slider-wrapper {
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .slider-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero {
    min-height: auto;
    padding: 130px 0 60px;
  }
  
  .hero-visual {
    margin-top: 2rem;
    order: 2;
  }
  
  .hero-content {
    order: 1;
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-info-panel {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 1.25rem;
  }
  
  .header-container {
    padding: 1rem 1.25rem;
  }
  
  .header.scrolled .header-container {
    padding: 0.6rem 1.25rem;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #090909;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
    transition: var(--transition-smooth);
    z-index: 1000;
    overflow-y: auto;
    padding: 2.5rem 2rem;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .header.scrolled .nav-menu {
    background: rgba(9, 9, 9, 0.98);
  }
  
  /* Hamburger active state */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .carousel-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
  
  .tab-trigger {
    padding: 0.8rem 1.5rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 580px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .showcase-frame {
    max-width: 250px;
    margin: 0 auto;
  }
  
  .carousel-card {
    flex: 0 0 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-form-panel {
    padding: 1.8rem 1.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .tab-header-container {
    flex-direction: row;
    width: 100%;
  }
  
  .tab-trigger {
    flex: 1;
    text-align: center;
    padding: 0.8rem 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
  }
  
  .compact-services-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
