:root {
  --gold: #C6AE50;
  --gold-light: #E8D68A;
  /* A lighter version of C6AE50 */
  --gold-dark: #9E8938;
  /* A darker version of C6AE50 */
  --black: #050505;
  --dark-grey: #121212;
  --glass-bg: rgba(18, 18, 18, 0.7);
  --glass-border: rgba(212, 175, 55, 0.2);
  --white: #ffffff;
  --text-grey: #e0e0e0;

  --font-main: 'Outfit', sans-serif;

  --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-gold: 0 10px 40px -10px rgba(212, 175, 55, 0.3);
  --shadow-card: 0 20px 40px -20px rgba(0, 0, 0, 0.7);
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

/* Utilities */
.gold-text {
  color: var(--gold);
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #C6AE50 0%, #9E8938 100%);
  color: #000;
  padding: 16px 40px;
  border-radius: 0;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-fast);
  border: none;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: var(--transition-fast);
}

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

.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  padding: 14px 38px;
  border-radius: 0;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-fast);
  border: 1px solid var(--gold);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 25px 0;
  transition: var(--transition-fast);
}

.header.scrolled {
  padding: 15px 0;
  background: rgba(5, 5, 5, 0.95);
}

.navbar {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.logo {
  height: 70px;
  /* Increased size */
  width: auto;
  transition: var(--transition-fast);
  display: flex;
  /* Fix line-height issues */
  align-items: center;
}

.header.scrolled .logo {
  height: 50px;
  /* Shrinks on scroll */
}

.logo img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.2));
  /* Subtle glow */
}

.nav-links {
  display: flex;
  gap: 50px;
  align-items: center;
}

.nav-links a:not(.btn-primary) {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-grey);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a:not(.btn-primary)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition-fast);
}

.nav-links a:not(.btn-primary):hover {
  color: var(--gold);
}

.nav-links a:not(.btn-primary):hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition-fast);
}

/* Hero */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Left aligned content */
  position: relative;
  overflow: hidden;
  padding: 0 10%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  /* Taller for parallax */
  background-image: url('./hero-bg.png');
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: translateY(0);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero-content h1 {
  font-size: 5.5rem;
  line-height: 1.05;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero-content p {
  font-size: 1.3rem;
  color: var(--text-grey);
  max-width: 550px;
  margin-bottom: 50px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 25px;
}

/* Services */
.services {
  padding: 150px 5%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

/* Subtle pattern background for services */
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  opacity: 0.5;
}

.section-header {
  text-align: left;
  margin-bottom: 80px;
  max-width: 600px;
}

.section-sub {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.section-header h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--white);
  line-height: 1.1;
}

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

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 50px 40px;
  border: 1px solid var(--glass-border);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold);
}

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

.service-card .icon {
  font-size: 3.5rem;
  margin-bottom: 30px;
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--white));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--white);
}

.service-card p {
  color: var(--text-grey);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Pricing */
.pricing {
  padding: 100px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background: var(--dark-grey);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  position: relative;
  transition: var(--transition-fast);
}

.pricing-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.pricing-card.featured {
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, rgba(5, 5, 5, 0) 100%);
}

.pricing-card .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-header {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.price-header h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.price span {
  font-size: 1rem;
  color: var(--text-grey);
  font-weight: 400;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-grey);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 5px;
}

.price-features {
  margin-bottom: 30px;
}

.price-features li {
  margin-bottom: 12px;
  color: var(--text-grey);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: '✓';
  color: var(--gold);
}

.exclusions-box {
  margin-top: 60px;
  padding: 30px;
  background: rgba(255, 50, 50, 0.05);
  border-left: 3px solid #ff4444;
}

.exclusions-box h4 {
  color: #ff8888;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.exclusions-list {
  display: flex;
  gap: 30px;
  color: var(--text-grey);
  font-size: 0.95rem;
  flex-wrap: wrap;
}

/* Service Details Lists */
.service-details {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-details ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #bbb;
  position: relative;
  padding-left: 20px;
}

.service-details ul li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: 0;
}

.compact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* About & Contact Split Section */
.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.about-panel,
.contact-panel {
  padding: 120px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-panel {
  background: #0f0f0f;
  position: relative;
}

.contact-panel {
  background: var(--black);
  position: relative;
}

.about-panel::after {
  content: 'LTL';
  position: absolute;
  bottom: -50px;
  right: -20px;
  font-size: 20rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.015);
  z-index: 0;
  overflow: hidden;
}

.contact-info {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

.contact-item:hover {
  padding-left: 20px;
  border-bottom-color: var(--gold);
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), transparent);
}

.contact-item .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 1px;
  min-width: 60px;
}

.contact-item .value {
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 500;
}

/* Footer */
.footer {
  text-align: center;
  padding: 50px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  background: #000;
  color: #666;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Animations */
.animate-up {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* UI Polish & Forms */
.form-container {
  background: var(--dark-grey);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition-fast);
}

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

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

/* Enhanced Pricing Glow */
.pricing-card.featured::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(45deg, var(--gold), transparent, var(--gold));
  z-index: -1;
  opacity: 0.3;
  filter: blur(10px);
  transition: var(--transition-slow);
}

.pricing-card.featured:hover::after {
  opacity: 0.6;
  filter: blur(15px);
}

/* Testimonials */
.testimonials {
  padding: 100px 5%;
  background: linear-gradient(to bottom, var(--black), #0a0a0a);
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-left: 2px solid var(--gold);
  text-align: left;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: serif;
}

.stars {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.client-name {
  margin-top: 20px;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.client-type {
  color: var(--text-grey);
  font-size: 0.8rem;
  font-weight: 400;
  display: block;
}

.pricing-trust-note {
  text-align: center;
  margin: 60px auto 30px;
  max-width: 800px;
  position: relative;
  padding: 20px;
}

.pricing-trust-note p {
  font-size: 1.3rem;
  color: var(--white);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.pricing-trust-note p::before,
.pricing-trust-note p::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 10px auto;
  opacity: 0.5;
}

/* Fix Select Options */
select.form-input option {
  background: #121212;
  color: #ffffff;
  padding: 10px;
}

/* Success Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

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

.modal-content {
  background: rgba(18, 18, 18, 0.95);
  border: 1px solid var(--gold);
  padding: 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: translateY(20px);
  transition: var(--transition-fast);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.modal-title {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.modal-text {
  color: var(--text-grey);
  margin-bottom: 30px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }

  .info-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .header {
    background: rgba(5, 5, 5, 0.95);
  }

  .nav-links {
    display: none;
    /* JS still handles toggle */
  }

  .hamburger {
    display: flex;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}