/* Luxa Dark Theme - Luxury Black Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  /* Dark Theme Colors */
  --bg-primary: #000000;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #666666;
  --border-color: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.3);
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-weight-light: 100;
  --font-weight-normal: 300;
  --font-weight-medium: 400;
  --font-weight-bold: 600;
  
  /* Transitions */
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-light);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

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

a:hover {
  color: var(--text-secondary);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-12 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }
.col-6 { flex: 0 0 50%; max-width: 50%; padding: 0 15px; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; padding: 0 15px; }
.col-3 { flex: 0 0 25%; max-width: 25%; padding: 0 15px; }

.col-md-6 { flex: 0 0 50%; max-width: 50%; padding: 0 15px; }
.col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; padding: 0 15px; }
.col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; padding: 0 15px; }

.offset-lg-2 { margin-left: 16.666667%; }

.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.text-center { text-align: center; }

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.98);
}

.site-logo img {
  height: 120px;
  width: auto;
}

/* Navigation */
.navigation {
  display: flex;
  align-items: center;
}

.navigation .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}

.navigation .menu li a {
  color: var(--text-secondary);
  font-weight: var(--font-weight-normal);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

.navigation .menu li a:hover {
  color: var(--text-primary);
}

.navigation .menu li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text-primary);
  transition: var(--transition);
}

.navigation .menu li a:hover::after {
  width: 100%;
}

/* Hide mobile logo on desktop */
.navigation .menu .mobile-logo {
  display: none;
}

/* Mobile Menu Button - Modern Dark Design */
.nav-butter {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-butter:hover {
  border-color: var(--primary-gold);
  background: var(--bg-tertiary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-butter span {
  width: 20px;
  height: 2px;
  background: var(--primary-gold);
  transition: all 0.3s ease;
  border-radius: 1px;
  position: relative;
}

.nav-butter span:first-child {
  width: 20px;
}

.nav-butter span:nth-child(2) {
  width: 16px;
  margin-left: auto;
}

.nav-butter span:last-child {
  width: 18px;
}

/* Main Content */
main {
  padding-top: 80px;
}

/* Sections */
section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 80px;
  text-align: center;
}

.subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: var(--font-weight-normal);
}

.section-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-light);
  color: var(--text-primary);
  margin-bottom: 0;
}

.section-title .highlight {
  font-weight: var(--font-weight-light);
  opacity: 0.7;
}

/* About Section */
.about-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-content .lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 50px;
  font-weight: var(--font-weight-normal);
}

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

.lawyer-item {
  background: var(--bg-secondary);
  padding: 40px 30px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.lawyer-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-tertiary);
}

.lawyer-item h4 {
  color: var(--text-primary);
  font-weight: var(--font-weight-normal);
  margin: 0;
  font-size: 1.1rem;
}

/* Services Section */
.services-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.services-grid {
  display: grid;
  gap: 40px;
}

.services-grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.service-item {
  background: var(--bg-primary);
  padding: 50px 40px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.service-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-tertiary);
}

.service-icon {
  margin-bottom: 30px;
}

.service-icon i {
  font-size: 2.5rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.service-item:hover .service-icon i {
  color: var(--text-primary);
}

.service-title {
  font-size: 1.3rem;
  font-weight: var(--font-weight-normal);
  color: var(--text-primary);
  margin-bottom: 20px;
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Contact Form */
.contact-form-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: var(--font-weight-normal);
}

.form-control {
  width: 100%;
  padding: 15px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--border-hover);
  background: var(--bg-tertiary);
}

.form-control::placeholder {
  color: var(--text-muted);
}

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

.btn {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 0.9rem;
  font-weight: var(--font-weight-normal);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn:hover {
  border-color: var(--text-primary);
  background: var(--text-primary);
  color: var(--bg-primary);
}

.btn-primary {
  border-color: var(--text-primary);
}

.btn-primary:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}

/* Footer */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 40px;
}

.site-footer h4 {
  font-size: 1.1rem;
  font-weight: var(--font-weight-normal);
  margin-bottom: 20px;
  color: var(--text-primary);
}

.site-footer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: 8px;
}

.site-footer ul li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.site-footer ul li a:hover {
  color: var(--text-primary);
}

.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Page Headers */
.page-header {
  background: var(--bg-primary);
  padding: 150px 0 100px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  font-size: 3rem;
  font-weight: var(--font-weight-light);
  margin-bottom: 20px;
  color: var(--text-primary);
}

.page-header h1 .highlight {
  font-weight: var(--font-weight-light);
  opacity: 0.7;
}

.page-header .lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: var(--font-weight-normal);
}

/* Form Messages */
.form-messages {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  display: none;
  font-size: 0.9rem;
}

.form-messages.success {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border-color: rgba(40, 167, 69, 0.3);
}

.form-messages.error {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border-color: rgba(220, 53, 69, 0.3);
}

.form-messages.info {
  background: rgba(23, 162, 184, 0.1);
  color: #17a2b8;
  border-color: rgba(23, 162, 184, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
  .navigation .menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    gap: 20px;
    align-items: center;
  }
  
  .navigation .menu .mobile-logo {
    display: block;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
  }
  
  .navigation .menu .mobile-logo img {
    max-width: 180px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
  }
  
  .navigation .menu .mobile-logo:hover img {
    opacity: 1;
  }
  
  .navigation .menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-butter {
    display: flex;
  }
  
  .nav-butter.active {
    border-color: var(--primary-gold);
    background: var(--bg-tertiary);
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.3);
  }
  
  .nav-butter.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
    width: 20px;
  }
  
  .nav-butter.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }
  
  .nav-butter.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  section {
    padding: 80px 0;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .section-title {
    font-size: 2rem;
  }
  
  .page-header {
    padding: 120px 0 80px;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .col-md-6,
  .col-md-4,
  .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .offset-lg-2 {
    margin-left: 0;
  }
  
  .services-grid.cols-3 {
    grid-template-columns: 1fr;
  }
  
  .lawyers-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .navigation .menu {
    gap: 15px;
  }
  
  .service-item,
  .lawyer-item {
    padding: 30px 20px;
  }
  
  .btn {
    padding: 12px 30px;
    font-size: 0.85rem;
  }
}

/* Utility Classes */
.min-vh-100 {
  min-height: 100vh;
}

.d-flex {
  display: flex;
}

.d-none {
  display: none;
}

.w-100 {
  width: 100%;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* Dark Theme Body Class */
.luxa-theme {
  background: var(--bg-primary);
  color: var(--text-primary);
}