/* ============================================================
   ShineNows — Dark + Gold Theme
   Web Agency Showcase — Bootstrap 5.3 Overrides & Custom Styles
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
  --bg:           #0a0a0a;
  --bg-alt:       #111111;
  --bg-card:      #161616;
  --gold:         #d4a843;
  --gold-hover:   #e8c060;
  --white:        #f0f0f0;
  --gray:         #9a9a9a;
  --gray-dark:    #666666;
  --border:       #222222;
  --border-light: #333333;
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;
  --transition:   all 0.3s ease;
  --radius:       12px;
  --radius-sm:    8px;
}

/* ============================================================
   1. Reset + Base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-hover);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================================
   2. Navbar
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: transparent;
  padding: 16px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border);
}

.navbar-logo {
  height: 70px;
  width: auto;
}

.footer-logo {
  height: 130px;
  width: auto;
  margin-bottom: 16px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
}

.navbar-brand:hover {
  color: var(--white) !important;
  opacity: 0.9;
}

.navbar-toggler {
  border-color: var(--border-light);
  padding: 4px 8px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28240%2C240%2C240%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  color: var(--white) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 14px !important;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: var(--gold) !important;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--gold) !important;
}

.nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.dropdown-menu-dark,
.navbar .dropdown-menu {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm);
  padding: 8px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.dropdown-item {
  color: var(--gray) !important;
  font-size: 0.9rem;
  padding: 8px 18px;
  transition: var(--transition);
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: rgba(212, 168, 67, 0.08) !important;
  color: var(--gold) !important;
}

/* ============================================================
   3. Buttons
   ============================================================ */
.btn-gold {
  background-color: var(--gold);
  color: #0a0a0a;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition);
  line-height: 1;
}

.btn-gold:hover {
  background-color: var(--gold-hover);
  border-color: var(--gold-hover);
  color: #0a0a0a;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
  text-decoration: none;
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-gold-sm {
  background-color: var(--gold);
  color: #0a0a0a;
  font-weight: 600;
  font-size: 0.85rem;
  border: 2px solid var(--gold);
  border-radius: 6px;
  padding: 8px 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: var(--transition);
  line-height: 1;
}

.btn-gold-sm:hover {
  background-color: var(--gold-hover);
  border-color: var(--gold-hover);
  color: #0a0a0a;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(212, 168, 67, 0.25);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition);
  line-height: 1;
}

.btn-outline-gold:hover {
  background-color: var(--gold);
  color: #0a0a0a;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.2);
}

.btn-outline-gold:active {
  transform: translateY(0);
}

/* ============================================================
   4. Hero Section
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-lead {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .text-gold {
  color: var(--gold);
}

.hero-subtitle {
  color: var(--gray);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust .stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.hero-trust-text {
  color: var(--gray);
  font-size: 0.85rem;
}

.hero-trust-text strong {
  color: var(--white);
  font-weight: 600;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* ============================================================
   5. Sections
   ============================================================ */
.section {
  padding: 100px 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-header {
  margin-bottom: 60px;
}

.section-subtitle {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.section-desc {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   6. Cards
   ============================================================ */
.card-dark {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  height: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.card-dark:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.1), 0 8px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.card-dark .card-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 15px;
  display: block;
  line-height: 1;
}

.card-dark h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-dark p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.card-dark ul {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 20px;
}

.card-dark ul li::marker {
  color: var(--gold);
}

/* Service card extras */
.service-tag {
  display: inline-block;
  background: rgba(212, 168, 67, 0.1);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 16px;
}

/* ============================================================
   7. Process Section
   ============================================================ */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px 10px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.process-step:hover {
  background: var(--bg-card);
}

.process-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}

.process-icon-wrapper i {
  font-size: 1.8rem;
  color: var(--gold);
  transition: var(--transition);
}

.process-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0a0a;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step:hover .process-icon-wrapper {
  background: var(--gold);
  box-shadow: 0 0 25px rgba(212, 168, 67, 0.3);
}

.process-step:hover .process-icon-wrapper i {
  color: #0a0a0a;
}

.process-label {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-desc {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.process-connector {
  display: none;
}

/* Connector line between steps on desktop */
@media (min-width: 768px) {
  .process-steps .col-md-3 {
    position: relative;
  }
  .process-steps .col-md-3:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -10%;
    width: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--border-light));
    z-index: 0;
  }
}

/* ============================================================
   8. Testimonials Carousel
   ============================================================ */
.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 48px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonial-quote-icon {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -10px;
}

.testimonial-quote p {
  color: var(--gray);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
}

.testimonial-stars {
  font-size: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: #0a0a0a;
  flex-shrink: 0;
}

.testimonial-author strong {
  color: var(--white);
}

/* Carousel arrows */
.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  transition: var(--transition);
}

