/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  
  --color-bg-dark: #050505;
  --color-bg-card: rgba(18, 18, 18, 0.75);
  --color-border-gold: rgba(245, 208, 97, 0.25);
  
  /* Gold Gradients */
  --gold-primary: #f5d061;
  --gold-secondary: #e2b039;
  --gold-dark: #b8860b;
  --gold-light: #fae69e;
  --gold-gradient: linear-gradient(135deg, #f5d061 0%, #e2b039 50%, #b8860b 100%);
  --gold-gradient-hover: linear-gradient(135deg, #fae69e 0%, #f5d061 50%, #e2b039 100%);
  --dark-gradient: linear-gradient(180deg, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.95) 100%);
  
  --text-white: #ffffff;
  --text-gray: #a0a0a0;
  --text-gold: #f5d061;
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --glow-shadow: 0 0 20px rgba(245, 208, 97, 0.25);
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0d0d0d;
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-secondary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

/* Utility Components */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(226, 176, 57, 0.2);
}

.btn-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 176, 57, 0.4);
}

.btn-outline-gold {
  border: 1px solid var(--gold-primary);
  background: transparent;
  color: var(--gold-primary);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
  background: rgba(245, 208, 97, 0.1);
  box-shadow: var(--glow-shadow);
  transform: translateY(-1px);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 208, 97, 0.1);
  padding: 10px 0;
}

header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

header.scrolled .navbar {
  padding: 12px 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 42px;
  height: 42px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 20px;
  color: var(--text-white);
  line-height: 1;
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 10px;
  color: var(--gold-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-gray);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: var(--dark-gradient), url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 100px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(180deg, transparent, var(--color-bg-dark));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-title .glow-title {
  display: block;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 550px;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  gap: 25px;
  margin-top: 15px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(20, 20, 20, 0.6);
  padding: 10px 16px;
  border-radius: 30px;
  border: 1px solid var(--color-border-gold);
  backdrop-filter: blur(5px);
}

.feature-badge svg {
  width: 22px;
  height: 22px;
  color: var(--gold-primary);
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

.feature-sub {
  font-size: 10px;
  color: var(--text-gray);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-shield-wrapper {
  position: relative;
  width: 320px;
  height: 380px;
  filter: drop-shadow(0 15px 35px rgba(245, 208, 97, 0.25));
  animation: float 6s ease-in-out infinite;
}

.hero-shield-wrapper svg {
  width: 100%;
  height: 100%;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.section-icon {
  width: 30px;
  height: 30px;
  color: var(--gold-primary);
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-gray);
  letter-spacing: 0.5px;
}

/* Combinations Section (Kombineler) */
.combinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.combo-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-gold);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
}

.combo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(245, 208, 97, 0.08), transparent 60%);
  pointer-events: none;
}

.combo-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 10px 30px rgba(245, 208, 97, 0.15);
}

.combo-img-container {
  position: relative;
  height: 180px;
  overflow: hidden;
  border-bottom: 2px solid var(--color-border-gold);
}

.combo-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.combo-card:hover .combo-img-container img {
  transform: scale(1.05);
}

.combo-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(5, 5, 5, 0.8);
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  z-index: 10;
}

.combo-badge svg {
  width: 20px;
  height: 20px;
}

.combo-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.combo-card-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.combo-divider {
  width: 40px;
  height: 3px;
  background: var(--gold-gradient);
  margin-bottom: 20px;
  border-radius: 2px;
}

.combo-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.combo-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-gray);
}

.combo-feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.combo-card .btn-gold {
  width: 100%;
}

/* References Section */
.references {
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, #0c0c0c 50%, var(--color-bg-dark) 100%);
  padding: 60px 0;
}

.references-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.ref-line {
  flex-grow: 1;
  max-width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.references-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-primary);
}

.references-box {
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(245, 208, 97, 0.1);
  border-radius: 12px;
  padding: 30px 40px;
  backdrop-filter: blur(5px);
}

.references-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.reference-logo {
  height: 35px;
  opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: var(--transition-smooth);
}

.reference-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Testimonial Videos Section */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.video-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.video-card {
  position: relative;
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--color-border-gold);
  overflow: hidden;
  cursor: pointer;
}

.video-card video {
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.video-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
  z-index: 2;
}

.video-card:hover::before {
  background: rgba(0, 0, 0, 0.2);
}

.video-card:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--glow-shadow);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: rgba(5, 5, 5, 0.85);
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 0 0 15px rgba(245, 208, 97, 0.3);
  z-index: 5;
}

.play-btn svg {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  transform: translateX(2px);
  transition: var(--transition-smooth);
}

.video-card:hover .play-btn {
  background: var(--gold-gradient);
  box-shadow: 0 0 25px rgba(245, 208, 97, 0.6);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card:hover .play-btn svg {
  color: #000;
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.15);
  z-index: 5;
}

.video-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-gray);
  transition: var(--transition-smooth);
  text-align: center;
}

.video-item:hover .video-label {
  color: var(--gold-primary);
}

/* Footer Styles */
footer {
  background: #030303;
  border-top: 1px solid rgba(245, 208, 97, 0.1);
  padding: 80px 0 30px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(245, 208, 97, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(245, 208, 97, 0.3);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.footer-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-white);
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 13px;
  color: var(--text-gray);
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.tax-card {
  width: 100%;
  max-width: 280px;
  height: 120px;
  border: 1px dashed var(--gold-primary);
  border-radius: 8px;
  background: rgba(20, 20, 20, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tax-card:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--glow-shadow);
  transform: translateY(-2px);
  background: rgba(245, 208, 97, 0.05);
}

.tax-icon-doc {
  width: 32px;
  height: 32px;
  color: var(--gold-primary);
  transition: var(--transition-smooth);
}

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

.tax-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-security {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-gray);
}

