/*
Theme Name: TLV
Text Domain: tlv
Version: 1.0.25
Requires at least: 7.0.0
Tested up to: 7.0.0
Description: Timeless Limousine LLC Custom Theme
*/
.luxury-metallic-text * {
  font-family: "Cinzel", "Playfair Display", "Times New Roman", serif !important; /* Luxury Serif Font */
  text-transform: uppercase !important;
  /* 1. The Metallic Gradient */
  background: linear-gradient(to bottom, #fff 0%, #fff 20%, #fff 40%, #fff 50%, #fff 60%, #fff 80%, #a4a4a4 100%) !important;
  /* 2. Clip the background to the text */
  -webkit-background-clip: text !important;
  background-clip: text !important;
  /* 3. Make the text itself transparent so the background shows through */
  color: transparent !important;
  /* 4. The 3D Embossed Shadow Effect */
  text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 2px 0px rgba(0, 0, 0, 0.2), 0px 4px 8px rgba(77, 77, 77, 0.8) !important; /* Glow/Blur */
  /* 5. Optional: A subtle glow effect */
  filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.1)) !important;
}

:root {
  --section-padding-desktop: 80px;
  --section-padding-tablet: 60px;
  --section-padding-mobile: 50px;
}

/* Enable smooth scrolling for the whole page */
html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  padding: 0;
  margin: 0;
  background-color: var(--body-color);
  font-family: "Montserrat";
  overflow-x: hidden;
}

section {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cinzel" !important;
}

* {
  box-sizing: border-box;
}

.mainView {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1410px) {
  .mainView {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
/* Update these classes in your custom-landing.css */
.cta-primary {
  background-color: transparent;
  backdrop-filter: blur(6px);
  color: color-mix(in srgb, var(--button-color) 80%, white) !important;
  border: 1px solid color-mix(in srgb, var(--button-color) 40%, black);
}

.mainSec {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 992px) {
  .mainSec {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .mainSec {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

.mainSecHeader {
  text-align: center;
  padding: 20px 0;
  position: relative;
  margin: auto;
  max-width: 600px;
}

.mainSecTitle * {
  color: rgba(225, 225, 225, 0.9);
  line-height: 1.4;
  font-size: clamp(28px, 2vw, 34px);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  position: relative;
  font-family: "Cinzel" !important;
}

.mainSecSubtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--main-color, #C9A646);
  margin-bottom: 10px;
}

.mainCtaBtn {
  background-color: #C4082E;
  border-radius: 4px;
  padding: 15px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.4s;
  text-align: center;
}

.mainCtaBtn:hover {
  color: #fff;
  background-color: #b30024;
}

.editorDesign ol, .editorDesign ul {
  margin: 5px 0;
  margin-left: 10px;
  padding-left: 10px;
}

.viewMoreBtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  gap: 5px;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  z-index: 50;
}
.viewMoreBtn:hover svg {
  transform: translateX(4px);
}

/* ========== MOBILE STICKY BOTTOM BAR ========== */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 10px 16px;
  transform: translateY(100%); /* Hidden by default */
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: none; /* Hidden on desktop */
  /* Add bottom padding for devices with home indicator (iPhone X+) */
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
}

.mobile-sticky-bar.visible {
  transform: translateY(0); /* Slide up to visible */
}

.mobile-sticky-container {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

/* Sticky Buttons */
.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: var(--button-corner, 8px);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
}

.sticky-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sticky-btn-text {
  white-space: nowrap;
}

/* Call Button */
.sticky-btn-call {
  background-color: #ffffff;
  color: var(--main-color);
  border: 2px solid var(--main-color);
}

.sticky-btn-call:hover {
  background-color: #fff5f5;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196, 8, 46, 0.15);
}

.sticky-btn-call:active {
  transform: translateY(0);
}

/* Appointment Button */
.sticky-btn-appointment {
  max-width: unset !important;
  /* background-color: var(--main-color); */
  /* color: #ffffff !important; */
  /* border: 2px solid var(--main-color); */
}

/* Pulse animation for appointment button */
@keyframes stickyPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(196, 8, 46, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(196, 8, 46, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(196, 8, 46, 0);
  }
}
.sticky-btn-appointment:hover {
  animation: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .mobile-sticky-bar {
    display: block; /* Show on tablet and mobile */
  }
}
@media (min-width: 1025px) {
  .mobile-sticky-bar {
    display: none; /* Hide on desktop */
  }
  .mobile-sticky-bar.visible {
    transform: translateY(100%); /* Ensure hidden on desktop even if visible class is added */
  }
}
@media (max-width: 480px) {
  .mobile-sticky-bar {
    padding: 8px 12px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }
  .mobile-sticky-container {
    gap: 8px;
  }
  .sticky-btn {
    padding: 12px 14px;
    font-size: 14px;
    gap: 6px;
  }
  .sticky-btn-icon svg {
    width: 16px;
    height: 16px;
  }
}
.gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-default-icon .ginput_container_date::after {
  color: rgba(255, 255, 255, 0.65) !important;
}

.main-nav-parent {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.main-nav-parent .navbtn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.main-nav-parent .navbtn svg {
  width: 20px;
  height: 20px;
}
.main-nav-parent .navbtn:hover {
  background: var(--main-color);
  border-color: var(--main-color);
  transform: scale(1.05);
}

/* ========== MODERN LUXURY FOOTER ========== */
.modern-footer {
  background-color: #080808;
  padding: 60px 0 40px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  /* Subtle gradient glow on top border */
}
.modern-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155, 188, 96, 0.3), transparent);
}