.carousel-arrow:hover {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  opacity: 1;
}

.carousel-control-prev {
  left: -10px;
}

.carousel-control-next {
  right: -10px;
}

/* Carousel dots */
.testimonial-dots {
  position: relative;
  margin-top: 24px;
  bottom: auto;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  opacity: 1;
  transition: var(--transition);
}

.testimonial-dots button.active {
  background: var(--gold);
  transform: scale(1.2);
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* ============================================================
   9. CTA Section
   ============================================================ */
.cta-section {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 168, 67, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.cta-section .section-desc {
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-note {
  color: var(--gray);
  font-size: 0.85rem;
}

/* ============================================================
   10. Footer
   ============================================================ */
.site-footer {
  background-color: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  text-decoration: none;
}

.footer-brand:hover {
  text-decoration: none;
  opacity: 0.85;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
  font-size: 1rem;
}

.footer-desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 8px;
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer-contact i {
  color: var(--gold);
  font-size: 0.85rem;
  width: 16px;
  flex-shrink: 0;
}

.footer-col-title {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
  opacity: 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background-color: rgba(212, 168, 67, 0.08);
  transform: translateY(-2px);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  color: var(--gray-dark);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--gray);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ============================================================
   11. Forms (Bootstrap Dark Overrides)
   ============================================================ */
.form-control {
  background-color: #111111 !important;
  border: 1px solid var(--border) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
  font-size: 0.95rem !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.form-control::placeholder {
  color: var(--gray-dark) !important;
}

.form-control:focus {
  background-color: #111111 !important;
  border-color: var(--gold) !important;
  color: var(--white) !important;
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.12) !important;
  outline: none;
}

.form-control:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  background-color: #111111 !important;
  border: 1px solid var(--border) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 16px !important;
  font-size: 0.95rem !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%239a9a9a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.form-select:focus {
  background-color: #111111 !important;
  border-color: var(--gold) !important;
  color: var(--white) !important;
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.12) !important;
  outline: none;
}

.form-select option {
  background-color: #1a1a1a;
  color: var(--white);
}

.form-label {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

.form-group {
  margin-bottom: 20px;
}

.form-text {
  color: var(--gray-dark);
  font-size: 0.8rem;
  margin-top: 4px;
}

.form-check-input {
  background-color: var(--border) !important;
  border-color: var(--border-light) !important;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
}

.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.12) !important;
}

.form-check-label {
  color: var(--gray);
  font-size: 0.9rem;
  cursor: pointer;
}

/* ============================================================
   12. Quote Wizard
   ============================================================ */
.quote-wizard {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
}

.wizard-header {
  margin-bottom: 32px;
}

.wizard-progress {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 24px;
}

.wizard-progress-bar {
  background: var(--gold);
  height: 100%;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.wizard-step-indicators {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.wizard-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.wizard-step-indicator .indicator-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  background: var(--bg);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}

.wizard-step-indicator .indicator-label {
  color: var(--gray-dark);
  font-size: 0.75rem;
  text-align: center;
  transition: var(--transition);
}

.wizard-step-indicator.active .indicator-circle {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
}

.wizard-step-indicator.active .indicator-label {
  color: var(--gold);
}

.wizard-step-indicator.completed .indicator-circle {
  border-color: var(--gold);
  background: var(--gold);
  color: #0a0a0a;
}

.wizard-step-indicator.completed .indicator-label {
  color: var(--gray);
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: fadeInStep 0.3s ease;
}

@keyframes fadeInStep {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Feature Checkboxes (pill style) */
.feature-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.feature-checkbox {
  cursor: pointer;
  user-select: none;
}

.feature-checkbox input[type="checkbox"] {
  display: none;
}

.feature-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 8px 18px;
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.feature-checkbox-label:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 168, 67, 0.04);
}

.feature-checkbox input[type="checkbox"]:checked + .feature-checkbox-label {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
  font-weight: 600;
}

/* Service type cards */
.service-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.service-type-card {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.service-type-card:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.04);
}

.service-type-card.selected {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
}

.service-type-card .card-type-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.service-type-card .card-type-name {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}

.service-type-card.selected::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 10px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
}

/* Budget range */
.budget-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.budget-option {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.budget-option:hover {
  border-color: var(--gold);
}

.budget-option.selected {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
}

.budget-amount {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.budget-label {
  color: var(--gray);
  font-size: 0.78rem;
  margin-top: 4px;
}

/* ============================================================
   13. Stats / Numbers
   ============================================================ */
.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--gray);
  font-size: 0.9rem;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0;
}

