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

:root {
  --gold: #C9A14A;
  --gold-light: #D4AF37;
  --dark: #000000;
  --darker: #0B0B0B;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--dark);
  color: #fff;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--darker);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

::selection {
  background-color: var(--gold);
  color: var(--dark);
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 161, 74, 0.2);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-menu {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.navbar-menu.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  padding: 1rem 0;
  border-top: 1px solid rgba(201, 161, 74, 0.2);
}

.navbar-link {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 0.5rem 1rem;
}

.navbar-link:hover {
  color: var(--gold);
}

.navbar-link.active {
  color: var(--gold);
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar-link:hover::after,
.navbar-link.active::after {
  transform: scaleX(1);
}

.navbar-toggle {
  display: block;
  background: none;
  padding: 0.5rem;
  color: var(--gold);
}

.navbar-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 161, 74, 0.05), transparent);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero .text-gradient {
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-top: 0.5rem;
}

.hero p {
  font-size: 1.125rem;
  color: var(--gray-300);
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

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

.btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  color: var(--dark);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(201, 161, 74, 0.6), 0 0 40px rgba(201, 161, 74, 0.3);
}

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

.btn-secondary:hover {
  background: rgba(201, 161, 74, 0.1);
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--dark);
}

.section-darker {
  background: var(--darker);
}

.section-gradient {
  background: linear-gradient(to bottom, var(--darker), var(--dark));
}

.section-gold-gradient {
  background: linear-gradient(to right, rgba(201, 161, 74, 0.1), rgba(212, 175, 55, 0.1), rgba(201, 161, 74, 0.1));
  border-top: 1px solid rgba(201, 161, 74, 0.2);
  border-bottom: 1px solid rgba(201, 161, 74, 0.2);
}

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

.section-title h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.section-title .divider {
  width: 96px;
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  margin: 0 auto 1.5rem;
}

.section-title p {
  font-size: 1.125rem;
  color: var(--gray-300);
  max-width: 48rem;
  margin: 0 auto;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

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

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Card Styles */
.card {
  background: linear-gradient(to bottom right, var(--dark), var(--darker));
  border: 1px solid rgba(201, 161, 74, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.5s ease;
}

.card:hover {
  border-color: rgba(201, 161, 74, 0.6);
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(201, 161, 74, 0.3);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.card-title {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.card-title.gold {
  color: var(--gold);
}

.card-description {
  color: var(--gray-300);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray-300);
  font-size: 0.875rem;
}

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  background: linear-gradient(to bottom right, var(--dark), var(--darker));
  border: 1px solid rgba(201, 161, 74, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: rgba(201, 161, 74, 0.6);
}

.step-number {
  font-size: 3.75rem;
  font-weight: 700;
  color: rgba(201, 161, 74, 0.2);
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--gray-300);
  font-size: 0.875rem;
}

/* Footer */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201, 161, 74, 0.2);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.25rem;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--gray-300);
  font-size: 0.875rem;
}

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

.footer-divider {
  border-top: 1px solid rgba(201, 161, 74, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--gray-400);
  font-size: 0.875rem;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

.contact-item {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.contact-icon {
  background: linear-gradient(to bottom right, var(--gold), var(--gold-light));
  border-radius: 50%;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--dark);
  stroke-width: 2;
  fill: none;
}

.contact-details h3 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-details p,
.contact-details a {
  color: var(--gray-300);
  font-size: 0.875rem;
}

.contact-details a:hover {
  color: var(--gold);
}

/* Form Styles */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--gray-300);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--dark);
  border: 1px solid rgba(201, 161, 74, 0.3);
  border-radius: 0.5rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

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

.form-group textarea {
  resize: none;
  min-height: 120px;
}

.form-message {
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.form button[type="submit"] {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 700;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.form button[type="submit"]:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(201, 161, 74, 0.6);
}

.form button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Service Detail */
.service-detail {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}

.service-icon-box {
  background: linear-gradient(to bottom right, var(--darker), var(--dark));
  border: 1px solid rgba(201, 161, 74, 0.2);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
}

.service-icon-box:hover {
  border-color: rgba(201, 161, 74, 0.6);
  box-shadow: 0 0 20px rgba(201, 161, 74, 0.3);
}

.service-icon-box .icon {
  font-size: 5rem;
  display: block;
  margin-bottom: 1rem;
}

.service-icon-box h3 {
  font-size: 1.5rem;
  color: var(--gold);
}

.service-content {
  background: linear-gradient(to bottom right, var(--darker), var(--dark));
  border: 1px solid rgba(201, 161, 74, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
}

.service-content p {
  font-size: 1.125rem;
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-content h4 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
}

.service-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-content ul li {
  display: flex;
  align-items: start;
  color: var(--gray-300);
  margin-bottom: 0.5rem;
}

.service-content ul li::before {
  content: '✓';
  color: var(--gold);
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.service-outcome {
  border-top: 1px solid rgba(201, 161, 74, 0.2);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.service-outcome h4 {
  color: var(--gold);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.service-outcome p {
  color: var(--gray-300);
  line-height: 1.6;
}

/* Responsive Design */
@media (min-width: 768px) {
  .navbar-menu {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    border: none;
  }
  
  .navbar-toggle {
    display: none;
  }
  
  .hero h1 {
    font-size: 3.75rem;
  }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .service-detail {
    flex-direction: row;
  }
  
  .service-icon-box {
    flex: 0 0 33.333%;
  }
  
  .service-content {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4.5rem;
  }
  
  .section-title h2 {
    font-size: 3rem;
  }
  
  .navbar-logo {
    font-size: 1.875rem;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

.text-white {
  color: #fff;
}

.text-gray {
  color: var(--gray-300);
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-20 {
  margin-top: 5rem;
}

.hidden {
  display: none;
}
