/* ==========================================================================
   AL BIKY SALOON - Luxury Men's Salon Stylesheet
   Theme Colors:
   - Primary Gold: #D4AF37
   - Secondary Gold: #F3E5AB / #AA7C11 (Gradients)
   - Deep Black: #111111
   - Dark Gray: #1E1E1E
   - Card Background: rgba(30, 30, 30, 0.7)
   - Accent White: #FFFFFF
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800;900&family=Cinzel:wght@400;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-gold: #D4AF37;
  --gold-light: #F4D068;
  --gold-dark: #AA820A;
  --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  --gold-shine: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
  --bg-black: #0B0B0B;
  --bg-dark: #111111;
  --bg-card: #161616;
  --bg-surface: #1E1E1E;
  --glass-bg: rgba(22, 22, 22, 0.75);
  --glass-border: rgba(212, 175, 55, 0.25);
  --text-white: #FFFFFF;
  --text-muted: #A0A0A0;
  --text-gold: #D4AF37;
  
  --font-heading: 'Cinzel', 'Cairo', serif;
  --font-arabic: 'Cairo', sans-serif;
  --font-body: 'Poppins', 'Cairo', sans-serif;

  --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --box-shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
  --box-shadow-dark: 0 15px 35px rgba(0, 0, 0, 0.7);
}

/* Reset & Base Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  direction: rtl; /* Primary language Arabic with English luxury accents */
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-black);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-black);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), var(--primary-gold));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: var(--primary-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  box-shadow: 0 0 15px var(--primary-gold);
}

.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

body.hovered .custom-cursor {
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  box-shadow: 0 0 25px #FFFFFF;
}

body.hovered .custom-cursor-follower {
  width: 55px;
  height: 55px;
  border-color: var(--primary-gold);
}

/* Scroll Progress Bar */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 10001;
}

.scroll-progress-bar {
  height: 100%;
  background: var(--gold-gradient);
  width: 0%;
  box-shadow: 0 0 10px var(--primary-gold);
}

/* Loading Screen */
.loader-screen {
  position: fixed;
  inset: 0;
  background: var(--bg-black);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-gold);
  padding: 5px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  margin-bottom: 25px;
  animation: pulseGlow 2s infinite ease-in-out;
}

.loader-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: var(--primary-gold);
  margin-bottom: 20px;
  font-weight: 700;
}

.loader-bar-wrap {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.loader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  box-shadow: 0 0 10px var(--primary-gold);
  animation: loadProgress 2s ease-in-out forwards;
}

/* Typography & General Classes */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1.2;
}

.gold-text {
  color: var(--primary-gold);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-padding {
  padding: 110px 0;
  position: relative;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.section-title-line {
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

.section-title-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--primary-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  z-index: 1;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000000;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
  color: #000000;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
  border-color: var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  padding: 14px 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--primary-gold);
  transition: transform 0.4s ease;
}

.nav-brand:hover .nav-logo {
  transform: rotate(360deg);
}

.nav-title-group {
  display: flex;
  flex-direction: column;
}

.nav-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 1.5px;
  color: var(--text-white);
  line-height: 1.1;
}

.nav-subtitle {
  font-size: 0.7rem;
  color: var(--primary-gold);
  letter-spacing: 2px;
}

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

.nav-link {
  color: #CCCCCC;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

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

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

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

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--primary-gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.6) 0%, rgba(11, 11, 11, 0.95) 100%),
              url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 850px;
  width: 100%;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 22px;
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  margin-bottom: 25px;
  font-size: 0.9rem;
  color: var(--primary-gold);
  box-shadow: var(--box-shadow-gold);
}

.hero-logo-large {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  padding: 6px;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
  margin: 0 auto 25px auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-logo-large:hover {
  transform: scale(1.05) rotate(5deg);
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
  direction: ltr;
  display: inline-block;
}
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  color: #DDDDDD;
  margin-bottom: 35px;
  letter-spacing: 2px;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 2px;
  transition: color 0.3s ease;
  z-index: 2;
}

.scroll-indicator:hover {
  color: var(--primary-gold);
}

.mouse-icon {
  width: 24px;
  height: 38px;
  border: 2px solid var(--primary-gold);
  border-radius: 12px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background: var(--primary-gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite ease-in-out;
}

/* About Section */
.about {
  background-color: var(--bg-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--box-shadow-dark);
  filter: brightness(0.9);
  transition: transform 0.5s ease;
}

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

.about-experience-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--bg-surface);
  border: 2px solid var(--primary-gold);
  border-radius: 8px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--box-shadow-gold);
  backdrop-filter: blur(10px);
}

