/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@200;300;400;500;600;700&display=swap");

/* CSS Variables */
:root {
  --primary-gold: #d4af37;
  --secondary-gold: #f7dc6f;
  --dark-gold: #b8860b;
  --light-gold: #fff8dc;
  --pure-white: #ffffff;
  --cream: #fff9e6;
  --dark-text: #2c2c2c;
  --light-text: #666666;
  --shadow-light: 0 5px 15px rgba(212, 175, 55, 0.1);
  --shadow-medium: 0 10px 30px rgba(212, 175, 55, 0.2);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f7dc6f 100%);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* Mobile-First Base Styles */
body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
  background: var(--pure-white);
  overflow-x: hidden;
}

/* Container - Mobile First */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 1.2;
}

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

/* Loading Screen - FIXED */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--pure-white) 0%, var(--cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: var(--transition);
}

.loading-content {
  text-align: center;
  color: var(--primary-gold);
  padding: 2rem;
}

.crown-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: crownFloat 2s ease-in-out infinite;
}

.loading-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 1rem;
}

.loading-progress {
  height: 100%;
  background: var(--gradient-gold);
  width: 0%;
  animation: loadingProgress 3s ease-in-out forwards;
}

.loading-text {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Navigation - Mobile First */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  z-index: 1000;
  padding: 0.75rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.crown-logo {
  font-size: 1.2rem;
  animation: crownSpin 10s linear infinite;
}

.nav-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-light);
  flex-direction: column;
  padding: 1rem 0;
}

.nav-menu.active {
  display: flex;
}

.nav-link {
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--dark-text);
  text-align: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
}

.nav-link:last-child {
  border-bottom: none;
}

.nav-link:hover {
  color: var(--primary-gold);
  background: rgba(212, 175, 55, 0.05);
}

.nav-appointment {
  display: none;
}

.btn-appointment {
  background: var(--gradient-gold);
  color: var(--pure-white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--primary-gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* Buttons - Mobile Friendly */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  min-height: 48px;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--pure-white);
  box-shadow: var(--shadow-light);
}

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

.btn-secondary {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
  background: var(--primary-gold);
  color: var(--pure-white);
}

.btn-elegant {
  background: var(--gradient-gold);
  color: var(--pure-white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: var(--shadow-medium);
}

/* Hero Section - FIXED & CENTERED */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(44, 62, 80, 0.7) 0%,
    rgba(212, 175, 55, 0.4) 50%,
    rgba(44, 62, 80, 0.7) 100%
  );
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100%;
}

.hero-content {
  text-align: center;
  color: var(--pure-white);
  padding: 2rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--primary-gold);
  color: var(--pure-white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--pure-white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.title-main {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
  color: var(--primary-gold);
  text-shadow: 0 4px 8px rgba(212, 175, 55, 0.5);
}

.title-subtitle {
  display: block;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--pure-white);
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-description {
  font-size: 1rem;
  color: var(--pure-white);
  margin: 0 auto 2rem;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
}

.hero-buttons .btn {
  width: 100%;
  max-width: 250px;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1.5rem 1rem;
  max-width: 280px;
  margin: 0 auto;
}

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

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-gold);
  display: block;
  margin-bottom: 0.25rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--pure-white);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--pure-white);
  z-index: 3;
}

.scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: var(--pure-white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.scroll-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
  color: var(--primary-gold);
  font-size: 1.2rem;
}

/* Sections - Mobile First */
section {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--pure-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1rem;
  color: var(--light-text);
  line-height: 1.6;
}

/* About Section - FIXED */
.about {
  background: linear-gradient(135deg, var(--pure-white) 0%, var(--cream) 100%);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-quote {
  background: var(--pure-white);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--primary-gold);
  position: relative;
  margin-bottom: 2rem;
}

.about-quote i {
  font-size: 1.2rem;
  color: var(--primary-gold);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.about-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--dark-text);
  line-height: 1.5;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.quote-author {
  text-align: right;
  font-weight: 600;
  color: var(--primary-gold);
  font-size: 0.85rem;
  padding-left: 1.5rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--pure-white);
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: var(--pure-white);
  font-size: 1.1rem;
}

.feature-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--light-text);
  line-height: 1.5;
  font-size: 0.9rem;
}

