@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --primary-gold: #d4af37;
  --dark-bg: #0a0a0a;
  --light-bg: #1a1a1a;
  --text-light: #ffffff;
  --text-gray: #b0b0b0;
  --accent-silver: #c0c0c0;
  --border-color: #2a2a2a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--primary-gold), transparent) 1;
  transition: all 0.4s ease;
  box-shadow: 0 2px 30px rgba(212, 175, 55, 0.1);
}

header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 40px rgba(212, 175, 55, 0.15);
  border-image: linear-gradient(90deg, transparent, var(--primary-gold), transparent) 1;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  position: relative;
}

nav::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #f4d03f 50%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
  position: relative;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo:hover::after {
  opacity: 1;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 45px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
  color: var(--text-gray);
  transition: all 0.3s ease;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary-gold);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-gold);
}

.nav-links a:hover::before {
  opacity: 1;
}

.nav-links a:hover::after {
  width: 100%;
}

.cart-icon {
  position: relative;
  font-size: 20px;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--primary-gold);
  color: var(--dark-bg);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-gold);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* New Hero Styles */
.hero-new {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
  background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
              linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(212, 175, 55, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(212, 175, 55, 0.2), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(212, 175, 55, 0.2), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(212, 175, 55, 0.3), transparent);
  background-size: 200% 200%;
  animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 40px;
  font-weight: 600;
}

.badge-icon {
  font-size: 16px;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-title {
  font-size: 82px;
  line-height: 1;
  margin-bottom: 30px;
  font-weight: 700;
}

.title-line {
  display: block;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #f4d03f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 50px;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stat-item {
  flex: 1;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-gray);
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  background: var(--border-color);
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-new {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--primary-gold);
  background: transparent;
  color: var(--primary-gold);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-new::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--primary-gold);
  transition: all 0.5s ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.btn-new:hover::before {
  width: 300%;
  height: 300%;
}

.btn-new:hover {
  color: var(--dark-bg);
  border-color: var(--primary-gold);
}

.btn-primary-new {
  background: var(--primary-gold);
  color: var(--dark-bg);
}

.btn-primary-new::before {
  background: var(--text-light);
}

.btn-secondary-new {
  border-color: var(--text-gray);
  color: var(--text-light);
}

.btn-secondary-new::before {
  background: var(--primary-gold);
}

.hero-visual {
  position: relative;
  height: 600px;
}

.visual-card {
  position: absolute;
  border: 2px solid var(--primary-gold);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}

.visual-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
}

.card-1 {
  width: 380px;
  height: 480px;
  top: 0;
  left: 0;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.card-2 {
  width: 320px;
  height: 400px;
  bottom: 0;
  right: 0;
  z-index: 1;
  animation: float 6s ease-in-out infinite 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
  color: var(--primary-gold);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.visual-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  z-index: 0;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
}

/* Trust Bar */
.trust-bar {
  padding: 40px 0;
  background: var(--light-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

.trust-item i {
  font-size: 24px;
  color: var(--primary-gold);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.7) 100%);
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--text-light);
}

.hero-description {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--primary-gold);
  background: transparent;
  color: var(--primary-gold);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-gold);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: var(--dark-bg);
}

.btn-primary {
  background: var(--primary-gold);
  color: var(--dark-bg);
}

.btn-primary::before {
  background: var(--text-light);
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 15px;
  font-weight: 500;
}

.section-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.section-description {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  background: var(--light-bg);
  padding: 50px 40px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
}

.feature-icon {
  font-size: 48px;
  color: var(--primary-gold);
  margin-bottom: 25px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-light);
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.8;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
}

.product-card {
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.product-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  background: #0f0f0f;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-gold);
  color: var(--dark-bg);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-info {
  padding: 30px;
}

.product-category {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 10px;
}

.product-info h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-light);
}

.product-description {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-gold);
  font-family: 'Playfair Display', serif;
}

footer {
  background: linear-gradient(180deg, var(--light-bg) 0%, #0f0f0f 100%);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--primary-gold), transparent) 1;
  padding: 100px 0 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  margin-bottom: 80px;
}

.footer-section h3 {
  font-size: 22px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #f4d03f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 2.2;
  display: block;
  transition: all 0.3s ease;
}

.footer-section a {
  position: relative;
  padding-left: 15px;
}

.footer-section a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  color: var(--primary-gold);
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-gold);
  padding-left: 20px;
}

.footer-section a:hover::before {
  opacity: 1;
}

