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

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background: #0a0a0a !important;
  color: #aaaaaa;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
}
h1 { font-size: 56px; font-weight: 800; }
h2 { font-size: 40px; font-weight: 700; }
h3 { font-size: 22px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }

a { text-decoration: none; }

.v-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c0392b;
  display: block;
  margin-bottom: 16px;
}

/* HERO */
.v-hero {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  padding: 140px 80px 100px;
  min-height: 520px;
}
.v-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.65);
  z-index: 0;
}
.v-hero-content {
  position: relative;
  z-index: 1;
}
.v-hero h1 { margin-bottom: 20px; }
.v-hero p {
  font-size: 18px;
  color: #aaaaaa;
  max-width: 600px;
  margin-bottom: 40px;
}

/* TICKER */
.v-ticker-wrap {
  background: #c9a84c;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.v-ticker {
  display: inline-flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
}
.v-ticker span {
  font-size: 13px;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* STATS */
.v-stats {
  background: #111111;
  padding: 60px 80px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.v-stat {
  text-align: center;
  padding: 30px 50px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.v-stat:last-child { border-right: none; }
.v-stat-num {
  font-size: 48px;
  font-weight: 800;
  color: #c9a84c;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.v-stat-label {
  font-size: 13px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.v-stats .v-stat-num,
.v-stats .v-stat-label {
  display: block !important;
}
.v-stats .v-stat-num {
  color: #c9a84c !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* GRID */
.v-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.v-grid-2 { grid-template-columns: repeat(2, 1fr); }
.v-grid-4 { grid-template-columns: repeat(4, 1fr); }
.v-grid-5 { grid-template-columns: repeat(5, 1fr); }

/* CARDS */
.v-card {
  background: #111111;
  border-top: 3px solid #c0392b;
  border-radius: 6px;
  padding: 28px;
  transition: transform 0.2s;
}
.v-card:hover { transform: translateY(-4px); }
.v-card h3 {
  color: #ffffff !important;
  margin-bottom: 8px;
}
.v-card p {
  font-size: 14px;
  color: #888888;
  margin-bottom: 12px;
}
.v-card-tag {
  font-size: 11px;
  color: #c0392b;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}
.v-card-price {
  font-size: 18px;
  font-weight: 700;
  color: #c9a84c;
  margin-bottom: 16px;
  display: block;
}

/* BUTTONS */
.v-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: 'Inter', sans-serif;
}
.v-btn:hover { opacity: 0.85; }
.v-btn-primary {
  background: #c9a84c !important;
  color: #0a0a0a !important;
}
.v-btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff !important;
  background: transparent;
}

/* FEATURES */
.v-features {
  background: #111111;
  padding: 50px 80px;
}
.v-features-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.v-feature-item {
  background: #0a0a0a;
  border-top: 3px solid #c0392b;
  border-radius: 6px;
  padding: 24px 28px;
  text-align: center;
  flex: 1;
  min-width: 160px;
}
.v-feature-item strong {
  display: block;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}
.v-feature-item span {
  font-size: 12px;
  color: #888;
}

/* QUOTE */
.v-quote {
  padding: 60px 80px;
  border-left: 4px solid #c0392b !important;
  background: #111111;
}
blockquote {
  border-left: none !important;
  padding-left: 0 !important;
}
.v-quote blockquote {
  font-size: 24px;
  font-style: italic;
  color: #ffffff !important;
  line-height: 1.6;
  margin-bottom: 20px;
}
.v-quote cite {
  color: #c9a84c;
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
}

/* CTA */
.v-cta {
  background: #c0392b;
  padding: 100px 80px;
  text-align: center;
}
.v-cta h2 { color: #ffffff !important; margin-bottom: 16px; }
.v-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 36px;
}

/* FAQ */
.v-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.v-faq-item summary {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.v-faq-item summary::-webkit-details-marker { display: none; }
.v-faq-item summary::after {
  content: "+";
  color: #c0392b;
  font-size: 20px;
  font-weight: 300;
}
.v-faq-item[open] summary::after { content: "−"; }
.v-faq-item p {
  color: #aaaaaa;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
}

/* SECTION */
.v-section {
  padding: 100px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* FOOTER */
.v-footer {
  background: #0a0a0a !important;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 80px 80px 40px;
}
.v-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.v-footer p {
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
}
.v-footer h4 {
  color: #ffffff !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 20px !important;
}
.v-footer ul { list-style: none; padding: 0; margin: 0; }
.v-footer ul li { margin-bottom: 10px; }
.v-footer ul li a {
  color: #666666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.v-footer ul li a:hover { color: #ffffff; }
.v-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.v-footer-bottom p { font-size: 13px; color: #444444; }

#main-footer {
  display: none !important;
}
.v-footer {
  display: block !important;
}

/* DIVI HEADER */
#main-header,
#et-top-navigation {
  background: #0a0a0a !important;
}
#main-header .container {
  background: #0a0a0a !important;
}
#et-top-navigation nav > ul > li > a {
  color: #cccccc !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}
#et-top-navigation nav > ul > li > a:hover {
  color: #ffffff !important;
}
#et-top-navigation nav > ul > li.current-menu-item > a,
#et-top-navigation nav > ul > li.current-menu-ancestor > a {
  color: #c0392b !important;
}
#et-top-navigation ul ul {
  background: #111111 !important;
  border-top: 3px solid #c0392b !important;
  border-radius: 0 0 6px 6px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5) !important;
}
#et-top-navigation ul ul li a {
  color: #aaaaaa !important;
  font-size: 13px !important;
  padding: 12px 20px !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}