.visual-card {
  background: var(--pure-white);
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  border: 2px solid var(--primary-gold);
}

.visual-card .card-image {
  height: 200px;
  overflow: hidden;
}

.visual-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 1.25rem;
  text-align: center;
}

.card-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.card-content p {
  color: var(--light-text);
  font-size: 0.9rem;
}

/* Collections Section */
.services {
  background: var(--pure-white);
}

.collections-showcase {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.collection-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  position: relative;
}

.collection-image {
  height: 250px;
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.collection-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    transparent 0%,
    rgba(0, 0, 0, 0.7) 70%,
    rgba(0, 0, 0, 0.9) 100%
  );
  padding: 1.5rem 1.25rem 1.25rem;
  color: var(--pure-white);
}

.collection-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.collection-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}

.collections-cta-simple {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, var(--light-gold) 0%, var(--cream) 100%);
  border-radius: 20px;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.collections-cta-simple h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.collections-cta-simple p {
  font-size: 1rem;
  color: var(--light-text);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Coming Soon Section */
.coming-soon {
  padding: 3rem 0;
  position: relative;
  background: var(--dark-text);
  color: var(--pure-white);
  overflow: hidden;
}

.coming-soon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.coming-soon-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(44, 62, 80, 0.9) 0%,
    rgba(212, 175, 55, 0.7) 50%,
    rgba(44, 62, 80, 0.9) 100%
  );
  z-index: 2;
}

.coming-soon .container {
  position: relative;
  z-index: 3;
}

.coming-soon-content {
  text-align: center;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.2);
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
}

.coming-soon-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coming-soon-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: #ddd;
}

.coming-soon-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-preview {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  text-align: center;
}

.feature-preview .feature-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.1rem;
  color: var(--pure-white);
}

.feature-preview h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-gold);
}

.feature-preview p {
  color: #ccc;
  line-height: 1.5;
  font-size: 0.9rem;
}

.countdown-timer {
  margin-bottom: 2rem;
}

.countdown-label {
  font-size: 0.9rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-display {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.time-unit {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--primary-gold);
  border-radius: 10px;
  padding: 0.75rem 0.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  min-width: 60px;
}

.time-number {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1;
}

.time-label {
  display: block;
  font-size: 0.65rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

.time-separator {
  font-size: 1.3rem;
  color: var(--primary-gold);
  font-weight: bold;
  display: flex;
  align-items: center;
}

/* Contact Section */
.contact {
  background: var(--pure-white);
  padding: 4rem 0;
}

.contact .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--pure-white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Desktop layout */
@media (min-width: 1024px) {
  .contact-content {
    flex-direction: row;
    align-items: flex-start;
  }

  .contact-info {
    flex: 1;
    max-width: 400px;
  }

  .contact-form-container {
    flex: 1;
    max-width: 600px;
  }
}

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

.info-card {
  background: var(--pure-white);
  padding: 1.25rem;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  gap: 1rem;
}

.info-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  color: var(--pure-white);
  font-size: 1.1rem;
}

.info-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.info-content p {
  color: var(--light-text);
  line-height: 1.5;
  font-size: 0.9rem;
}

.form-card {
  background: linear-gradient(135deg, var(--pure-white) 0%, var(--cream) 100%);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  border: 2px solid rgba(212, 175, 55, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--light-text);
  font-size: 0.9rem;
}

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

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Desktop layout for form row */
@media (min-width: 768px) {
  .form-row {
    flex-direction: row;
  }

  .form-row .form-group {
    flex: 1;
  }
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 0 0.5rem 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  font-size: 1rem;
  color: var(--dark-text);
  transition: var(--transition);
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--primary-gold);
}

.form-group label {
  position: absolute;
  top: 0.875rem;
  left: 0;
  color: var(--light-text);
  font-size: 1rem;
  transition: var(--transition);
  pointer-events: none;
  transform-origin: left top;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
  top: 0;
  font-size: 0.75rem;
  color: var(--primary-gold);
  font-weight: 600;
  transform: translateY(-0.5rem);
}