.footer-bottom {
  border-top: 2px solid var(--border-color);
  padding: 40px 0;
  background: rgba(0, 0, 0, 0.3);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.footer-links a {
  font-size: 13px;
  color: var(--text-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 5px 10px;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.footer-links a:hover::after {
  width: 80%;
}

.copyright {
  color: var(--text-gray);
  font-size: 13px;
  text-align: center;
  margin-top: 30px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.modal-content {
  background: var(--light-bg);
  max-width: 1000px;
  width: 100%;
  border: 1px solid var(--border-color);
  position: relative;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: var(--text-gray);
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--primary-gold);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.modal-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: #0f0f0f;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  padding: 60px 50px;
}

.modal-category {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 15px;
}

.modal-details h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.modal-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
}

.modal-description {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 30px;
}

.modal-features {
  margin-bottom: 30px;
}

.modal-features h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--text-light);
}

.modal-features ul {
  list-style: none;
}

.modal-features li {
  color: var(--text-gray);
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.modal-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: 700;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.quantity-selector button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-light);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quantity-selector button:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.quantity-selector input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-light);
  font-size: 16px;
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 68px;
  }
  
  .collection-grid {
    gap: 20px;
  }
  
  .tech-grid,
  .craftsmanship-section .container {
    gap: 80px;
  }
}

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 56px;
  }
  
  .hero-title {
    font-size: 56px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .hero-visual {
    height: 450px;
    margin: 0 auto;
    max-width: 600px;
  }
  
  .card-1 {
    width: 300px;
    height: 380px;
    left: 20px;
  }
  
  .card-2 {
    width: 260px;
    height: 330px;
    right: 20px;
  }
  
  .hero-stats {
    flex-wrap: wrap;
  }
  
  .tech-grid,
  .craftsmanship-section .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .tech-visual,
  .craft-images {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .collection-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .collection-item {
    height: 300px;
  }
  
  .services-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .modal-body {
    grid-template-columns: 1fr;
  }
  
  .modal-image {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--light-bg);
    flex-direction: column;
    padding: 100px 40px;
    gap: 30px;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border-color);
    z-index: 1001;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .logo {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .hero-new {
    padding: 120px 0 60px;
  }
  
  .hero-badge {
    font-size: 11px;
    padding: 10px 20px;
  }
  
  .hero-lead {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 25px;
    padding: 25px 0;
  }
  
  .stat-divider {
    display: none;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .hero-visual {
    height: 380px;
  }
  
  .card-1 {
    width: 240px;
    height: 300px;
    left: 10px;
  }
  
  .card-2 {
    width: 200px;
    height: 250px;
    right: 10px;
  }
  
  .visual-accent {
    width: 300px;
    height: 300px;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-new {
    width: 100%;
    justify-content: center;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .trust-bar {
    padding: 30px 0;
  }
  
  .trust-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .trust-item {
    font-size: 12px;
    gap: 10px;
  }
  
  .trust-item i {
    font-size: 20px;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .featured-collection,
  .technology-section,
  .craftsmanship-section,
  .services-premium,
  .cta-section {
    padding: 80px 0;
  }
  
  .section-title,
  .collection-title,
  .services-title,
  .cta-title {
    font-size: 36px;
  }
  
  .tech-title,
  .craft-title {
    font-size: 36px;
  }
  
  .collection-tag,
  .tech-tag,
  .craft-tag,
  .services-tag {
    font-size: 11px;
    padding: 8px 20px;
  }
  
  .collection-image {
    height: 400px;
  }
  
  .collection-content {
    padding: 30px;
  }
  
  .collection-content h3 {
    font-size: 26px;
  }
  
  .collection-price {
    font-size: 30px;
  }
  
  .collection-side {
    grid-template-columns: 1fr;
  }
  
  .collection-item {
    height: 280px;
  }
  
  .tech-grid {
    gap: 50px;
  }
  
  .tech-features {
    gap: 20px;
  }
  
  .tech-feature {
    padding: 15px;
  }
  
  .tech-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .tech-badge {
    top: 20px;
    right: 20px;
    padding: 15px 20px;
  }
  
  .badge-number {
    font-size: 26px;
  }
  
  .craft-images {
    height: 500px;
  }
  
  .craft-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .craft-stat {
    padding: 25px 20px;
  }
  
  .services-grid-new {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .service-card-new {
    padding: 40px 30px;
  }
  
  .cta-title {
    font-size: 36px;
  }
  
  .cta-text {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn-new {
    width: 100%;
  }
  
  .cta-info {
    flex-direction: column;
    gap: 20px;
  }
  
  .company-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-details {
    padding: 40px 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 18px;
    letter-spacing: 2px;
  }
  
  nav {
    padding: 20px 0;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-new {
    padding: 100px 0 50px;
  }
  
  .hero-badge {
    font-size: 10px;
    padding: 8px 16px;
    margin-bottom: 30px;
  }
  
  .hero-lead {
    font-size: 15px;
    margin-bottom: 35px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-label {
    font-size: 12px;
  }
  
  .hero-visual {
    height: 320px;
  }
  
  .card-1 {
    width: 200px;
    height: 250px;
    left: 5px;
  }
  
  .card-2 {
    width: 170px;
    height: 210px;
    right: 5px;
  }
  
  .card-label {
    font-size: 13px;
    padding: 15px;
  }
  
  .visual-accent {
    width: 250px;
    height: 250px;
  }
  
  .trust-bar {
    padding: 25px 0;
  }
  
  .trust-items {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .trust-item {
    font-size: 13px;
    justify-content: center;
  }
  
  .featured-collection,
  .technology-section,
  .craftsmanship-section,
  .services-premium,
  .cta-section {
    padding: 60px 0;
  }
  
  .section-title,
  .collection-title,
  .services-title,
  .cta-title {
    font-size: 28px;
  }
  
  .tech-title,
  .craft-title {
    font-size: 28px;
  }
  
  .section-description,
  .tech-description,
  .craft-text,
  .cta-text {
    font-size: 15px;
  }
  
  .collection-tag,
  .tech-tag,
  .craft-tag,
  .services-tag {
    font-size: 10px;
    padding: 8px 16px;
  }
  
  .collection-image {
    height: 300px;
  }
  
  .collection-content {
    padding: 25px;
  }
  
  .collection-content h3 {
    font-size: 22px;
  }
  
  .collection-content p {
    font-size: 13px;
  }
  
  .collection-price {
    font-size: 26px;
  }
  
  .collection-link {
    font-size: 12px;
  }
  
  .collection-item {
    height: 220px;
  }
  
  .item-overlay {
    padding: 20px;
  }
  
  .item-overlay h4 {
    font-size: 18px;
  }
  
  .item-overlay p {
    font-size: 20px;
  }
  
  .tech-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  
  .tech-feature h4 {
    font-size: 16px;
  }
  
  .tech-feature p {
    font-size: 13px;
  }
  
  .tech-badge {
    top: 15px;
    right: 15px;
    padding: 12px 16px;
  }
  
  .badge-number {
    font-size: 22px;
  }
  
  .badge-text {
    font-size: 10px;
  }
  
  .craft-images {
    height: 400px;
  }
  
  .craft-img-main {
    width: 75%;
    height: 65%;
  }
  
  .craft-img-small {
    width: 55%;
    height: 45%;
  }
  
  .craft-stat {
    padding: 20px 15px;
  }
  
  .craft-stat-icon {
    font-size: 30px;
  }
  
  .craft-stat-number {
    font-size: 28px;
  }
  
  .craft-stat-label {
    font-size: 12px;
  }
  
  .service-card-new {
    padding: 35px 25px;
  }
  
  .service-number {
    font-size: 40px;
    top: 15px;
    right: 15px;
  }
  
  .service-icon-new {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .service-card-new h3 {
    font-size: 20px;
  }
  
  .service-card-new p {
    font-size: 13px;
  }
  
  .cta-badge {
    font-size: 11px;
    padding: 10px 20px;
  }
  
  .cta-info-item {
    font-size: 13px;
    justify-content: center;
  }
  
  .btn,
  .btn-new {
    padding: 14px 28px;
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  
  .company-info {
    padding: 30px 0;
    margin: 30px 0;
  }
  
  .company-block h4 {
    font-size: 12px;
  }
  
  .company-block p {
    font-size: 12px;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .footer-bottom {
    padding: 30px 0;
  }
}


/* Featured Collection */
.featured-collection {
  padding: 120px 0;
  background: var(--dark-bg);
}

.collection-header {
  text-align: center;
  margin-bottom: 80px;
}

.collection-tag {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--primary-gold);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.collection-title {
  font-size: 56px;
  color: var(--text-light);
  font-weight: 700;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

.collection-main {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--border-color);
  cursor: pointer;
  transition: all 0.5s ease;
}

.collection-main:hover {
  border-color: var(--primary-gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.collection-image {
  height: 600px;
  overflow: hidden;
  background: #0f0f0f;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.collection-main:hover .collection-image img {
  transform: scale(1.1);
}

.collection-content {
  padding: 40px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.98), rgba(10, 10, 10, 0.95));
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.collection-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-gold);
  color: var(--dark-bg);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}

.collection-content h3 {
  font-size: 32px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.collection-content p {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 20px;
}

.collection-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.collection-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-gold);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.collection-link:hover {
  gap: 15px;
}

.collection-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.collection-item {
  position: relative;
  height: 285px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  cursor: pointer;
  transition: all 0.5s ease;
}

.collection-item:hover {
  border-color: var(--primary-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.collection-item:hover img {
  transform: scale(1.15);
}

.item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
}

.item-overlay h4 {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.item-overlay p {
  font-size: 24px;
  color: var(--primary-gold);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

/* Technology Section */
.technology-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f0f0f 0%, var(--dark-bg) 100%);
  position: relative;
  overflow: hidden;
}

.technology-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.tech-tag {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--primary-gold);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 25px;
}

.tech-title {
  font-size: 48px;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.2;
}

.tech-description {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 40px;
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.tech-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.tech-feature:hover {
  background: rgba(26, 26, 26, 0.8);
  border-color: var(--primary-gold);
  transform: translateX(10px);
}

.tech-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  font-size: 24px;
  flex-shrink: 0;
}

.tech-feature h4 {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 5px;
}

.tech-feature p {
  font-size: 14px;
  color: var(--text-gray);
}

.tech-visual {
  position: relative;
}

.tech-image {
  position: relative;
  border: 2px solid var(--primary-gold);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.tech-image img {
  width: 100%;
  height: auto;
  display: block;
}

.tech-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  padding: 20px 30px;
  background: rgba(10, 10, 10, 0.95);
  border: 2px solid var(--primary-gold);
  text-align: center;
}

.badge-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 5px;
}

.badge-text {
  font-size: 12px;
  color: var(--text-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Craftsmanship Section */
.craftsmanship-section {
  padding: 120px 0;
  background: var(--light-bg);
}

.craftsmanship-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.craft-tag {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--primary-gold);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 25px;
}

.craft-title {
  font-size: 48px;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.2;
}

.craft-text {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 50px;
}

.craft-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.craft-stat {
  text-align: center;
  padding: 30px 20px;
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.craft-stat:hover {
  border-color: var(--primary-gold);
  transform: translateY(-5px);
}

.craft-stat-icon {
  font-size: 36px;
  color: var(--primary-gold);
  margin-bottom: 15px;
}

.craft-stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}

.craft-stat-label {
  font-size: 13px;
  color: var(--text-gray);
  letter-spacing: 1px;
}

.craft-images {
  position: relative;
  height: 600px;
}

.craft-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  border: 2px solid var(--primary-gold);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.craft-img-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  border: 2px solid var(--primary-gold);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.craft-img-main img,
.craft-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.craft-img-main:hover img,
.craft-img-small:hover img {
  transform: scale(1.1);
}

/* Services Premium */
.services-premium {
  padding: 120px 0;
  background: var(--dark-bg);
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-tag {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--primary-gold);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.services-title {
  font-size: 56px;
  color: var(--text-light);
  font-weight: 700;
}

.services-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card-new {
  padding: 50px 40px;
  background: var(--light-bg);
  border: 2px solid var(--border-color);
  position: relative;
  transition: all 0.5s ease;
}

.service-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), #f4d03f);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.service-card-new:hover::before {
  transform: scaleX(1);
}

.service-card-new:hover {
  border-color: var(--primary-gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.1);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.service-icon-new {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  font-size: 32px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.service-card-new:hover .service-icon-new {
  background: var(--primary-gold);
  color: var(--dark-bg);
  transform: scale(1.1);
}

.service-card-new h3 {
  font-size: 22px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.service-card-new p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, #0f0f0f 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 30px;
}

.cta-title {
  font-size: 56px;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.2;
}

.cta-text {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 50px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.cta-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-gray);
  font-size: 14px;
}

.cta-info-item i {
  color: var(--primary-gold);
  font-size: 18px;
}


/* Company Info in Footer */
.company-info {
  margin: 40px 0;
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.company-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.company-block h4 {
  color: var(--primary-gold);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

.company-block p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-gray);
}


/* Extra small devices */
@media (max-width: 360px) {
  .container {
    padding: 0 15px;
  }
  
  .logo {
    font-size: 16px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-lead {
    font-size: 14px;
  }
  
  .hero-visual {
    height: 280px;
  }
  
  .card-1 {
    width: 170px;
    height: 220px;
  }
  
  .card-2 {
    width: 140px;
    height: 180px;
  }
  
  .section-title,
  .collection-title,
  .services-title,
  .cta-title,
  .tech-title,
  .craft-title {
    font-size: 24px;
  }
  
  .btn-new {
    padding: 12px 24px;
    font-size: 10px;
  }
  
  .collection-content h3 {
    font-size: 20px;
  }
  
  .collection-price {
    font-size: 24px;
  }
}

/* Landscape orientation fixes */
@media (max-height: 600px) and (orientation: landscape) {
  .hero-new {
    min-height: auto;
    padding: 100px 0 60px;
  }
  
  .hero-visual {
    display: none;
  }
  
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .stat-divider {
    display: block;
  }
}

/* Tablet landscape specific */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .hero-visual {
    height: 400px;
  }
  
  .collection-side {
    grid-template-columns: 1fr 1fr;
  }
  
  .services-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}
