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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(201, 169, 97, 0.2);
  border-top-color: #c9a961;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #c9a961;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d4b76f;
}

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

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header/Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  
}



nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  nav {
    padding: 0 2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #c9a961 0%, #8b7355 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.logo-text {
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: #c9a961;
  font-weight: 600;
}

/* Desktop Menu */
.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 1025px) {
  .nav-menu {
    display: flex;
  }
}

.nav-menu > li {
  position: relative;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
  padding: 0.5rem 0;
  display: block;
}

.nav-link:hover {
  color: #c9a961;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 8px;
  min-width: 200px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s;
}

.dropdown-menu li a:hover {
  background: rgba(201, 169, 97, 0.1);
  color: #c9a961;
}

/* Button Primary */
.btn-primary {
  padding: 0.625rem 1.5rem;
  background: #c9a961;
  color: #000000;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #d4b76f;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(201, 169, 97, 0.5);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.3s;
}

.mobile-menu-toggle:hover {
  background: rgba(201, 169, 97, 0.1);
}

@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu > ul > li {
  margin: 0;
}

.mobile-menu .nav-link {
  padding: 0.75rem 0;
  display: block;
}

.mobile-menu .dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.75rem 0;
  cursor: pointer;
}

.mobile-menu .dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: transparent;
  border: none;
  padding-left: 1rem;
  margin-top: 0;
  display: none;
}

.mobile-menu .dropdown.active .dropdown-menu {
  display: block;
}

.mobile-menu .btn-primary {
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  margin-top: 80px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-text {
  max-width: 600px;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  color: #c9a961;
  letter-spacing: 0.3em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-secondary {
  padding: 1rem 2rem;
  border: 2px solid #c9a961;
  color: #c9a961;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 4px;
}

.btn-secondary:hover {
  background: #c9a961;
  color: #000000;
  transform: scale(1.05);
}

.btn-primary-large {
  padding: 1rem 2rem;
  background: #c9a961;
  color: #000000;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 4px;
}

.btn-primary-large:hover {
  background: #d4b76f;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(201, 169, 97, 0.5);
}

/* Slider Controls */
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  border: none;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.slider-control:hover {
  background: #c9a961;
  transform: translateY(-50%) scale(1.1);
}

.slider-control.prev {
  left: 1rem;
}

.slider-control.next {
  right: 1rem;
}

@media (min-width: 1024px) {
  .slider-control.prev {
    left: 2rem;
  }
  .slider-control.next {
    right: 2rem;
  }
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 3;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.slider-dot.active {
  background: #c9a961;
  width: 48px;
  border-radius: 6px;
}

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

@media (min-width: 1024px) {
  section {
    padding: 8rem 0;
  }
}

.section-bg-dark {
  background: #0f0f0f;
}

.section-bg-black {
  background: #000000;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: #c9a961;
  letter-spacing: 0.3em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-divider {
  width: 96px;
  height: 4px;
  background: #c9a961;
  margin: 0 auto 1.5rem;
}

.section-description {
  color: #999999;
  max-width: 48rem;
  margin: 0 auto;
}

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

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

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

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

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Card Styles */
.card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 97, 0.2);
  transition: all 0.5s;
}

.card:hover {
  border-color: #c9a961;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(201, 169, 97, 0.2);
}

.card-icon {
  font-size: 3.75rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.card:hover .card-icon {
  transform: scale(1.1);
}

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

.card-description {
  color: #999999;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-link {
  color: #c9a961;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.card-link:hover {
  color: #d4b76f;
  gap: 1rem;
}

/* Image Styles */
.image-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  color: #c9a961;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .stat-number {
    font-size: 2.5rem;
  }
}

.stat-label {
  color: #999999;
  font-size: 0.875rem;
}

/* List Styles */
.check-list {
  list-style: none;
  margin: 2rem 0;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.check-icon::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9a961;
}

.check-list li span {
  color: #999999;
}

/* Team Card */
.team-card {
  position: relative;
  background: #1a1a1a;
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 97, 0.2);
  overflow: hidden;
  transition: all 0.5s;
}

.team-card:hover {
  border-color: #c9a961;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(201, 169, 97, 0.2);
}

.team-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.25rem;
  color: #c9a961;
  margin-bottom: 0.5rem;
}

.team-role {
  color: #999999;
}

/* Event Type Card */
.event-type-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 97, 0.2);
  text-align: center;
  transition: all 0.5s;
}

.event-type-card:hover {
  border-color: #c9a961;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(201, 169, 97, 0.2);
}

