/* ============================================
   LUX CORP IT DIVISION - LUXURY ELEGANCE THEME
   Premium Sophisticated Design System
   ============================================ */

/* CSS Reset & Custom Properties */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Luxury Color Palette */
  --gold-primary: #c9a962;
  --gold-light: #e8d5a3;
  --gold-dark: #8b7335;
  --champagne: #f7e7ce;
  
  --bg-cream: #faf8f5;
  --bg-white: #ffffff;
  --bg-dark: #1a1a1a;
  --bg-charcoal: #2d2d2d;
  
  /* Elegant Dark Tones */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  
  /* Text Colors */
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #6b7280;
  --text-white: #ffffff;
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
  --gradient-dark: linear-gradient(180deg, var(--slate-900) 0%, var(--slate-800) 100%);
  --gradient-cream: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-white) 100%);
  
  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 8px 30px rgba(201, 169, 98, 0.25);
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-padding: clamp(80px, 12vh, 160px);
  --container-max: 1300px;
  
  /* Transitions */
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Elegant Background Pattern */
.luxury-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--bg-cream);
  overflow: hidden;
}

.luxury-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(201, 169, 98, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(201, 169, 98, 0.03) 0%, transparent 50%);
}

.pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a962' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Navigation */
.luxury-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 3rem;
  background: transparent;
  transition: var(--transition-smooth);
}

.luxury-nav.scrolled {
  padding: 1rem 3rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.nav-logo img {
  height: 55px;
  transition: var(--transition-smooth);
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 2px;
}

.nav-logo-text span {
  color: var(--gold-primary);
}

.nav-menu {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  position: relative;
  padding: 0.75rem 1.5rem;
  color: var(--text-medium);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 30px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 3rem 100px;
  position: relative;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-white) 100%);
}

.hero-container {
  max-width: var(--container-max);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-content {
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-white);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
}

.hero-badge i {
  color: var(--gold-primary);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-title .gold-text {
  color: var(--gold-primary);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-features {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-feature-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  color: var(--bg-white);
  font-size: 1rem;
}

.hero-feature span {
  font-size: 0.9rem;
  color: var(--text-medium);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out 0.2s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-card {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(201, 169, 98, 0.15);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.hero-card-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.hero-card-header img {
  height: 80px;
  margin-bottom: 1rem;
}

.hero-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.hero-card-header p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.hero-stat {
  padding: 1rem;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

/* Buttons */
.btn-luxury {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--bg-white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 169, 98, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--gold-primary);
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: var(--bg-white);
  transform: translateY(-3px);
}

/* Light outline button for dark backgrounds */
.section-dark .btn-outline {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.section-dark .btn-outline:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
  border-color: var(--gold-primary);
}

.btn-dark {
  background: var(--slate-900);
  color: var(--text-white);
}

.btn-dark:hover {
  background: var(--slate-800);
  transform: translateY(-3px);
}

/* Sections */
.section {
  padding: var(--section-padding) 3rem;
  position: relative;
}

.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-white {
  background: var(--bg-white);
}

.section-cream {
  background: var(--bg-cream);
}

.section-dark {
  background: var(--gradient-dark);
  color: var(--text-white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.section-dark .section-tag {
  background: rgba(201, 169, 98, 0.15);
  border-color: rgba(201, 169, 98, 0.4);
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-dark .section-title {
  color: var(--text-white);
}

.section-title .gold-text {
  color: var(--gold-primary);
  font-style: italic;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 169, 98, 0.1);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-gold);
  transition: var(--transition-slow);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.05) 100%);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--gold-primary);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-medium);
  font-size: 0.9rem;
}

.service-list li i {
  color: var(--gold-primary);
  font-size: 0.7rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--gold-primary);
  border-radius: 20px;
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
}

.about-image-frame {
  height: 500px;
  overflow: hidden;
}

.about-image-frame img {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.1s ease-out;
}

.about-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--bg-white);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(201, 169, 98, 0.2);
  text-align: center;
}

.about-badge-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-primary);
  line-height: 1;
}

.about-badge-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.about-content h2 .gold-text {
  color: var(--gold-primary);
  font-style: italic;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  border-radius: 12px;
  color: var(--bg-white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-feature h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--slate-800);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  transition: var(--transition-smooth);
  border: 1px solid rgba(201, 169, 98, 0.1);
}

.pricing-card.featured {
  background: linear-gradient(180deg, var(--slate-800) 0%, var(--slate-900) 100%);
  border: 2px solid var(--gold-primary);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--bg-white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pricing-header {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.pricing-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.2) 0%, rgba(201, 169, 98, 0.1) 100%);
  border-radius: 20px;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--gold-primary);
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.pricing-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.pricing-list {
  list-style: none;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-service {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.pricing-price {
  font-weight: 700;
  color: var(--gold-primary);
}

.pricing-note {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.25rem;
}

.pricing-footer {
  margin-top: 2rem;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-item-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  border-radius: 14px;
  color: var(--bg-white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item-content h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.contact-item-content p,
.contact-item-content a {
  color: var(--text-dark);
  font-size: 1.15rem;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.contact-item-content a:hover {
  color: var(--gold-primary);
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.contact-form-wrapper {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(201, 169, 98, 0.15);
}

.contact-form-wrapper h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-form-wrapper .form-desc {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--bg-cream);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 12px;
  color: var(--text-dark);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-smooth);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.1);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 1.25rem;
  font-size: 0.95rem;
}

/* Company Info */
.company-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.company-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 169, 98, 0.1);
  transition: var(--transition-smooth);
}

.company-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.company-card i {
  font-size: 1.75rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.company-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.company-card p {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
}

/* Footer */
.luxury-footer {
  background: var(--slate-900);
  color: var(--text-white);
  padding: 5rem 3rem 2rem;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  padding-right: 2rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1.5rem;
}

.footer-brand .nav-logo-text {
  color: var(--text-white);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 12px;
  color: var(--gold-primary);
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  background: var(--gold-primary);
  color: var(--bg-white);
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.footer-legal a:hover {
  color: var(--gold-primary);
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
  .services-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 1024px) {
  .luxury-nav {
    padding: 1rem 2rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .hero-container,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .company-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 1.5rem;
  }
  
  .luxury-nav {
    padding: 1rem 1.5rem;
  }
  
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-buttons {
    flex-direction: column;
  }
  
  .company-cards {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* Selection */
::selection {
  background: var(--gold-primary);
  color: var(--bg-white);
}
