:root {
  --primary: #0a192f;
  --secondary: #d4af37;
  --accent: #ffffff;
  --dark: #020c1b;
  --light: #f0f4f8;
  --muted: #8892b0;
  --gradient: linear-gradient(135deg, var(--primary), #112240);
  --shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
  --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background-color: var(--primary);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}
h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 700px;
}
a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: #e6b800;
}
.text-gold {
  color: var(--secondary) !important;
}
.bg-dark-custom {
  background-color: var(--dark) !important;
}
.bg-gradient {
  background: var(--gradient) !important;
}
.btn-gold {
  background-color: var(--secondary);
  color: var(--dark);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.btn-gold:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}
.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  padding: 10px 28px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--secondary);
  color: var(--dark);
}
.section-padding {
  padding: 100px 0;
}
.overlay {
  position: relative;
}
.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7));
  z-index: 1;
}
.overlay > * {
  position: relative;
  z-index: 2;
}
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.card-custom {
  background-color: var(--dark);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}
.card-custom:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.service-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.service-card i {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.price-card {
  background: var(--dark);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid transparent;
  transition: var(--transition);
}
.price-card.featured {
  border-color: var(--secondary);
  background: linear-gradient(145deg, #0d1b2a, var(--dark));
}
.price-card .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
}
.price-card ul {
  list-style: none;
  padding: 0;
}
.price-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.testimonial-card {
  background: var(--dark);
  border-radius: 16px;
  padding: 2rem;
  border-left: 4px solid var(--secondary);
  margin: 1rem;
}
.team-card {
  text-align: center;
}
.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary);
}
.timeline-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 2rem;
  border-left: 2px solid var(--secondary);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0;
  width: 10px;
  height: 10px;
  background: var(--secondary);
  border-radius: 50%;
}
.form-control-custom {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--muted);
  border-radius: 0;
  color: var(--accent);
  padding: 10px 0;
  transition: var(--transition);
}
.form-control-custom:focus {
  border-color: var(--secondary);
  box-shadow: none;
  background: transparent;
  color: var(--accent);
}
.form-control-custom::placeholder {
  color: var(--muted);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer.show {
  max-height: 200px;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark);
  border-top: 2px solid var(--secondary);
  padding: 1rem 2rem;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  flex-wrap: wrap;
  gap: 1rem;
}
.cookie-banner p {
  margin: 0;
  color: var(--light);
}
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: var(--dark);
  padding: 1rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 10000;
  display: none;
  font-weight: 600;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
  }
  .section-padding {
    padding: 60px 0;
  }
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 10px;
}