/* ============================================================
   14. Portfolio / Projects
   ============================================================ */
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.portfolio-card:hover {
  border-color: rgba(212, 168, 67, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.portfolio-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.portfolio-thumb-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2.5rem;
}

.portfolio-content {
  padding: 24px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.portfolio-tag {
  background: rgba(212, 168, 67, 0.1);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 500;
}

.portfolio-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.portfolio-desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Portfolio filter */
.portfolio-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--gray);
  border-radius: 30px;
  padding: 7px 18px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 168, 67, 0.06);
}

/* ============================================================
   15. Pricing
   ============================================================ */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.12);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.pricing-desc {
  color: var(--gray);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.pricing-price {
  margin-bottom: 28px;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.pricing-currency {
  font-size: 1.3rem;
  font-weight: 600;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.pricing-period {
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 4px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.pricing-features li {
  color: var(--gray);
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.pricing-features li.unavailable {
  opacity: 0.4;
}

.pricing-features li.unavailable i {
  color: var(--gray-dark);
}

/* ============================================================
   15. Utility Classes
   ============================================================ */
.text-gold {
  color: var(--gold) !important;
}

.text-gray {
  color: var(--gray) !important;
}

.text-muted {
  color: var(--gray) !important;
}

.text-white {
  color: var(--white) !important;
}

.bg-dark-alt {
  background-color: #111111 !important;
}

.bg-card {
  background-color: var(--bg-card) !important;
}

.gold-separator {
  width: 60px;
  height: 3px;
  background-color: var(--gold);
  margin: 0 auto;
  border-radius: 2px;
  display: block;
}

.gold-separator.left {
  margin: 0;
}

.border-gold {
  border-color: var(--gold) !important;
}

.border-dark {
  border-color: var(--border) !important;
}

/* Divider */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* Badge/Tag */
.tag-gold {
  display: inline-block;
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* List with gold bullets */
.list-gold {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-gold li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.list-gold li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================================
   16. Animations
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.3); }
  50%       { box-shadow: 0 0 0 12px rgba(212, 168, 67, 0); }
}

.pulse-gold {
  animation: pulse-gold 2s ease infinite;
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.text-gradient-gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-hover), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* Spinner */
.spinner-gold {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border-light);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   Bootstrap Component Overrides
   ============================================================ */

/* Accordion */
.accordion-item {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 8px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--bg-card) !important;
  color: var(--white) !important;
  font-weight: 500;
  border: none !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--gold) !important;
  background-color: rgba(212, 168, 67, 0.06) !important;
}

.accordion-button::after {
  filter: invert(1) brightness(0.7);
}

.accordion-body {
  background-color: var(--bg-card);
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Nav Pills */
.nav-pills .nav-link {
  color: var(--gray) !important;
  border-radius: 30px;
  padding: 8px 20px !important;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: var(--transition);
}

.nav-pills .nav-link::after {
  display: none;
}

.nav-pills .nav-link:hover {
  color: var(--gold) !important;
  border-color: var(--border-light);
}

.nav-pills .nav-link.active {
  background-color: rgba(212, 168, 67, 0.12) !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

/* Tabs */
.nav-tabs {
  border-bottom: 1px solid var(--border);
}

.nav-tabs .nav-link {
  color: var(--gray) !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
  padding: 10px 20px !important;
}

.nav-tabs .nav-link::after {
  display: none;
}

.nav-tabs .nav-link:hover {
  color: var(--white) !important;
  border-bottom-color: var(--border-light) !important;
}

.nav-tabs .nav-link.active {
  color: var(--gold) !important;
  background: transparent !important;
  border-bottom-color: var(--gold) !important;
}

/* Modal */
.modal-content {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
}

.modal-header {
  border-bottom: 1px solid var(--border) !important;
}

.modal-footer {
  border-top: 1px solid var(--border) !important;
}

.modal-title {
  color: var(--white) !important;
}

.btn-close {
  filter: invert(1) brightness(0.7);
}

.btn-close:hover {
  filter: invert(1) brightness(1);
}

/* Alert */
.alert {
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1) !important;
  border-color: rgba(34, 197, 94, 0.2) !important;
  color: #4ade80 !important;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1) !important;
  border-color: rgba(239, 68, 68, 0.2) !important;
  color: #f87171 !important;
}

.alert-warning {
  background: rgba(212, 168, 67, 0.1) !important;
  border-color: rgba(212, 168, 67, 0.2) !important;
  color: var(--gold) !important;
}

.alert-info {
  background: rgba(59, 130, 246, 0.1) !important;
  border-color: rgba(59, 130, 246, 0.2) !important;
  color: #93c5fd !important;
}

/* Toast */
.toast {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  color: var(--white) !important;
}

.toast-header {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: var(--gray) !important;
  border-bottom-color: var(--border) !important;
}

/* Badge */
.badge.bg-gold {
  background-color: var(--gold) !important;
  color: #0a0a0a !important;
}

/* Tooltip / Popover */
.tooltip-inner {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--white);
  font-size: 0.82rem;
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: var(--border-light);
}

/* Pagination */
.pagination .page-link {
  background-color: var(--bg-card);
  border-color: var(--border);
  color: var(--gray);
  transition: var(--transition);
}

.pagination .page-link:hover {
  background-color: rgba(212, 168, 67, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}

.pagination .page-item.active .page-link {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

/* ============================================================
   17. Responsive — max-width: 992px (lg)
   ============================================================ */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 80px 0;
  }

  .cta-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .process-steps .col-md-3::after {
    display: none;
  }

  .stat-divider {
    display: none;
  }
}

/* ============================================================
   17b. Responsive — max-width: 768px (md)
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    text-align: center;
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin: 0 auto 28px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .navbar-logo {
    height: 45px;
  }

  .section {
    padding: 60px 0;
  }

  .cta-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .quote-wizard {
    padding: 24px 20px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .service-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .budget-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-desc {
    max-width: 100%;
  }

  .about-stats-grid {
    gap: 10px;
  }

  .about-stat-number {
    font-size: 1.6rem;
  }

  .cta-card {
    padding: 32px 24px;
  }

  .testimonial-card {
    padding: 28px 20px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .footer-logo {
    height: 90px;
  }

  .portfolio-image {
    height: 180px;
  }
}

/* ============================================================
   17c. Responsive — max-width: 576px (sm)
   ============================================================ */
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-actions .btn-gold,
  .hero-actions .btn-outline-gold {
    padding: 10px 20px;
    font-size: 0.88rem;
  }

  .btn-gold,
  .btn-outline-gold {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
  }

  .card-dark {
    padding: 22px 18px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .service-type-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .social-links {
    gap: 8px;
  }

  .navbar-logo {
    height: 36px;
  }

  .footer-logo {
    height: 70px;
  }

  .about-stats-grid {
    gap: 8px;
  }

  .about-stat-card {
    padding: 18px 12px;
  }

  .about-stat-number {
    font-size: 1.4rem;
  }

  .why-icon-circle {
    width: 56px;
    height: 56px;
  }

  .process-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .wizard-step-indicator .indicator-label {
    display: none;
  }

  .navbar-collapse {
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    margin-top: 8px;
  }
}

/* ============================================================
   Scrollbar (webkit)
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-dark);
}

/* ============================================================
   Selection
   ============================================================ */
::selection {
  background: rgba(212, 168, 67, 0.3);
  color: var(--white);
}

/* ============================================================
   Scroll Reveal Animations
   ============================================================ */
.scroll-reveal {
  opacity: 1;
  transform: none;
}

/* Hero fade-in-up animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

/* ============================================================
   Hero Canvas (particle network)
   ============================================================ */
.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   Service Cards (homepage)
   ============================================================ */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.1);
}