.modern-footer .footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  align-items: start;
  padding: 20px 0;
}

/* ===== COLUMN 1: BRANDING ===== */
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-wrapper {
  max-width: 160px;
  margin-bottom: 15px;
}

.footer-logo {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer-tagline {
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 400;
  color: var(--main-color);
  margin-bottom: 15px;
  text-transform: uppercase;
  opacity: 0.9;
  font-family: "Cinzel" !important;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.5px;
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(243, 243, 243, 0.2784313725);
}

/* ===== COLUMN TITLES ===== */
.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--main-color);
  margin: 0 0 20px 0;
  position: relative;
  padding-bottom: 12px;
  opacity: 0.9;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background-color: var(--main-color);
  border-radius: 2px;
}

/* ===== NAVIGATION LINKS ===== */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 10px;
}

.footer-nav-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  position: relative;
}

/* Modern underline animation on hover */
.footer-nav-list a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--main-color);
  transition: width 0.3s ease;
}

.footer-nav-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-nav-list a:hover::after {
  width: 100%;
}

/* ===== CONTACT LIST ===== */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--main-color);
  opacity: 0.8;
  width: 16px;
  height: 16px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list a:hover {
  color: var(--main-color);
}

.footer-contact-list span {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== SERVICE AREA ===== */
.footer-service-area {
  display: flex;
  flex-direction: column;
}

.footer-skyline-wrapper {
  margin-bottom: 12px;
  max-width: 100%;
}

.footer-skyline {
  width: 100%;
  height: auto;
  max-height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.6;
  filter: brightness(1.2);
}

.footer-service-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .modern-footer .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-branding {
    grid-column: span 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
    align-items: center;
    text-align: center;
  }
  .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-col-title {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .modern-footer {
    padding: 40px 0 30px 0;
  }
  .modern-footer .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-branding {
    grid-column: span 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 25px;
  }
  .footer-nav-list {
    text-align: center;
  }
  .footer-nav-list a:hover {
    transform: translateY(-2px);
  }
  .footer-nav-list a::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-contact-list li {
    justify-content: center;
    text-align: center;
  }
  .footer-service-desc {
    text-align: center;
  }
  .footer-skyline-wrapper {
    text-align: center;
  }
  .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
/* ===== STATIC SOCIAL ICONS ===== */
.footer-socials-static {
  display: flex;
  gap: 14px;
  margin-top: 5px;
  margin-bottom: 20px;
}

.footer-socials-static a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--main-color); /* Your lime green color */
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}

.footer-socials-static a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-socials-static a:hover {
  background: var(--main-color);
  color: #080808; /* Dark background color */
  transform: translateY(-3px) scale(1.05);
  border-color: var(--main-color);
  box-shadow: 0 4px 15px rgba(155, 188, 96, 0.25);
}

/* Mobile Centering */
@media (max-width: 768px) {
  .footer-socials-static {
    justify-content: center;
    width: 100%;
  }
}
/* ===== GLOBAL INPUTS & FORM FIELDS ===== */
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=date],
input[type=time],
select,
textarea,
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gform_wrapper select,
.gform_wrapper textarea {
  width: 100%;
  padding: 16px 18px;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff; /* White text for dark theme */
  background-color: var(--body-color); /* Deep black input background */
  border: 1px solid rgba(225, 225, 225, 0.4) !important;
  border-radius: 6px !important;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=date]:focus,