.btn-submit {
  background: var(--gradient-gold);
  color: var(--pure-white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-submit:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .btn-submit {
    width: auto;
    align-self: center;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-text) 0%, #1a1a1a 100%);
  color: var(--pure-white);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo i {
  color: var(--primary-gold);
  font-size: 1.3rem;
  animation: crownSpin 15s linear infinite;
}

.footer-logo h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.footer-tagline {
  color: #ccc;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-3px);
}

.footer-links,
.footer-services,
.footer-contact {
  text-align: center;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1rem;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
}

.footer-links li,
.footer-services li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-services a {
  color: #ccc;
  transition: var(--transition);
  font-size: 0.9rem;
}

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

.contact-details p {
  color: #ccc;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.contact-details i {
  color: var(--primary-gold);
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  color: #ccc;
  font-size: 0.85rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
  box-shadow: var(--shadow-heavy);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  animation: none;
}

.float-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark-text);
  color: var(--pure-white);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .float-tooltip {
  opacity: 1;
}

/* Animations */
@keyframes crownFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes loadingProgress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

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

@keyframes whatsappPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/* Loading screen fade out */
.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Responsive Design - Progressive Enhancement */
@media (min-width: 480px) {
  .container {
    max-width: 480px;
    padding: 0 1.5rem;
  }

  .loading-title {
    font-size: 1.8rem;
  }

  .loading-bar {
    width: 250px;
  }

  .crown-icon {
    font-size: 3rem;
  }

  .title-main {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-buttons .btn {
    width: auto;
    min-width: 180px;
  }

  .hero-stats {
    flex-direction: row;
    max-width: 400px;
    gap: 1rem;
  }

  .stat-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(
      to bottom,
      transparent,
      var(--primary-gold),
      transparent
    );
  }

  .collections-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
    padding: 0 2rem;
  }

  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    gap: 2rem;
    background: transparent;
    box-shadow: none;
    padding: 0;
    width: auto;
  }

  .nav-link {
    padding: 0;
    border-bottom: none;
    position: relative;
  }

  .nav-link::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
    transform: translateX(-50%);
  }

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

  .nav-appointment {
    display: block;
  }

  .hamburger {
    display: none;
  }

  .title-main {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .about-content {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }

  .about-text {
    flex: 1.2;
  }

  .about-visual {
    flex: 0.8;
  }

  .visual-card .card-image {
    height: 300px;
  }

  .collections-showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .coming-soon-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .countdown-display {
    gap: 1rem;
  }

  .time-unit {
    min-width: 80px;
    padding: 1rem 0.75rem;
  }

  .contact-content {
    flex-direction: row;
    gap: 3rem;
  }

  .form-row {
    flex-direction: row;
    gap: 2rem;
  }

  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    text-align: left;
  }

  .footer-main {
    text-align: left;
  }

  .footer-logo {
    justify-content: flex-start;
  }

  .social-links {
    justify-content: flex-start;
  }

  .contact-details p {
    justify-content: flex-start;
  }
}

/* Scroll to Top Button - Luxury Design */
.scroll-top {
  position: fixed;
  bottom: 8rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--shadow-medium);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  animation: scrollTopPulse 3s ease-in-out infinite;
}

.scroll-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-heavy);
  border-color: rgba(255, 255, 255, 0.4);
  animation: none;
}

.scroll-top:active {
  transform: translateY(-2px) scale(1.05);
}

.scroll-top i {
  transition: var(--transition);
}

.scroll-top:hover i {
  transform: translateY(-2px);
}

/* Scroll Tooltip */
.scroll-tooltip {
  position: absolute;
  right: 65px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark-text);
  color: var(--pure-white);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.scroll-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark-text);
}

.scroll-top:hover .scroll-tooltip {
  opacity: 1;
}

/* Pulse Animation */
@keyframes scrollTopPulse {
  0%,
  100% {
    box-shadow: var(--shadow-medium);
  }
  50% {
    box-shadow: var(--shadow-heavy), 0 0 0 8px rgba(212, 175, 55, 0.1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .scroll-top {
    width: 45px;
    height: 45px;
    font-size: 1rem;
    bottom: 7rem;
    right: 1rem;
  }

  .scroll-tooltip {
    display: none; /* Hide tooltip on mobile */
  }
}

@media (max-width: 480px) {
  .scroll-top {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
    bottom: 6.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }

  .title-main {
    font-size: 4rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .hero-description {
    max-width: 70%;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