#et-top-navigation ul ul li a:hover {
  color: #ffffff !important;
  background: #1a1a1a !important;
}
#logo {
  max-width: 130px !important;
  width: 130px !important;
  height: auto !important;
}
.mobile_menu_bar:before {
  color: #ffffff !important;
}
.et_mobile_menu {
  background: #111111 !important;
  border-top: 3px solid #c0392b !important;
}
.et_mobile_menu li a {
  color: #cccccc !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  background: transparent !important;
}
.et_mobile_menu li a:hover {
  color: #ffffff !important;
  background: #1a1a1a !important;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  h1 { font-size: 40px !important; }
  .v-hero { padding: 100px 24px 80px; }
  .v-stats { padding: 40px 24px; }
  .v-stat { padding: 20px 24px; }
  .v-grid { grid-template-columns: repeat(2,1fr); }
  .v-grid-4 { grid-template-columns: repeat(2,1fr); }
  .v-grid-5 { grid-template-columns: repeat(2,1fr); }
  .v-features { padding: 40px 24px; }
  .v-cta { padding: 60px 24px; }
  .v-footer { padding: 60px 24px 40px; }
  .v-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .v-quote { padding: 40px 24px; }
  .v-section { padding: 60px 24px; }
}
@media (max-width: 640px) {
  h1 { font-size: 32px !important; }
  h2 { font-size: 26px !important; }
  .v-grid,
  .v-grid-2,
  .v-grid-4,
  .v-grid-5 { grid-template-columns: 1fr; }
  .v-stat { padding: 16px 20px; }
  .v-stat-num { font-size: 36px; }
  .v-footer-grid { grid-template-columns: 1fr; }
  .v-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ===== CONTACT FORM 7 COMPLETE STYLE FIX ===== */
.wpcf7 {
  width: 100% !important;
}
.wpcf7-form {
  display: grid !important;
  gap: 16px !important;
  background: transparent !important;
}
.wpcf7-form p {
  margin: 0 !important;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form select,
.wpcf7-form textarea {
  background: #0a0a0a !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
  padding: 14px 16px !important;
  border-radius: 4px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  width: 100% !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: #c9a84c !important;
  outline: none !important;
  box-shadow: none !important;
}
.wpcf7-form select {
  background-image: none !important;
  color: #aaaaaa !important;
}
.wpcf7-form select option {
  background: #111111 !important;
  color: #ffffff !important;
}
.wpcf7-form textarea {
  height: 140px !important;
  resize: vertical !important;
}
.wpcf7-form input[type="submit"],
.wpcf7-submit {
  background: #c9a84c !important;
  color: #0a0a0a !important;
  border: none !important;
  padding: 16px 40px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  font-family: 'Inter', sans-serif !important;
  width: 100% !important;
  margin-top: 8px !important;
  transition: opacity 0.2s !important;
}
.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover {
  opacity: 0.85 !important;
}
.wpcf7-response-output {
  border: 1px solid #c9a84c !important;
  color: #ffffff !important;
  background: #111111 !important;
  padding: 12px 16px !important;
  border-radius: 4px !important;
  margin-top: 16px !important;
  font-size: 14px !important;
}
.wpcf7-not-valid-tip {
  color: #c0392b !important;
  font-size: 12px !important;
  margin-top: 4px !important;
}
.wpcf7-spinner {
  display: none !important;
}

/* Fix the red line above the form */
.wpcf7 br { display: none !important; }
.v-card .wpcf7 {
  border-top: none !important;
}

@media (max-width:640px) {
  .v-hero {
    min-height: 100svh !important;
    padding: 120px 24px 80px !important;
  }
  .v-hero video {
    object-fit: cover !important;
    object-position: center center !important;
    width: 100% !important;
    height: 100% !important;
  }
  .v-hero h1 {
    font-size: 40px !important;
    line-height: 1.15 !important;
  }
  .v-hero p {
    font-size: 16px !important;
  }
  .v-btn {
    width: 100% !important;
    text-align: center !important;
    display: block !important;
  }
}

@media (max-width: 640px) {
  .v-stats {
    flex-direction: column !important;
    padding: 40px 24px !important;
    gap: 0 !important;
  }
  .v-stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
    padding: 24px 16px !important;
    width: 100% !important;
  }
  .v-stat:last-child {
    border-bottom: none !important;
  }
  .v-stat-num {
    font-size: 40px !important;
  }
}

@media (max-width: 640px) {
  .v-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .v-grid-5 {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  .v-card {
    padding: 20px !important;
  }
  .v-card img {
    height: 160px !important;
  }
}

@media (max-width: 640px) {
  .v-card {
    width: 100% !important;
    text-align: left !important;
  }
  .v-card h3 {
    text-align: left !important;
  }
  .v-card p {
    text-align: left !important;
  }
  .v-card-price {
    text-align: left !important;
  }
}

@media (max-width: 640px) {
  .v-quote {
    padding: 32px 20px !important;
    margin: 0 16px !important;
  }
  .v-quote blockquote {
    font-size: 18px !important;
  }
  .v-cta {
    padding: 60px 20px !important;
  }
  .v-cta h2 {
    font-size: 28px !important;
  }
  .v-features-grid {
    flex-direction: column !important;
    padding: 0 16px !important;
  }
  .v-feature-item {
    min-width: unset !important;
    width: 100% !important;
  }
}

@media (max-width: 640px) {
  * {
    max-width: 100% !important;
    word-break: break-word !important;
  }
  body {
    overflow-x: hidden !important;
  }
  img {
    max-width: 100% !important;
    height: auto !important;
  }
  [style*="padding: 100px 80px"] {
    padding: 60px 16px !important;
  }
  [style*="padding:100px 80px"] {
    padding: 60px 16px !important;
  }
}