input[type=time]:focus,
select:focus,
textarea:focus,
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
  border-color: var(--main-color) !important;
}

/* Placeholder text color */
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Focus state (Neon Green border for active fields) */
input:focus,
select:focus,
textarea:focus,
.gform_wrapper input:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
  border-color: var(--main-color); /* Your neon green color */
  background-color: #111111;
  box-shadow: 0 0 0 3px rgba(0, 208, 104, 0.15); /* Soft neon glow */
}

/* Error state */
input.error,
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea {
  border-color: #ff4444;
  box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.15);
}

/* Labels */
label,
.gfield_label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 8px;
}

/* Form Row Layout */
.gform_wrapper .gform_fields {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns */
  gap: 20px;
}

.gform_wrapper .gfield--width-full {
  grid-column: span 2; /* Full width fields */
}

@media (max-width: 768px) {
  .gform_wrapper .gform_fields {
    grid-template-columns: 1fr;
  }
  .gform_wrapper .gfield--width-full {
    grid-column: span 1;
  }
}
/* ============================================================
   GLOBAL CSS CUSTOM PROPERTIES & ANIMATED BUTTON
   ============================================================ */
@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --gradient-angle-offset {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --gradient-percent {
  syntax: "<percentage>";
  initial-value: 5%;
  inherits: false;
}
@property --gradient-shine {
  syntax: "<color>";
  initial-value: white;
  inherits: false;
}
:root {
  --body-color: #050505;
  --cta-secondary-bg: var(--body-color);
  --cta-secondary-highlight: rgba(55, 184, 51, 0.562);
  --duration: 4s;
  --shadow-size: 2px;
}

/* Base CTA Styles */
/* ============================================================
   GLOBAL GRAVITY FORMS OVERRIDES
   ============================================================ */
.gform_wrapper {
  margin: 0 !important;
}

.gform_wrapper .gform_heading {
  display: none !important;
}

.gform_wrapper .gform_fields {
  row-gap: 12px !important;
  -moz-column-gap: 15px !important;
       column-gap: 15px !important;
}

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gform_wrapper select,
.gform_wrapper textarea {
  width: 100% !important;
  padding: 18px 16px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: #ffffff !important;
  background-color: #050505 !important;
  border: none;
  outline: none !important;
  min-height: 55px;
  min-width: 100% !important;
}

.gform_wrapper input::-moz-placeholder, .gform_wrapper textarea::-moz-placeholder, .gform_wrapper select::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8) !important;
  text-transform: uppercase !important;
}

.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder,
.gform_wrapper select::placeholder {
  color: rgba(255, 255, 255, 0.8) !important;
  text-transform: uppercase !important;
}

.gform_wrapper .validation_message {
  color: #ff6b6b !important;
  font-size: 12px !important;
}

.gform_wrapper .gfield_error {
  border: none !important;
  background: transparent !important;
}

.header-cta {
  display: inline-block;
  padding: 15px 35px;
  border-radius: var(--button-corner, 30px);
  font-size: 16px;
  font-weight: 600; /* Slightly bolder for better readability on gold */
  line-height: 20px;
  text-decoration: none;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: -moz-max-content;
  max-width: max-content;
  cursor: pointer;
}

.cta-secondary {
  /* Rich, metallic gold gradient using your requested tones */
  background: linear-gradient(135deg, #C9A646 0%, #FFEFA6 50%, #D4AF37 100%);
  background-size: 200% auto; /* Allows the gradient to shift smoothly on hover */
  /* Dark charcoal color for premium, high-contrast readability */
  color: #1c1604 !important;
}

.cta-secondary:hover {
  background-position: right center; /* Shifts the gradient colors */
  color: #1c1604 !important;
}

/* Polished light reflection sweep */
.header-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.6s ease-in-out;
}

.header-cta:hover::before {
  left: 100%;
}

/* Micro-interaction: nudge the arrow icon slightly on hover */
.cta-arrow {
  transition: transform 0.3s ease;
}

.header-cta:hover .cta-arrow {
  transform: translateX(4px);
}