.exp-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-gold);
}

.exp-text {
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--text-white);
  font-weight: 600;
}

.about-text-content {
  padding-left: 20px;
}

.about-description {
  color: #CCCCCC;
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.about-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 35px;
}

.about-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}

.about-features-list i {
  color: var(--primary-gold);
  font-size: 1.1rem;
}

/* Services Section */
.services {
  background-color: var(--bg-black);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 35px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--transition-smooth);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.12);
  background: rgba(30, 30, 30, 0.85);
}

.service-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.4s ease;
}

.service-icon-wrap i {
  font-size: 1.8rem;
  color: var(--primary-gold);
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon-wrap {
  background: var(--gold-gradient);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.service-card:hover .service-icon-wrap i {
  color: #000000;
  transform: scale(1.1);
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;

}

.service-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.service-card:hover .service-link {
  gap: 14px;
}

/* Why Choose Us Section */
.why-us {
  background-color: var(--bg-dark);
  position: relative;
}

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

.why-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 32px 26px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.4s ease;
}

.why-card:hover {
  background: var(--bg-surface);
  border-color: var(--glass-border);
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-dark);
}

.why-icon {
  font-size: 2.2rem;
  color: var(--primary-gold);
  flex-shrink: 0;
}

.why-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
  background-color: var(--bg-black);
}

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

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.gallery-item.tall {
  height: 380px;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  transform: translateY(15px);
  transition: transform 0.4s ease;
}

.gallery-category {
  font-size: 0.85rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-item:hover .gallery-title {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(15px);
  z-index: 10005;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 6px;
  border: 1px solid var(--primary-gold);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  left: 0;
  color: #FFFFFF;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--primary-gold);
}

/* Customer Reviews / Testimonials */
.reviews {
  background-color: var(--bg-dark);
}

.slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.review-slide {
  min-width: 100%;
  padding: 10px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  position: relative;
  box-shadow: var(--box-shadow-dark);
}

.quote-icon {
  font-size: 2.5rem;
  color: rgba(212, 175, 55, 0.3);
  margin-bottom: 15px;
}

.stars {
  color: var(--primary-gold);
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.review-text {
  font-size: 1.1rem;
  color: #DDDDDD;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.8;
}

.reviewer-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.reviewer-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--primary-gold);
  color: #000000;
  box-shadow: 0 0 15px var(--primary-gold);
}

/* Statistics Counter Section */
.stats {
  background: linear-gradient(180deg, var(--bg-black) 0%, rgba(30, 30, 30, 0.8) 50%, var(--bg-black) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

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

.stat-item {
  padding: 30px 15px;
  background: rgba(22, 22, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border);
}

.stat-icon {
  font-size: 2.2rem;
  color: var(--primary-gold);
  margin-bottom: 14px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Contact Section */
.contact {
  background-color: var(--bg-dark);
}

.contact-grid {
  display: block;
  max-width: 950px;
  margin: 0 auto;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--glass-border);
  box-shadow: var(--box-shadow-gold);
  transform: translateX(-5px);
}

.info-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-details p, .info-details a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.info-details a:hover {
  color: var(--primary-gold);
}

.copy-btn, .action-link-btn {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--glass-border);
  color: var(--primary-gold);
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.copy-btn:hover, .action-link-btn:hover {
  background: var(--primary-gold);
  color: #000000;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--box-shadow-dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: #DDDDDD;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(11, 11, 11, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

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

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--bg-surface);
  border: 1px solid var(--primary-gold);
  color: var(--text-white);
  padding: 14px 24px;
  border-radius: 8px;
  box-shadow: var(--box-shadow-gold);
  z-index: 10002;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-notification i {
  color: var(--primary-gold);
  font-size: 1.2rem;
}

/* Footer */
.footer {
  background-color: var(--bg-black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.footer-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  padding: 4px;
  margin-bottom: 18px;
  object-fit: cover;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 6px;
  letter-spacing: 2px;
}

.footer-tagline {
  color: var(--primary-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-gold);
  color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 0 15px var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.back-to-top {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow-dark);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-gold);
  color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 0 20px var(--primary-gold);
}