.service-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-icon-box i {
  font-size: 1.6rem;
  color: var(--gold);
}

.service-card:hover .service-icon-box {
  background: var(--gold);
  border-color: var(--gold);
}

.service-card:hover .service-icon-box i {
  color: #0a0a0a;
}

/* ============================================================
   Why Us Section
   ============================================================ */
.why-us {
  background: var(--bg-alt);
}

.why-card {
  padding: 32px 20px;
}

.why-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.why-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.1);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.why-icon-circle i {
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}

.why-card:hover .why-icon-circle {
  background: var(--gold);
}

.why-card:hover .why-icon-circle i {
  color: #0a0a0a;
}

/* ============================================================
   Portfolio Image
   ============================================================ */
.portfolio-image {
  background: #e8e8e8;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-image img {
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
  padding: 16px;
}

.portfolio-placeholder {
  min-height: 200px;
  background: var(--bg-alt);
}

/* ============================================================
   About Stats Grid
   ============================================================ */
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.about-stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.about-stat-card.highlighted {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.06);
}

.about-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label {
  color: var(--gray);
  font-size: 0.85rem;
}

/* ============================================================
   Testimonial Avatar
   ============================================================ */
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #0a0a0a;
  flex-shrink: 0;
}

/* ============================================================
   CTA Card
   ============================================================ */
.cta-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 40px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.04) 0%, var(--bg-card) 100%);
  position: relative;
}

.cta-star {
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.cta-card .section-title {
  margin-bottom: 12px;
}

.cta-text {
  color: var(--gray);
  font-size: 1.05rem;
}