input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  outline: none;
  font-family: inherit;
  display: inline-block;
  padding: 15px 35px !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
  text-align: center;
  background: linear-gradient(135deg, #C9A646 0%, #FFEFA6 50%, #D4AF37 100%);
  background-size: 200% auto;
  color: #1c1604 !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

input[type=submit]:hover {
  background-position: right center;
}

.comment-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.comment-form .comment-form-author, .comment-form .comment-form-email {
  width: 48%;
}
@media (max-width: 768px) {
  .comment-form .comment-form-author, .comment-form .comment-form-email {
    width: 100%;
  }
}
.comment-form .comment-form-author {
  order: 1;
}
.comment-form .comment-form-email {
  order: 2;
}
.comment-form .comment-form-comment {
  order: 3;
  width: 100%;
}
.comment-form .comment-notes {
  order: 4;
}
.comment-form .comment-form-cookies-consent {
  order: 5;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 3px;
}
.comment-form .comment-form-cookies-consent label {
  margin: 0;
}
.comment-form .form-submit {
  order: 6;
  width: 100%;
}

.comments-area .comments-title {
  font-size: clamp(16px, 2vw, 18px);
}
.comments-area ol.children {
  list-style-type: none;
  padding: 0;
  padding-left: 20px;
}
.comments-area ol.comment-list {
  list-style-type: none;
  padding: 0;
  padding-left: 20px;
}
.comments-area ol.comment-list li.comment {
  margin-top: 15px;
}
.comments-area ol.comment-list li.comment .comment-body {
  border: 1px solid rgba(255, 255, 255, 0.2549019608);
  border-radius: 12px;
  padding: 15px;
  overflow: hidden;
}
.comments-area ol.comment-list li.comment .comment-meta {
  background-color: #3f3e3e;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.comments-area ol.comment-list li.comment .comment-meta .comment-author {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}
.comments-area ol.comment-list li.comment .comment-meta .comment-author img {
  border-radius: 100%;
  width: 40px;
  height: 40px;
}
@media (max-width: 768px) {
  .comments-area ol.comment-list li.comment .comment-meta .comment-author img {
    display: none;
  }
}
.comments-area ol.comment-list li.comment .comment-meta .comment-metadata a {
  color: rgba(255, 255, 255, 0.768627451);
  font-size: 13px;
  text-decoration: none;
}
.comments-area ol.comment-list li.comment .reply {
  display: flex;
  justify-content: end;
}
.comments-area ol.comment-list li.comment .reply .comment-reply-link {
  color: var(--main-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.comments-area ol.comment-list #cancel-comment-reply-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6509803922);
}
.comments-area ol.comment-list #reply-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-template-template-thank-you .tlv-header {
  position: static !important;
  background-color: var(--body-color) !important;
}

.thank-you-wrapper {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.thank-you-card {
  max-width: 560px;
  width: 100%;
  background: #ffffff;
  border-radius: 2rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08), 0 8px 20px -8px rgba(0, 0, 0, 0.04);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.thank-you-icon {
  background: rgba(196, 8, 46, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  color: var(--main-color);
  box-shadow: 0 10px 20px -8px rgba(196, 8, 46, 0.2);
}

.thank-you-icon svg {
  width: 44px;
  height: 44px;
  stroke-width: 1.8;
}

.thank-you-title {
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.thank-you-message {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}

.thank-you-message strong {
  font-weight: 600;
  color: #1e293b;
}

.thank-you-details {
  background: #f8fafc;
  border-radius: 1.5rem;
  padding: 1.5rem 1.2rem;
  margin-bottom: 2.2rem;
  border: 1px solid #f1f5f9;
  text-align: left;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 0.9rem;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-item .detail-icon {
  min-width: 24px;
  color: var(--main-color);
  margin-top: 2px;
}

.detail-item .detail-text {
  font-weight: 500;
}

.detail-item .detail-text small {
  display: block;
  font-weight: 400;
  color: #64748b;
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

.thank-you-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--button-color);
  color: #ffffff;
  border: none;
  padding: 0.85rem 2.2rem;
  border-radius: var(--button-corner);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.01em;
}

.thank-you-back-btn:hover {
  background: var(--button-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  text-decoration: none;
}

.thank-you-back-btn:active {
  transform: translateY(0);
}

.thank-you-back-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

@media (max-width: 480px) {
  .thank-you-card {
    padding: 2rem 1.5rem;
    border-radius: 1.8rem;
  }
  .thank-you-title {
    font-size: 1.7rem;
  }
  .thank-you-message {
    font-size: 1rem;
  }
}
.gform-loader {
  display: none !important;
}/*# sourceMappingURL=style.css.map */