.event-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.event-type-card:hover .event-icon {
  transform: scale(1.1);
}

.event-title {
  font-size: 1.125rem;
  color: #c9a961;
  margin-bottom: 0.5rem;
}

.event-count {
  color: #999999;
  font-size: 0.875rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: #1a1a1a;
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #c9a961;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #666666;
}

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

/* Testimonials */
.testimonial-card {
  background: #1a1a1a;
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 97, 0.2);
  text-align: center;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.star {
  color: #c9a961;
  font-size: 1.25rem;
}

.testimonial-text {
  color: #cccccc;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 1.25rem;
  color: #c9a961;
  margin-bottom: 0.5rem;
}

.testimonial-role {
  color: #999999;
}

/* Gallery */
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* FAQ / Accordion */
.faq-item {
  background: #1a1a1a;
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: #c9a961;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  color: #c9a961;
  font-size: 1.125rem;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(201, 169, 97, 0.05);
}

.faq-icon {
  transition: transform 0.3s;
  font-size: 1.25rem;
}

.faq-item.active .faq-icon {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
  padding: 0 2rem;
  color: #999999;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

/* Contact Info */
.contact-info {
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #c9a961;
}

.contact-details h3 {
  font-size: 1.125rem;
  color: #c9a961;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: #999999;
  margin: 0.25rem 0;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a961;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: #c9a961;
  color: #000000;
  transform: scale(1.1);
}

/* Map */
.map-container {
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
  border: 1px solid rgba(201, 169, 97, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
footer {
  background: #000000;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column h3 {
  font-size: 1.125rem;
  color: #c9a961;
  margin-bottom: 1.5rem;
}

.footer-column p {
  color: #999999;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: #999999;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: #c9a961;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: #1a1a1a;
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.875rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: #c9a961;
}

.newsletter-button {
  padding: 0.75rem 1rem;
  background: #c9a961;
  border: none;
  border-radius: 8px;
  color: #000000;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-button:hover {
  background: #d4b76f;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: #999999;
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-bottom-links a {
  color: #999999;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #c9a961;
}

/* Blog Styles */
.blog-card {
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.2);
  transition: all 0.5s;
}

.blog-card:hover {
  border-color: #c9a961;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(201, 169, 97, 0.2);
}

.blog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #999999;
}

.blog-title {
  font-size: 1.5rem;
  color: #c9a961;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-excerpt {
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.read-more {
  color: #c9a961;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.read-more:hover {
  gap: 1rem;
}

/* Pricing Card */
.pricing-card {
  background: #1a1a1a;
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.5s;
}

.pricing-card:hover {
  border-color: #c9a961;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(201, 169, 97, 0.2);
}

.pricing-card.featured {
  border-color: #c9a961;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2416 100%);
}

.pricing-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #c9a961;
  color: #000000;
  border-radius: 20px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.pricing-name {
  font-size: 1.5rem;
  color: #c9a961;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-period {
  color: #999999;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
  color: #cccccc;
}

.pricing-features li:first-child {
  border-top: 1px solid rgba(201, 169, 97, 0.1);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 8rem 0 4rem;
  margin-top: 80px;
  text-align: center;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.page-hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  color: #999999;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #c9a961;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Blog Detail */
.blog-detail-header {
  margin-bottom: 2rem;
}

.blog-detail-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #999999;
  margin-bottom: 2rem;
}

.blog-detail-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.blog-detail-content {
  color: #cccccc;
  line-height: 1.8;
  font-size: 1.125rem;
}

.blog-detail-content h2 {
  color: #c9a961;
  margin: 2rem 0 1rem;
  font-size: 2rem;
}

.blog-detail-content p {
  margin-bottom: 1.5rem;
}

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

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

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

.mt-8 {
  margin-top: 2rem;
}

.max-w-4xl {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Utilities */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .page-hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 1025px) {
    .mobile-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        padding: 2rem;
        gap: 1rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        align-items: flex-start;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        margin-top: 0.5rem;
        background: rgba(24, 24, 27, 0.95);
    }

    .nav-dropdown.active .dropdown-menu {
        transform: none;
    }

    .nav-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.grid-custom {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* mobile: 1 col */
  gap: 1rem;
}

/* tablet and up: 2 cols */
@media (min-width: 768px) {
  .grid-custom { grid-template-columns: repeat(2, 1fr); }
}

/* desktop large: 4 cols */
@media (min-width: 1024px) {
  .grid-custom { grid-template-columns: repeat(4, 1fr); }
}