.footer-security svg {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-gray);
}

/* Modals System */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: #0a0a0a;
  border: 1px solid var(--gold-primary);
  border-radius: 16px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 15px 50px rgba(245, 208, 97, 0.15);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 40px;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-gray);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.modal-close:hover {
  color: var(--text-white);
  background: rgba(255,255,255,0.15);
  transform: rotate(90deg);
}

.modal-title {
  font-size: 24px;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: var(--text-white);
  text-align: center;
  border-bottom: 1px solid rgba(245, 208, 97, 0.1);
  padding-bottom: 15px;
}

/* Video Modal */
.modal-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border-gold);
}

.modal-video-wrapper iframe, .modal-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Purchase Checkout Form */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

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

.form-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-gray);
  letter-spacing: 0.5px;
}

.form-input {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--text-white);
  font-family: var(--font-primary);
  font-size: 14px;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(245, 208, 97, 0.15);
  background: #151515;
}

.form-input::placeholder {
  color: #555;
}

/* Select Styling */
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f5d061' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.payment-details {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 10px;
  padding-top: 20px;
}

.payment-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.checkout-submit-btn {
  margin-top: 10px;
  padding: 15px;
  font-size: 15px;
}

/* Success Checkout View */
.success-view {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  gap: 20px;
}

.success-icon {
  width: 72px;
  height: 72px;
  color: var(--gold-primary);
  animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleUp {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.success-title {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-white);
}

.success-desc {
  font-size: 14px;
  color: var(--text-gray);
  max-width: 400px;
}

/* Turkish Tax Certificate Layout (Vergi Levhası Mockup) */
.tax-container {
  background: #ffffff;
  color: #000000;
  font-family: Arial, sans-serif;
  font-size: 12px;
  padding: 30px;
  border-radius: 4px;
  border: 1px solid #ccc;
  width: 100%;
}

.tax-header {
  text-align: center;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.tax-header-title {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}

.tax-header-subtitle {
  font-size: 11px;
  margin-top: 5px;
}

.tax-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1.5px solid #000;
  margin-bottom: 20px;
}

.tax-cell {
  border: 0.5px solid #000;
  padding: 8px 12px;
}

.tax-cell-label {
  font-weight: bold;
  font-size: 10px;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.tax-cell-value {
  font-size: 12px;
  font-weight: bold;
}

.tax-cell-full {
  grid-column: span 2;
}

.tax-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.tax-qr {
  width: 70px;
  height: 70px;
  border: 1px solid #000;
  padding: 4px;
}

.tax-qr svg {
  width: 100%;
  height: 100%;
}

.tax-stamps {
  font-size: 10px;
  text-align: right;
  line-height: 1.4;
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-desc {
    margin: 0 auto;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .combinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
  
  header .navbar {
    padding: 15px 0;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #080808;
    border-left: 1px solid var(--color-border-gold);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 40px;
    gap: 25px;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .mobile-toggle {
    display: block;
    z-index: 1000;
  }
  
  .hero-title {
    font-size: 34px;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .feature-badge {
    width: 100%;
    max-width: 320px;
    justify-content: flex-start;
  }
  
  .combinations-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .videos-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .tax-card {
    max-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  
  .hero-shield-wrapper {
    width: 250px;
    height: 300px;
  }
  
  .section-title {
    font-size: 26px;
  }
}

/* SUBPAGES STYLE RULES */
.page-banner {
  padding: 150px 0 60px 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.6) 0%, var(--color-bg-dark) 100%), url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  text-align: center;
  border-bottom: 1px solid rgba(245, 208, 97, 0.1);
}

.page-banner h1 {
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.page-banner p {
  font-size: 14px;
  color: var(--text-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.page-content {
  padding: 60px 0 100px 0;
}

.text-block {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-gold);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.text-block h2, .text-block h3 {
  color: var(--gold-primary);
  margin-top: 30px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.text-block h2:first-of-type, .text-block h3:first-of-type {
  margin-top: 0;
}

.text-block p {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 15px;
}

.text-block ul {
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-gray);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}

/* FAQ Accordion Styles */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.faq-item {
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(245, 208, 97, 0.12);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--gold-primary);
  box-shadow: 0 4px 20px rgba(245, 208, 97, 0.1);
  background: rgba(20, 20, 20, 0.8);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  color: var(--text-white);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--gold-primary);
}

.faq-icon {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background: rgba(5, 5, 5, 0.2);
}

.faq-answer-content {
  padding: 0 25px 20px 25px;
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.7;
}

/* Contact Page Grid Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-gold);
  border-radius: 10px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-primary);
  box-shadow: var(--glow-shadow);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(245, 208, 97, 0.08);
  border: 1px solid var(--color-border-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card-content {
  display: flex;
  flex-direction: column;
}

.contact-card-content h3 {
  font-size: 15px;
  margin-bottom: 6px;
  text-transform: uppercase;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.contact-card-content p {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.5;
}

.contact-card-content a {
  transition: var(--transition-smooth);
}

.contact-card-content a:hover {
  color: var(--gold-primary);
}

.contact-form-wrapper {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-gold);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-form-wrapper h2 {
  font-size: 22px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(245, 208, 97, 0.1);
  padding-bottom: 15px;
}

.contact-form-wrapper textarea.form-input {
  resize: none;
  min-height: 120px;
}

.contact-form-wrapper .btn-gold {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
}

/* Contact success styling */
.contact-success-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0;
  gap: 20px;
}

.contact-success-msg svg {
  width: 64px;
  height: 64px;
  color: var(--gold-primary);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
