/**
 * Auto-generated blocks CSS
 * Generated: 2026-02-13 16:49:04
 */

/* ========== Block: header_1 (header) ========== */
/* Source: headings/header/template-assets/navbar-styles.css */
/* ==================== NAVBAR - LIGHT THEME ==================== */

:root {
  --navbar-height: 72px;
  --navbar-bg: var(--light-color);
  --navbar-bg-scrolled: var(--white);
  --navbar-text: var(--shadow-color);
  --navbar-text-hover: var(--primary-color);
  --navbar-accent: var(--primary-color);
  --navbar-border: var(--light-gray);
  --navbar-shadow: 0 2px 20px rgba(20, 20, 24, 0.08);
  --navbar-shadow-scrolled: 0 4px 30px rgba(20, 20, 24, 0.12);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== BASE NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  background: var(--navbar-bg);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition:
    background var(--transition-smooth),
    box-shadow var(--transition-smooth),
    border-color var(--transition-smooth);
}

.navbar.scrolled {
  background: var(--navbar-bg-scrolled);
  border-bottom-color: var(--navbar-border);
  box-shadow: var(--navbar-shadow-scrolled);
}

/* Transparent mode for hero sections */
.navbar.transparent {
  background: transparent;
  border-bottom-color: transparent;
}

.navbar.transparent .nav-link,
.navbar.transparent .language-toggle,
.navbar.transparent .toggle-line {
  color: var(--light-color);
}

.navbar.transparent .toggle-line {
  background: var(--light-color);
}

/* ==================== CONTAINER ==================== */
.navbar-container {
  max-width: 1400px;
  width: 92%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ==================== BRAND / LOGO ==================== */
.navbar-brand {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 90%;
}

.brand-logo {
  height: 100%;
  max-height: calc(var(--navbar-height) * 0.9);
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: scale(1.03);
}

/* ==================== NAVIGATION MENU ==================== */
.navbar-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  color: var(--navbar-text);
  text-decoration: none;
  font-family: "Gilroy", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 6px;
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}

/* Hover background */
.nav-link:hover {
  color: var(--navbar-text-hover);
  background: rgba(238, 10, 16, 0.06);
}

/* Active underline */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--navbar-accent);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--navbar-accent);
}

/* ==================== ACTIONS AREA ==================== */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* ==================== LANGUAGE SELECTOR ==================== */
.language-selector {
  position: relative;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid var(--navbar-border);
  border-radius: 8px;
  color: var(--navbar-text);
  font-family: "Gilroy", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.language-toggle:hover {
  background: var(--light-gray);
  border-color: var(--secondary-color);
}

.globe-icon {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.current-lang {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Dropdown */
.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: var(--white);
  border: 1px solid var(--navbar-border);
  border-radius: 10px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast),
    visibility var(--transition-fast);
  box-shadow: 0 8px 30px rgba(20, 20, 24, 0.12);
  z-index: 100;
}

.language-selector.active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: block;
  padding: 10px 16px;
  color: var(--navbar-text);
  text-decoration: none;
  font-family: "Gilroy", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background var(--transition-fast);
}

.language-option:hover {
  background: var(--light-color);
  color: var(--navbar-accent);
}

/* ==================== CTA BUTTON ==================== */
.navbar-cta {
  flex-shrink: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  background: var(--gradient-primary);
  color: var(--white);
  text-decoration: none;
  font-family: "Gilroy", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(238, 10, 16, 0.25);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 10, 16, 0.35);
}

.cta-button:active {
  transform: translateY(0);
}

/* ==================== MOBILE TOGGLE ==================== */
.toggle-block {
  display: none;
}

.navbar-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.navbar-toggle:hover {
  background: var(--light-gray);
}

.toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navbar-text);
  border-radius: 2px;
  transition:
    transform var(--transition-smooth),
    opacity var(--transition-fast);
}

/* Hamburger to X animation */
.navbar-toggle.active .toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active .toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggle.active .toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== RESPONSIVE - TABLET ==================== */
@media (max-width: 1100px) {
  .navbar-container {
    gap: 24px;
  }

  .navbar-nav {
    gap: 2px;
  }

  .nav-link {
    padding: 10px 12px;
    font-size: 0.88rem;
  }
}

/* ==================== RESPONSIVE - MOBILE ==================== */
@media (max-width: 900px) {
  :root {
    --navbar-height: 64px;
  }

  .toggle-block {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 0;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform var(--transition-smooth),
      opacity var(--transition-smooth),
      visibility var(--transition-smooth);
    overflow-y: auto;
  }

  .navbar-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav-link {
    padding: 16px 24px;
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 1px solid var(--light-gray);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--light-color);
  }

  /* Mobile actions inside menu */
  .navbar-actions {
    display: none;
  }

  .navbar.mobile-open .navbar-menu {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  /* Show actions at bottom of mobile menu */
  .navbar-menu.active::after {
    content: "";
    flex: 1;
  }

  .navbar-menu .mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    margin-top: auto;
    border-top: 1px solid var(--light-gray);
  }

  .navbar-menu .mobile-actions .language-selector {
    width: 100%;
  }

  .navbar-menu .mobile-actions .language-toggle {
    width: 100%;
    justify-content: center;
    padding: 12px;
  }

  .navbar-menu .mobile-actions .cta-button {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/* ==================== RESPONSIVE - SMALL MOBILE ==================== */
@media (max-width: 480px) {
  :root {
    --navbar-height: 58px;
  }

  .navbar-container {
    width: 100%;
    padding: 0 16px;
  }

  .brand-logo {
    max-height: calc(var(--navbar-height) * 0.85);
  }

  .navbar-toggle {
    width: 40px;
    height: 40px;
  }

  .toggle-line {
    width: 20px;
  }

  .nav-link {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
  .navbar,
  .brand-logo,
  .nav-link,
  .nav-link::after,
  .language-toggle,
  .language-dropdown,
  .language-option,
  .cta-button,
  .toggle-line,
  .navbar-menu,
  .navbar-toggle {
    transition: none !important;
  }
}

/* ==================== PRINT ==================== */
@media print {
  .navbar {
    display: none;
  }
}


/* ========== Block: hero (hero+intro) ========== */
/* Source: hero+intro/hero+intro/template-assets/hero-styles.css */
/* ========== Block: hero (hero+intro) ========== */
/* Source: hero+intro/hero+intro/template-assets/hero-styles.css */
/*================*/
/*=== HERO STYLES ===*/
/*================*/

.hero-section {
  min-height: 60vh;
  position: relative;
  z-index: 1;
  transition: z-index 0.3s ease;
  padding: 0;
  overflow: hidden;
}

/* Hero Container */
.hero-section .container {
  height: 100%;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 100px 60px 0 60px;
  position: relative;
  z-index: 3;
}

.hero-container {
  min-height: 700px !important;
}

/* Hero Overlay для затемнения при наплыве */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--shadow-color);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

/* Left Side - Content */
.left-side {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: left;
  z-index: 3;
  max-width: 90%;
}

.hero-title {
  font-size: 2.5rem !important;
  font-weight: 300;
  width: 100%;
  line-height: 1.2;
  margin: 0;
  position: relative;
}

.hero-subtitle {
  font-size: 1.2rem !important;
  font-weight: 400;
  width: 100%;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

.left-side .btn {
  margin-top: 10px;
  align-self: flex-start;
}

/* Right Side - Product Image */
.right-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40%;
  z-index: 3;
}

.product-image {
  width: 100%;
  max-height: 400px;
  max-width: 400px;
  position: relative;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s ease-out;
  filter: drop-shadow(0 0 20px rgba(238, 10, 16, 0.3));
  will-change: transform, filter;
}

/* Hero Particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  background: rgba(238, 10, 16, 0.6);
  border-radius: 50%;
  animation: float-up 20s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(238, 10, 16, 0.8);
  will-change: transform, opacity;
}

@keyframes float-up {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px) scale(1);
    opacity: 0;
  }
}

/* Button Ripple Effect */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: ripple-effect 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Text Animations */
.hero-title .word {
  display: inline-block;
  opacity: 0;
  animation: wordSlideIn 0.6s ease-out forwards;
}

@keyframes wordSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) rotateX(-90deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*================*/
/*=== INTRO STYLES ===*/
/*================*/

.intro-section {
  min-height: 110vh;
  padding: 80px 0 100px;
  position: relative;
  z-index: 10;
}

/* Градиентный переход */
.intro-section::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(20, 20, 24, 0.3) 40%,
    var(--shadow-color) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.intro-container {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
  z-index: 2;
}

/* Intro Content Top */
.intro-content-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  gap: 30px;
  padding: 60px 0 40px;
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform; /* ДОДАНО для оптимізації */
}

.intro-content-top.hero-visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-content-top h2 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 10px;
}

.intro-content-top p {
  font-size: 1.3rem;
  line-height: 1.8;
  max-width: 1400px;
  opacity: 0.9;
}

/* Intro Content Bottom */
.intro-content-bottom {
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}

.intro-left-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform; /* ДОДАНО */
}

.intro-left-side.hero-visible {
  opacity: 1;
  transform: translateX(0);
}

.intro-left-side h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 10px;
}

.intro-left-side p {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
}

.intro-right-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform; /* ДОДАНО */
}

.intro-right-side.hero-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Intro Table Styles */
.intro-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(32, 32, 41, 0.4);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.intro-table thead {
  background: linear-gradient(
    135deg,
    var(--tertiary-color),
    var(--tertiary-dark)
  );
}

.intro-table th {
  padding: 20px 24px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--light-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.intro-table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(169, 139, 104, 0.1);
  opacity: 0;
  transform: translateX(-20px);
  will-change: opacity, transform; /* ДОДАНО */
}

.intro-table tbody tr:last-child {
  border-bottom: none;
}

.intro-table tbody tr:hover {
  background: rgba(169, 139, 104, 0.15);
}

.intro-right-side.hero-visible .intro-table tbody tr {
  opacity: 1;
  transform: translateX(0);
}

.intro-right-side.hero-visible .intro-table tbody tr:nth-child(1) {
  transition-delay: 0.2s;
}

.intro-right-side.hero-visible .intro-table tbody tr:nth-child(2) {
  transition-delay: 0.3s;
}

.intro-right-side.hero-visible .intro-table tbody tr:nth-child(3) {
  transition-delay: 0.4s;
}

.intro-right-side.hero-visible .intro-table tbody tr:nth-child(4) {
  transition-delay: 0.5s;
}

.intro-right-side.hero-visible .intro-table tbody tr:nth-child(5) {
  transition-delay: 0.6s;
}

.intro-right-side.hero-visible .intro-table tbody tr:nth-child(6) {
  transition-delay: 0.7s;
}

.intro-right-side.hero-visible .intro-table tbody tr:nth-child(7) {
  transition-delay: 0.8s;
}

.intro-right-side.hero-visible .intro-table tbody tr:nth-child(8) {
  transition-delay: 0.9s;
}

.intro-table td {
  padding: 18px 24px;
  font-size: 1rem;
  color: var(--light-color);
  opacity: 0.95;
}

.intro-table td:first-child {
  font-weight: 500;
  color: var(--tertiary-light);
}

/* Intro Button Styles */
.intro-btn {
  width: 100%;
  max-width: 400px;
  height: 70px;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.visible .intro-btn,
.intro-content-top.hero-visible .intro-btn,
.intro-left-side.hero-visible .intro-btn {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.4s;
}

/* Responsive - Large Desktop (Bootstrap XL) */
@media (max-width: 1400px) {
  .hero-section .container {
    gap: 50px;
    padding: 50px 0;
  }

  .left-side {
    gap: 22px;
    max-width: 550px;
  }

  .hero-title {
    font-size: 2.3rem !important;
  }

  .hero-subtitle {
    font-size: 1.15rem !important;
  }

  .product-image {
    max-height: 380px;
    max-width: 380px;
  }

  /* ...existing code... */
}

/* Responsive - Desktop (Bootstrap LG) */
@media (max-width: 1200px) {
  .hero-section .container {
    gap: 45px;
    padding: 45px 0;
    width: 94%;
  }

  .left-side {
    gap: 20px;
    max-width: 500px;
  }

  .hero-title {
    font-size: 2.1rem !important;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.1rem !important;
    line-height: 1.6;
  }

  .product-image {
    max-height: 350px;
    max-width: 350px;
  }

  .hero-section .btn {
    height: 55px;
    font-size: 1rem;
    max-width: 220px;
  }

  .intro-section {
    padding: 60px 0 80px;
  }

  .intro-container {
    gap: 70px;
  }

  .intro-content-top h2 {
    font-size: 2.5rem;
  }

  .intro-content-top p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 750px;
  }

  .intro-left-side h2 {
    font-size: 2.3rem;
  }

  .intro-left-side p {
    font-size: 1.15rem;
  }

  .intro-table th {
    font-size: 1.05rem;
    padding: 18px 22px;
  }

  .intro-table td {
    font-size: 0.98rem;
    padding: 16px 22px;
  }
}

/* Responsive - Tablet (Bootstrap MD) */
@media (max-width: 992px) {
  .hero-section {
    min-height: 50vh;
    padding: 0;
  }

  .hero-section .container {
    flex-direction: column;
    gap: 35px;
    padding: 0;
    width: 90%;
  }

  .left-side {
    text-align: center;
    order: 2;
    gap: 20px;
    max-width: 100%;
    align-items: center;
  }

  .left-side .btn {
    align-self: center;
  }

  .right-side {
    min-width: 100%;
    order: 1;
  }

  .hero-title {
    font-size: 2rem !important;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.05rem !important;
    line-height: 1.6;
  }

  .product-image {
    max-height: 320px;
    max-width: 320px;
  }

  .hero-section .btn {
    height: 52px;
    font-size: 0.98rem;
    max-width: 280px;
  }

  .hero-overlay {
    display: none;
  }

  .intro-section {
    padding: 50px 0 70px;
  }

  .intro-container {
    gap: 60px;
  }

  .intro-content-top {
    padding: 50px 0 35px;
  }

  .intro-content-top h2 {
    font-size: 2.2rem;
  }

  .intro-content-top p {
    font-size: 1.1rem;
    line-height: 1.65;
    max-width: 700px;
  }

  .intro-content-bottom {
    flex-direction: column;
    gap: 50px;
  }

  .intro-left-side h2 {
    font-size: 1.9rem;
  }

  .intro-left-side p {
    font-size: 1.05rem;
  }

  .intro-table th {
    font-size: 0.95rem;
    padding: 15px 18px;
  }

  .intro-table td {
    font-size: 0.92rem;
    padding: 13px 18px;
  }

  .intro-btn {
    height: 60px;
    font-size: 1rem;
    max-width: 350px;
  }
}

/* Responsive - Mobile Large (Bootstrap SM) */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 0;
  }

  .hero-section .container {
    gap: 28px;
    padding: 0;
    width: 92%;
  }

  .left-side {
    gap: 18px;
  }

  .hero-title {
    font-size: 1.75rem !important;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 1rem !important;
    line-height: 1.55;
  }

  .product-image {
    max-height: 280px;
    max-width: 280px;
  }

  .product-image img {
    filter: drop-shadow(0 0 15px rgba(238, 10, 16, 0.3));
  }

  .hero-section .btn {
    width: 100%;
    max-width: 300px;
    height: 50px;
    font-size: 0.95rem;
  }

  .intro-section {
    padding: 45px 0 60px;
    margin-top: 0;
  }

  .intro-container {
    gap: 50px;
    width: 92%;
  }

  .intro-content-top {
    padding: 40px 0 30px;
    gap: 25px;
  }

  .intro-content-top h2 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .intro-content-top p {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .intro-content-bottom {
    gap: 45px;
  }

  .intro-left-side {
    gap: 22px;
    text-align: center;
    align-items: center;
  }

  .intro-left-side h2 {
    font-size: 1.7rem;
  }

  .intro-left-side p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .intro-table {
    font-size: 0.9rem;
  }

  .intro-table th {
    font-size: 0.9rem;
    padding: 14px 16px;
  }

  .intro-table td {
    font-size: 0.88rem;
    padding: 12px 16px;
  }

  .intro-btn {
    height: 56px;
    font-size: 0.98rem;
    max-width: 100%;
  }
}

/* Responsive - Mobile Medium (Custom) */
@media (max-width: 576px) {
  .hero-section {
    padding: 0;
  }

  .hero-section .container {
    gap: 25px;
    padding: 0;
    width: 94%;
  }

  .left-side {
    gap: 16px;
  }

  .hero-title {
    font-size: 1.6rem !important;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 0.95rem !important;
    line-height: 1.5;
  }

  .product-image {
    max-height: 240px;
    max-width: 240px;
  }

  .product-image img {
    filter: drop-shadow(0 0 12px rgba(238, 10, 16, 0.3));
  }

  .hero-section .btn {
    max-width: 280px;
    height: 48px;
    font-size: 0.92rem;
  }

  .intro-section {
    padding: 40px 0 55px;
  }

  .intro-container {
    gap: 45px;
    width: 94%;
  }

  .intro-content-top {
    padding: 35px 0 25px;
    gap: 22px;
  }

  .intro-content-top h2 {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .intro-content-top p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .intro-content-bottom {
    gap: 40px;
  }

  .intro-left-side {
    gap: 20px;
  }

  .intro-left-side h2 {
    font-size: 1.55rem;
  }

  .intro-left-side p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .intro-table th {
    font-size: 0.85rem;
    padding: 12px 14px;
  }

  .intro-table td {
    font-size: 0.83rem;
    padding: 11px 14px;
  }

  .intro-btn {
    height: 52px;
    font-size: 0.95rem;
  }
}

/* Mobile Small (375px - 480px) */
@media (max-width: 480px) {
  .hero-section {
    padding: 0;
  }

  .hero-section .container {
    gap: 22px;
    padding: 0;
    width: 95%;
  }

  .left-side {
    gap: 15px;
  }

  .hero-title {
    font-size: 1.45rem !important;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.5;
  }

  .product-image {
    max-height: 200px;
    max-width: 200px;
  }

  .product-image img {
    filter: drop-shadow(0 0 10px rgba(238, 10, 16, 0.25));
  }

  .hero-section .btn {
    max-width: 100%;
    height: 46px;
    font-size: 0.9rem;
  }

  .intro-section {
    padding: 35px 0 50px;
  }

  .intro-container {
    gap: 40px;
    width: 95%;
  }

  .intro-content-top {
    padding: 30px 0 22px;
    gap: 20px;
  }

  .intro-content-top h2 {
    font-size: 1.55rem;
    line-height: 1.2;
  }

  .intro-content-top p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .intro-content-bottom {
    gap: 35px;
  }

  .intro-left-side {
    gap: 18px;
  }

  .intro-left-side h2 {
    font-size: 1.4rem;
  }

  .intro-left-side p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .intro-table th {
    font-size: 0.8rem;
    padding: 11px 12px;
  }

  .intro-table td {
    font-size: 0.78rem;
    padding: 10px 12px;
  }

  .intro-btn {
    height: 50px;
    font-size: 0.92rem;
  }
}

/* Mobile Extra Small (320px - 375px) */
@media (max-width: 375px) {
  .hero-section .container {
    gap: 20px;
    padding: 0;
  }

  .left-side {
    gap: 14px;
  }

  .hero-title {
    font-size: 1.35rem !important;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 0.85rem !important;
    line-height: 1.5;
  }

  .product-image {
    max-height: 180px;
    max-width: 180px;
  }

  .product-image img {
    filter: drop-shadow(0 0 8px rgba(238, 10, 16, 0.2));
  }

  .hero-section .btn {
    height: 44px;
    font-size: 0.88rem;
  }

  .intro-section {
    padding: 30px 0 45px;
  }

  .intro-container {
    gap: 35px;
  }

  .intro-content-top {
    padding: 25px 0 20px;
    gap: 18px;
  }

  .intro-content-top h2 {
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .intro-content-top p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .intro-content-bottom {
    gap: 32px;
  }

  .intro-left-side {
    gap: 16px;
  }

  .intro-left-side h2 {
    font-size: 1.3rem;
  }

  .intro-left-side p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .intro-table th {
    font-size: 0.75rem;
    padding: 10px 10px;
  }

  .intro-table td {
    font-size: 0.73rem;
    padding: 9px 10px;
  }

  .intro-btn {
    height: 48px;
    font-size: 0.9rem;
  }
}

/* Particle Animations - оптимізація для мобільних */
@media (max-width: 768px) {
  .particle {
    animation-duration: 15s;
  }

  .product-image img {
    filter: drop-shadow(0 0 15px rgba(238, 10, 16, 0.4));
  }

  .glow-canvas {
    display: none !important;
  }
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-section,
  .hero-overlay,
  .intro-content-top,
  .intro-left-side,
  .intro-right-side,
  .intro-btn,
  .intro-table tbody tr {
    transition: none !important;
  }

  .particle,
  .hero-title .word {
    animation: none !important;
  }

  .product-image img {
    transition: none !important;
  }
}


/* ========== Block: advantage_1 (advantage-1) ========== */
/* Source: content-blocks/advantage-1/template-assets/adv-styles.css */
/* ==================== ADVANTAGE SECTIONS - SIMPLIFIED ==================== */

.adv-section {
  position: relative;
  padding: 50px 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.adv-container {
  gap: 45px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ==================== CONTENT ==================== */
.adv-content-block {
  flex: 1;
  gap: 18px;
}

.adv-title {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  line-height: 1.15;
}

.adv-subtitle {
  font-size: clamp(0.98rem, 1.7vw, 1.2rem);
  opacity: 0.86;
}

.adv-description {
  font-size: clamp(0.9rem, 1.3vw, 0.98rem);
  line-height: 1.6;
  opacity: 0.8;
}

/* ==================== FEATURES ==================== */
.adv-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.adv-feature {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.5s ease;
}

.adv-feature.adv-visible {
  opacity: 1;
  transform: translateX(0);
}

.adv-feature:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(3px);
}

.adv-feature i {
  font-size: 1.3rem;
  min-width: 22px;
}

.adv-feature span {
  font-size: 0.91rem;
  line-height: 1.35;
}

/* ==================== IMAGE BLOCK ==================== */
.adv-image-block {
  flex: 1;
  max-width: 50%;
  position: relative;
}

.adv-image-container {
  width: 100%;
  max-width: 90%;
  aspect-ratio: 1;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

/* ВИДИМОСТЬ */
.adv-image-container.adv-visible {
  opacity: 1;
  transform: scale(1);
}

/* Glow */
.adv-image-container::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.adv-image-container.adv-visible::before {
  opacity: 0.5;
}

/* Light effect */
.adv-image-light {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  pointer-events: none;
  z-index: 3;
  filter: blur(30px);
  transform: translate(-50%, -50%);
  transition:
    left 0.1s linear,
    top 0.1s linear,
    opacity 0.2s ease;
}

/* Image */
.adv-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  scale: 1.1;
  transition: transform 0.5s ease;
}

/* ==================== CTA ==================== */
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 45px;
  padding: 32px 38px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  max-width: 700px;
  width: 90%;
}

.cta-section h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  margin: 0;
  line-height: 1.3;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .adv-container {
    flex-direction: column;
    gap: 38px;
  }

  .adv-content-block,
  .adv-image-block {
    max-width: 100%;
  }

  .adv-features {
    grid-template-columns: 1fr;
  }

  .adv-image-container {
    max-width: 330px;
  }
}

@media (max-width: 768px) {
  .adv-image-container {
    max-width: 310px;
  }
}

@media (max-width: 480px) {
  .adv-image-container {
    max-width: 270px;
  }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
  .adv-feature,
  .adv-image-container,
  .adv-image-container img,
  .adv-image-light {
    transition: none !important;
    animation: none !important;
  }

  .adv-image-container {
    opacity: 1;
    transform: scale(1);
  }

  .adv-feature {
    opacity: 1;
    transform: none;
  }
}


/* ========== Block: comparison_section_1 (comparison-section) ========== */
/* Source: content-blocks/comparison-section/template-assets/comparison-styles.css */
/* ==================== COMPARISON SECTION ==================== */
.comp-section {
  position: relative;
  padding: 80px 0;
  min-height: auto;
  overflow: hidden;
}

.comp-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.comp-flow-lines {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 30%,
      rgba(238, 10, 16, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(34, 197, 94, 0.06) 0%,
      transparent 50%
    );
}

.comp-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

/* ==================== HEADER ==================== */
.comp-header {
  margin-bottom: 70px;
  text-align: center;
  gap: 16px;
}

.comp-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  backdrop-filter: blur(10px);
}

.light-background .comp-badge {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.1);
}

.comp-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.comp-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  opacity: 0.6;
  max-width: 550px;
  line-height: 1.6;
  margin: 0;
}

/* ==================== GRID ==================== */
.comp-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: start;
  width: 100%;
}

/* ==================== COLUMN ==================== */
.comp-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  will-change: transform;
}

.comp-column-header {
  text-align: center;
  position: relative;
}

.comp-column-image {
  position: relative;
  margin-bottom: 24px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.comp-column-image:hover {
  transform: translateY(-15px) scale(1.05);
}

.comp-column-image img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.comp-column--regular .comp-column-image img {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25))
    drop-shadow(0 10px 20px rgba(239, 68, 68, 0.15));
}

.comp-column--ours .comp-column-image img {
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3))
    drop-shadow(0 15px 30px rgba(34, 197, 94, 0.2));
}

.comp-column-image:hover img {
  transform: scale(1.08);
}

/* Placeholder */
.comp-column-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1) 0%,
    rgba(239, 68, 68, 0.05) 100%
  );
  border-radius: 20px;
  border: 2px dashed rgba(239, 68, 68, 0.3);
}

.comp-column-placeholder i {
  font-size: 4rem;
  opacity: 0.4;
  color: #ef4444;
}

.comp-column-placeholder--success {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.1) 0%,
    rgba(34, 197, 94, 0.05) 100%
  );
  border-color: rgba(34, 197, 94, 0.3);
}

.comp-column-placeholder--success i {
  color: #22c55e;
}

.comp-column-title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  margin: 0;
  opacity: 0.9;
}

.comp-column-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow:
    0 8px 25px rgba(34, 197, 94, 0.5),
    0 0 0 3px rgba(34, 197, 94, 0.2);
  z-index: 10;
  animation: comp-badge-pulse 2s ease-in-out infinite;
}

/* ==================== LIST ==================== */
.comp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.light-background .comp-list-item {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.08);
}

.comp-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  transition: all 0.3s ease;
}

.comp-list-item::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.comp-list-item:hover {
  transform: translateX(12px) translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.3);
}

.light-background .comp-list-item:hover {
  border-color: rgba(0, 0, 0, 0.15);
}

/* Negative Items */
.comp-list-item--negative::before {
  background: linear-gradient(180deg, #ef4444 0%, #b91c1c 100%);
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

.comp-list-item--negative::after {
  background: linear-gradient(
    90deg,
    rgba(239, 68, 68, 0.08) 0%,
    transparent 50%
  );
}

.comp-list-item--negative:hover::after {
  opacity: 1;
}

.comp-list-item--negative .comp-list-icon {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.2) 0%,
    rgba(185, 28, 28, 0.3) 100%
  );
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
  box-shadow:
    0 4px 15px rgba(239, 68, 68, 0.3),
    inset 0 0 10px rgba(239, 68, 68, 0.1);
}

/* Positive Items */
.comp-list-item--positive::before {
  background: linear-gradient(180deg, #22c55e 0%, #15803d 100%);
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

.comp-list-item--positive::after {
  background: linear-gradient(
    90deg,
    rgba(34, 197, 94, 0.08) 0%,
    transparent 50%
  );
}

.comp-list-item--positive:hover::after {
  opacity: 1;
}

.comp-list-item--positive .comp-list-icon {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.2) 0%,
    rgba(21, 128, 61, 0.3) 100%
  );
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.4);
  box-shadow:
    0 4px 15px rgba(34, 197, 94, 0.3),
    inset 0 0 10px rgba(34, 197, 94, 0.1);
}

.comp-list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.comp-list-item:hover .comp-list-icon {
  transform: scale(1.2) rotate(5deg);
}

.comp-list-text {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.95;
  letter-spacing: 0.01em;
}

/* ==================== VS DIVIDER ==================== */
.comp-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    var(--primary-color, #ee0a10) 0%,
    var(--primary-dark, #b00) 100%
  );
  border-radius: 50%;
  box-shadow:
    0 15px 50px rgba(238, 10, 16, 0.5),
    0 0 80px rgba(238, 10, 16, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10;
  will-change: transform;
  transform-style: preserve-3d;
}

.comp-vs::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 100, 100, 0.4) 0%,
    transparent 60%
  );
  z-index: -1;
  opacity: 0.6;
  animation: comp-vs-pulse 2s ease-in-out infinite;
}

.comp-vs::after {
  content: "";
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 2px dashed var(--primary-color, #ee0a10);
  opacity: 0.3;
  animation: comp-vs-rotate 20s linear infinite;
}

.comp-vs-text {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.05em;
}

/* ==================== CTA ==================== */
.comp-cta {
  margin-top: 60px;
}

/* ==================== FLOAT ANIMATIONS ==================== */
[data-float-item] {
  opacity: 0;
  transform: translateY(40px);
}

[data-float-item].float-visible {
  animation: comp-float-in 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.float-active {
  animation: comp-float-continuous 5s ease-in-out infinite;
}

/* ==================== KEYFRAMES ==================== */
@keyframes comp-float-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes comp-float-continuous {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes comp-vs-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.9;
  }
}

@keyframes comp-vs-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes comp-badge-pulse {
  0%,
  100% {
    box-shadow:
      0 8px 25px rgba(34, 197, 94, 0.5),
      0 0 0 3px rgba(34, 197, 94, 0.2);
  }
  50% {
    box-shadow:
      0 8px 35px rgba(34, 197, 94, 0.7),
      0 0 0 6px rgba(34, 197, 94, 0.1);
  }
}

/* ==================== RIPPLE EFFECT ==================== */
.comp-ripple {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: comp-ripple 0.6s ease-out forwards;
  pointer-events: none;
  z-index: 0;
}

@keyframes comp-ripple {
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .comp-section {
    padding: 60px 0;
  }

  .comp-grid {
    gap: 40px;
  }

  .comp-column-image img {
    max-height: 200px;
  }

  .comp-column-placeholder {
    height: 160px;
  }
}

@media (max-width: 900px) {
  .comp-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 450px;
    margin: 0 auto;
  }

  .comp-vs {
    width: 70px;
    height: 70px;
    order: 1;
  }

  .comp-vs-text {
    font-size: 1.4rem;
  }

  .comp-column--regular {
    order: 0;
  }

  .comp-column--ours {
    order: 2;
  }

  .comp-column-image img {
    max-height: 220px;
  }

  .comp-list-item {
    padding: 16px 20px;
  }

  .comp-header {
    margin-bottom: 50px;
  }
}

@media (max-width: 480px) {
  .comp-section {
    padding: 45px 0;
  }

  .comp-header {
    margin-bottom: 40px;
  }

  .comp-list-item {
    padding: 14px 16px;
    gap: 12px;
  }

  .comp-list-text {
    font-size: 0.9rem;
  }

  .comp-list-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .comp-vs {
    width: 56px;
    height: 56px;
  }

  .comp-vs-text {
    font-size: 1.1rem;
  }

  .comp-vs::after {
    inset: -10px;
  }

  .comp-cta {
    margin-top: 40px;
  }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
  [data-float-item],
  .comp-list-item,
  .comp-vs::before,
  .comp-vs::after,
  .comp-column-badge,
  .comp-column-image,
  .comp-column-image img,
  .comp-list-icon,
  .comp-ripple,
  .float-active {
    animation: none !important;
    transition: none !important;
  }

  [data-float-item] {
    opacity: 1;
    transform: none;
  }
}


/* ========== Block: faq_section_1 (faq-section) ========== */
/* Source: content-blocks/faq-section/template-assets/faq-styles.css */
/* ==================== FAQ SECTION LAYOUT ==================== */
.faq-section {
  position: relative;
  padding: 60px 0;
  min-height: 100vh;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 40%,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 0;
}

.faq-container {
  gap: 50px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

/* ==================== FAQ LEFT COLUMN ==================== */
.faq-left {
  flex: 1.2;
  gap: 30px;
}

/* FAQ Header */
.faq-header {
  margin-bottom: 10px;
}

.faq-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: 12px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 16px;
}

.faq-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: min(12ch, 60%);
  border-radius: 3px;
  opacity: 0.7;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.3) 100%
  );
}

.faq-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  opacity: 0.85;
  line-height: 1.5;
}

.faq-subtitle strong {
  font-weight: 600;
  opacity: 1;
}

/* ==================== FAQ LIST ==================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  gap: 15px;
}

.faq-question span {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 500;
  line-height: 1.4;
}

.faq-icon {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 20px 18px 20px;
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  line-height: 1.65;
  opacity: 0.8;
}

.faq-answer-content strong {
  font-weight: 600;
  opacity: 1;
}

/* ==================== ASK QUESTION SECTION ==================== */
.faq-ask-section {
  margin-top: 25px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-ask-title {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  margin-bottom: 20px;
  font-weight: 500;
}

.faq-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-input,
.faq-textarea {
  width: calc(100% - 32px);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.faq-input:focus,
.faq-textarea:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.faq-input::placeholder,
.faq-textarea::placeholder {
  opacity: 0.5;
}

.faq-textarea {
  min-height: 100px;
  resize: vertical;
}

.faq-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.faq-response-message {
  margin-top: 12px;
}

/* ==================== FAQ RIGHT COLUMN ==================== */
.faq-right {
  flex: 1;
  gap: 25px;
  position: sticky;
  top: 100px;
}

/* Social Proof Header */
.faq-social-header {
  margin-bottom: 5px;
}

.faq-social-title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  position: relative;
  padding-bottom: 14px;
}

.faq-social-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 60px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
}

/* ==================== TESTIMONIALS ==================== */
.faq-testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-testimonial {
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transition: left 0.5s ease;
}

.faq-testimonial:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.faq-testimonial:hover::before {
  left: 100%;
}

.faq-testimonial-text {
  font-size: clamp(0.88rem, 1.2vw, 0.95rem);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
  opacity: 0.9;
}

.faq-testimonial-text strong {
  font-weight: 500;
  font-style: normal;
}

.faq-testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.faq-author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.faq-author-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.faq-author-company {
  font-size: 0.8rem;
  opacity: 0.65;
}

.faq-author-rating {
  display: flex;
  gap: 3px;
}

.faq-author-rating i {
  font-size: 0.75rem;
  color: #ffc107;
}

/* ==================== COMPANY LOGOS ==================== */
.faq-logos-section {
  margin-top: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-logos-title {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.faq-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.faq-logo-item {
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.75;
  transition: all 0.3s ease;
}

.faq-logo-item:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
  transform: translateY(-2px);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
  .faq-section {
    padding: 50px 0;
    min-height: auto;
  }

  .faq-container {
    flex-direction: column;
    gap: 45px;
  }

  .faq-left,
  .faq-right {
    width: 100%;
    max-width: 100%;
  }

  .faq-right {
    position: static;
  }

  .faq-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .faq-social-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-question {
    padding: 15px 16px;
  }

  .faq-answer-content {
    padding: 0 16px 15px 16px;
  }

  .faq-ask-section {
    padding: 22px 18px;
  }

  .faq-form-actions {
    flex-direction: column;
  }

  .faq-form-actions .btn,
  .faq-form-actions .btn-2 {
    width: 100%;
  }

  .faq-testimonial {
    padding: 18px;
  }

  .faq-testimonial-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .faq-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 32px 0;
  }

  .faq-question {
    padding: 13px 14px;
  }

  .faq-question span {
    font-size: 0.9rem;
  }

  .faq-answer-content {
    padding: 0 14px 13px 14px;
    font-size: 0.85rem;
  }

  .faq-ask-section {
    padding: 18px 14px;
  }

  .faq-input,
  .faq-textarea {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .faq-testimonial {
    padding: 15px;
  }

  .faq-logos-grid {
    gap: 8px;
  }

  .faq-logo-item {
    padding: 10px 8px;
    font-size: 0.75rem;
  }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-icon,
  .faq-answer,
  .faq-testimonial,
  .faq-logo-item,
  .faq-input,
  .faq-textarea {
    transition: none;
  }

  .faq-testimonial::before {
    display: none;
  }
}


/* ========== Block: other_products_section_1 (other-products-section) ========== */
/* Source: content-blocks/other-products-section/template-assets/other-products-styles.css */
/* ==================== OTHER PRODUCTS SECTION ==================== */
.other-products-section {
  position: relative;
  padding: 70px 0;
  min-height: auto;
  overflow: hidden;
}

.other-products-wrapper {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

/* ==================== HEADER ==================== */
.other-products-header {
  text-align: center;
  margin-bottom: 50px;
}

.other-products-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 15px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.other-products-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: 3px;
  width: 80px;
  border-radius: 3px;
  opacity: 0.6;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.dark-background .other-products-title::after,
.primary-background .other-products-title::after {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.3) 100%
  );
}

.other-products-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  opacity: 0.8;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ==================== GRID ==================== */
.other-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ==================== CARD ==================== */
.other-products-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(30px);
}

.other-products-card.other-visible {
  opacity: 1;
  transform: translateY(0);
}

.light-background .other-products-card {
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.other-products-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.light-background .other-products-card:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

/* ==================== CARD IMAGE ==================== */
.other-products-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.dark-background .other-products-card-image {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
}

.other-products-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.other-products-card:hover .other-products-card-image img {
  transform: scale(1.08);
}

.other-products-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.other-products-card-placeholder i {
  font-size: 3rem;
  opacity: 0.3;
}

/* ==================== CARD OVERLAY ==================== */
.other-products-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.other-products-card:hover .other-products-card-overlay {
  opacity: 1;
}

.other-products-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.other-products-card:hover .other-products-card-cta {
  transform: translateY(0);
}

.other-products-card-cta i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.other-products-card:hover .other-products-card-cta i {
  transform: translateX(4px);
}

/* ==================== CARD CONTENT ==================== */
.other-products-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.other-products-card-title {
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.other-products-card:hover .other-products-card-title {
  color: var(--primary-color, #ee0a10);
}

.other-products-card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.75;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==================== FOOTER ==================== */
.other-products-footer {
  text-align: center;
  margin-top: 45px;
}

.other-products-footer .btn-2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.other-products-footer .btn-2 i {
  transition: transform 0.3s ease;
}

.other-products-footer .btn-2:hover i {
  transform: translateX(5px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .other-products-section {
    padding: 55px 0;
  }

  .other-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .other-products-section {
    padding: 45px 0;
  }

  .other-products-header {
    margin-bottom: 35px;
  }

  .other-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
  }

  .other-products-card-content {
    padding: 20px;
  }

  .other-products-footer {
    margin-top: 35px;
  }
}

@media (max-width: 480px) {
  .other-products-section {
    padding: 35px 0;
  }

  .other-products-card-title {
    font-size: 1.1rem;
  }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
  .other-products-card,
  .other-products-card-image img,
  .other-products-card-overlay,
  .other-products-card-cta,
  .other-products-card-title,
  .other-products-card-cta i,
  .other-products-footer .btn-2 i {
    transition: none;
  }

  .other-products-card {
    opacity: 1;
    transform: none;
  }
}


/* ========== Block: contact_section_1 (contact-section) ========== */
/* Source: content-blocks/contact-section/template-assets/contact-styles.css */
/* ==================== CONTACT SECTION ==================== */

.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 20% 80%,
      rgba(169, 139, 104, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 80% 20%,
      rgba(238, 10, 16, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.contact-container {
  gap: 55px;
  position: relative;
  z-index: 1;
}

/* ==================== HEADER ==================== */

.contact-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 10px;
}

.contact-section .contact-title {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}

/* Override global heading ::after — centered, softer */
.contact-section .contact-title::after {
  left: 50% !important;
  transform: translateX(-50%) scaleX(1) !important;
  width: 70px !important;
  opacity: 0.6 !important;
}

.contact-subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  opacity: 0.75;
  line-height: 1.6;
}

/* ==================== GRID ==================== */

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 55px;
  width: 100%;
}

/* ==================== GROUPS ==================== */

.contact-group {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-group-title {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 500;
  opacity: 0.88;
  position: relative;
  padding-left: 18px;
  margin: 0;
}

.contact-group-title::after {
  display: none !important;
}

.contact-group-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  min-height: 18px;
  border-radius: 2px;
}

/* Group accent bar per background */
.dark-background .contact-group-title::before {
  background: var(--tertiary-color);
}
.light-background .contact-group-title::before {
  background: var(--primary-color);
}
.primary-background .contact-group-title::before {
  background: var(--white);
}

/* ==================== CARDS CONTAINER ==================== */

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-cards-items {
  grid-template-columns: repeat(2, 1fr);
}

/* ==================== CARD — BASE ==================== */

.contact-card {
  padding: 32px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;

  /* Entry animation state */
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.contact-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Shimmer sweep */
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 60%
  );
  transition: left 0.7s ease;
  pointer-events: none;
}

.contact-card:hover::before {
  left: 100%;
}

/* ==================== CARD — THEMES ==================== */

/* Dark */
.dark-background .contact-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.07);
}
.dark-background .contact-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(169, 139, 104, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Light */
.light-background .contact-card {
  background: var(--white);
  border-color: rgba(20, 20, 24, 0.08);
  box-shadow: 0 4px 20px rgba(20, 20, 24, 0.06);
}
.light-background .contact-card:hover {
  border-color: rgba(238, 10, 16, 0.15);
  box-shadow: 0 12px 40px rgba(20, 20, 24, 0.1);
}

/* Primary */
.primary-background .contact-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}
.primary-background .contact-card:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ==================== CARD — MAIN OFFICE ==================== */

.contact-card-main {
  position: relative;
}

.dark-background .contact-card-main {
  background: linear-gradient(
    145deg,
    rgba(169, 139, 104, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
}

.light-background .contact-card-main {
  background: linear-gradient(
    145deg,
    var(--white) 0%,
    rgba(243, 238, 239, 0.8) 100%
  );
}

.primary-background .contact-card-main {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
}

/* ==================== CARD — ITEM (representative) ==================== */

.contact-card-item {
  text-align: center;
}

/* ==================== CARD ICON ==================== */

.contact-card-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  margin-bottom: 22px;
  transition: all 0.35s ease;
}

.dark-background .contact-card-icon {
  background: rgba(169, 139, 104, 0.12);
}
.light-background .contact-card-icon {
  background: rgba(238, 10, 16, 0.08);
}
.primary-background .contact-card-icon {
  background: rgba(255, 255, 255, 0.15);
}

.contact-card-icon i {
  font-size: 1.5rem;
  opacity: 0.85;
  transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.08);
}

.contact-card:hover .contact-card-icon i {
  transform: scale(1.1);
}

/* ==================== CARD LOGO (items) ==================== */

.contact-card-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}

.dark-background .contact-card-logo {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.light-background .contact-card-logo {
  background: rgba(20, 20, 24, 0.04);
  border: 1px solid rgba(20, 20, 24, 0.08);
}
.primary-background .contact-card-logo {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card:hover .contact-card-logo {
  transform: scale(1.12);
}

.dark-background .contact-card:hover .contact-card-logo {
  box-shadow: 0 6px 24px rgba(169, 139, 104, 0.25);
}
.light-background .contact-card:hover .contact-card-logo {
  box-shadow: 0 6px 24px rgba(238, 10, 16, 0.12);
}
.primary-background .contact-card:hover .contact-card-logo {
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}

/* ==================== CARD TEXT ==================== */

.contact-card-name {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.3;
}

/* No extra ::after on card names */
.contact-card-name::after {
  display: none !important;
}

.contact-card-region {
  font-size: 0.85rem;
  opacity: 0.6;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.dark-background .contact-card-region {
  color: var(--tertiary-light);
}
.light-background .contact-card-region {
  color: var(--tertiary-dark);
}
.primary-background .contact-card-region {
  color: rgba(255, 255, 255, 0.7);
}

/* ==================== CONTACT INFO ROWS ==================== */

.contact-card-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.contact-card-info-compact {
  gap: 11px;
  margin-top: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-card-item .contact-info-item {
  justify-content: center;
  text-align: left;
}

.contact-info-item i {
  font-size: 0.9rem;
  min-width: 20px;
  margin-top: 4px;
  opacity: 0.55;
  transition:
    opacity 0.3s ease,
    color 0.3s ease;
}

.contact-card:hover .contact-info-item i {
  opacity: 0.85;
}

.dark-background .contact-info-item i {
  color: var(--tertiary-light);
}
.light-background .contact-info-item i {
  color: var(--primary-color);
}
.primary-background .contact-info-item i {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info-item span {
  font-size: 0.9rem;
  line-height: 1.55;
  opacity: 0.82;
}

/* ==================== FOOTER ==================== */

.contact-footer {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 30px 40px;
  border-radius: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.dark-background .contact-footer {
  background: rgba(169, 139, 104, 0.06);
  border: 1px solid rgba(169, 139, 104, 0.1);
}
.light-background .contact-footer {
  background: var(--white);
  border: 1px solid rgba(20, 20, 24, 0.06);
  box-shadow: 0 2px 16px rgba(20, 20, 24, 0.04);
}
.primary-background .contact-footer {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-footer-item {
  display: flex;
  align-items: center;
  gap: 13px;

  /* Entry animation state */
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-footer-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-footer-item i {
  font-size: 1.2rem;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

.contact-footer:hover .contact-footer-item i {
  transform: scale(1.1);
}

.dark-background .contact-footer-item i {
  color: var(--tertiary-color);
}
.light-background .contact-footer-item i {
  color: var(--primary-color);
}
.primary-background .contact-footer-item i {
  color: var(--white);
}

.contact-footer-item span {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.8;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1024px) {
  .contact-container {
    gap: 45px;
  }

  .contact-cards {
    gap: 20px;
  }

  .contact-cards-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-footer {
    gap: 35px;
    padding: 25px 30px;
  }
}

@media (max-width: 768px) {
  .contact-grid {
    gap: 40px;
  }

  .contact-cards,
  .contact-cards-items {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 26px;
  }

  .contact-card-item {
    text-align: left;
  }

  .contact-card-item .contact-info-item {
    justify-content: flex-start;
  }

  .contact-card-logo {
    margin: 0 0 16px;
  }

  .contact-footer {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 22px;
    border-radius: 14px;
  }

  .contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .contact-card-icon i {
    font-size: 1.3rem;
  }

  .contact-card-logo {
    width: 65px;
    height: 65px;
    border-radius: 10px;
  }

  .contact-footer {
    padding: 22px;
    border-radius: 12px;
  }
}

/* ==================== REDUCED MOTION ==================== */

@media (prefers-reduced-motion: reduce) {
  .contact-card,
  .contact-footer-item,
  .contact-card-icon,
  .contact-card-logo,
  .contact-card-logo img,
  .contact-info-item i {
    transition: none !important;
  }

  .contact-card::before {
    display: none;
  }

  .contact-card {
    opacity: 1;
    transform: none;
  }

  .contact-footer-item {
    opacity: 1;
    transform: none;
  }
}


/* ========== Block: footer_v_1_1 (footer-v-1) ========== */
/* Source: footers/footer-v-1/template-assets/footer-styles.css */
/* ==================== FOOTER - DARK THEME ==================== */

:root {
  --footer-bg: var(--shadow-color);
  --footer-text: var(--light-color);
  --footer-text-muted: rgba(243, 238, 239, 0.6);
  --footer-accent: var(--primary-color);
  --footer-accent-hover: var(--primary-hover);
  --footer-border: rgba(243, 238, 239, 0.1);
  --footer-icon-bg: rgba(243, 238, 239, 0.08);
  --footer-link-hover: var(--primary-color);
  --footer-transition: 0.3s ease;
}

/* ==================== BASE SECTION ==================== */
.footer-section {
  width: 100%;
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 70px 0 0;
  position: relative;
}

/* Top accent border */
.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.footer-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

/* ==================== HEADER / BRAND ==================== */
.footer-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--footer-border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: transform var(--footer-transition);
}

.footer-logo:hover {
  transform: scale(1.04);
}

.footer-description {
  max-width: 480px;
  font-family: "Gilroy", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--footer-text-muted);
  margin: 0;
}

/* ==================== MAIN GRID ==================== */
.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ==================== TITLES ==================== */
.footer-title {
  font-family: "Gilroy", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--footer-text);
  margin: 0;
  padding-bottom: 12px;
  position: relative;
  letter-spacing: 0.02em;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 32px;
  background: var(--footer-accent);
  border-radius: 2px;
}

/* ==================== LINKS ==================== */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-family: "Gilroy", sans-serif;
  font-size: 0.92rem;
  color: var(--footer-text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  transition:
    color var(--footer-transition),
    transform var(--footer-transition);
  position: relative;
  cursor: pointer;
}

.footer-link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background: var(--footer-link-hover);
  transition: width var(--footer-transition);
}

.footer-link:hover {
  color: var(--footer-link-hover);
  transform: translateX(4px);
}

.footer-link:hover::before {
  width: 100%;
}

/* ==================== CONTACTS ==================== */
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Gilroy", sans-serif;
  font-size: 0.92rem;
  color: var(--footer-text-muted);
  text-decoration: none;
  transition: color var(--footer-transition);
}

a.footer-contact:hover {
  color: var(--footer-link-hover);
}

.footer-contact i {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--footer-icon-bg);
  border: 1px solid var(--footer-border);
  border-radius: 50%;
  font-size: 0.9rem;
  color: var(--footer-accent);
  flex-shrink: 0;
  transition:
    background var(--footer-transition),
    color var(--footer-transition),
    transform var(--footer-transition),
    border-color var(--footer-transition);
}

a.footer-contact:hover i {
  background: var(--footer-accent);
  border-color: var(--footer-accent);
  color: var(--white);
  transform: scale(1.08);
}

/* ==================== SOCIAL LINKS ==================== */
.footer-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--footer-icon-bg);
  border: 1px solid var(--footer-border);
  border-radius: 50%;
  color: var(--footer-text-muted);
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--footer-transition);
  position: relative;
  overflow: hidden;
}

.footer-social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--footer-accent);
  border-radius: 50%;
  transform: scale(0);
  transition: transform var(--footer-transition);
}

.footer-social-link i {
  position: relative;
  z-index: 1;
  transition: color var(--footer-transition);
}

.footer-social-link:hover {
  border-color: var(--footer-accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(238, 10, 16, 0.2);
}

.footer-social-link:hover::before {
  transform: scale(1);
}

.footer-social-link:hover i {
  color: var(--white);
}

/* ==================== BOTTOM BAR ==================== */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--footer-border);
  gap: 20px;
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal-link {
  font-family: "Gilroy", sans-serif;
  font-size: 0.85rem;
  color: var(--footer-text-muted);
  text-decoration: none;
  transition: color var(--footer-transition);
}

.footer-legal-link:hover {
  color: var(--footer-link-hover);
}

.footer-copyright {
  font-family: "Gilroy", sans-serif;
  font-size: 0.85rem;
  color: var(--footer-text-muted);
}

/* ==================== RESPONSIVE - TABLET ==================== */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

/* ==================== RESPONSIVE - MOBILE ==================== */
@media (max-width: 768px) {
  .footer-section {
    padding: 50px 0 0;
  }

  .footer-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .footer-logo {
    height: 48px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links {
    align-items: center;
  }

  .footer-link:hover {
    transform: translateY(-2px);
  }

  .footer-contacts {
    align-items: center;
  }

  .footer-social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    gap: 16px;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* ==================== RESPONSIVE - SMALL MOBILE ==================== */
@media (max-width: 480px) {
  .footer-section {
    padding: 40px 0 0;
  }

  .footer-container {
    width: 92%;
  }

  .footer-logo {
    height: 42px;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .footer-title {
    font-size: 1rem;
  }

  .footer-link,
  .footer-contact {
    font-size: 0.88rem;
  }

  .footer-contact i {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .footer-social-link {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }

  .footer-legal-link,
  .footer-copyright {
    font-size: 0.8rem;
  }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
  .footer-logo,
  .footer-link,
  .footer-link::before,
  .footer-contact,
  .footer-contact i,
  .footer-social-link,
  .footer-social-link::before,
  .footer-social-link i,
  .footer-legal-link {
    transition: none !important;
  }
}

/* ==================== PRINT ==================== */
@media print {
  .footer-section {
    background: #fff;
    color: #000;
    padding: 20px 0;
  }

  .footer-section::before,
  .footer-social-links {
    display: none;
  }
}


/* ========== Block: call_visit_modal_1 (call-visit-modal) ========== */
/* Source: modals/call-visit-modal/template-assets/call-modal-styles.css */
/* Modal Overlay */
.call-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 24, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.call-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Container */
.call-modal-container {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 700px;
  background: var(--light-color);
  border-radius: 16px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.call-modal-overlay.active .call-modal-container {
  transform: scale(1) translateY(0);
}

/* Close Button */
.call-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(20, 20, 24, 0.1);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: var(--shadow-color);
}

.call-modal-close:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: rotate(90deg) scale(1.1);
}

/* Modal Content */
.call-modal-content {
  padding: 24px 32px;
  overflow-y: auto;
  max-height: 700px;
}

/* Header */
.call-modal-header {
  text-align: left;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.call-modal-header-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.call-modal-icon {
  width: 50px;
  height: 50px;
  margin: 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(238, 10, 16, 0.3);
  flex-shrink: 0;
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(238, 10, 16, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(238, 10, 16, 0.5);
  }
}

.call-modal-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-color-main);
  margin: 0;
  line-height: 1.2;
}

.call-modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-color-accent);
  opacity: 0.8;
  margin: 0;
  line-height: 1.3;
}

/* Form */
.call-modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.call-modal-form-row {
  display: flex;
  gap: 14px;
}

.call-modal-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.call-modal-form-group.full-width {
  width: 100%;
}

.call-modal-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-color-main);
  transition: color 0.3s ease;
}

/* Inputs */
.call-modal-input,
.call-modal-select,
.call-modal-textarea {
  width: calc(100% - 28px);
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: "Gilroy", sans-serif;
  color: var(--text-color-main);
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  transition: all 0.3s ease;
  outline: none;
}

.call-modal-input:focus,
.call-modal-select:focus,
.call-modal-textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(238, 10, 16, 0.1);
  transform: translateY(-2px);
}

.call-modal-input:focus + .call-modal-label,
.call-modal-select:focus + .call-modal-label,
.call-modal-textarea:focus + .call-modal-label {
  color: var(--primary-color);
}

.call-modal-textarea {
  min-height: 70px;
  resize: vertical;
}

.call-modal-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23141418' 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 14px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Actions */
.call-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: flex-end;
}

.call-modal-cancel,
.call-modal-submit {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: "Gilroy", sans-serif;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.call-modal-cancel {
  background: transparent;
  color: var(--text-color-main);
  border: 2px solid var(--light-gray);
}

.call-modal-cancel:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
}

.call-modal-submit {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white);
  box-shadow: 0 5px 20px rgba(238, 10, 16, 0.3);
}

.call-modal-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.call-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(238, 10, 16, 0.5);
}

.call-modal-submit:hover::before {
  left: 100%;
}

.call-modal-submit:active {
  transform: translateY(0);
}

/* Response Message */
.call-modal-response {
  margin-top: 14px;
  min-height: 0;
  transition: all 0.3s ease;
}

.call-modal-response:empty {
  display: none;
}

/* Response Message - Compatible with form-handler.js */
.call-modal-response .alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInUp 0.4s ease-out;
  font-family: "Gilroy", sans-serif;
}

.call-modal-response .alert i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.call-modal-response .alert-success {
  background: rgba(125, 132, 67, 0.1);
  color: var(--success-color);
  border: 1px solid var(--success-color);
}

.call-modal-response .alert-success i {
  color: var(--success-color);
}

.call-modal-response .alert-error {
  background: rgba(244, 67, 54, 0.1);
  color: var(--error-color);
  border: 1px solid var(--error-color);
}

.call-modal-response .alert-error i {
  color: var(--error-color);
}

/* Legacy support for old response classes */
.call-modal-response.success {
  background: rgba(125, 132, 67, 0.1);
  color: var(--success-color);
  border: 1px solid var(--success-color);
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
  animation: slideInUp 0.4s ease-out;
}

.call-modal-response.error {
  background: rgba(244, 67, 54, 0.1);
  color: var(--error-color);
  border: 1px solid var(--error-color);
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
  animation: slideInUp 0.4s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Phone Field Integration */
.call-modal-form-group .modern-phone-field {
  width: 100%;
}

.call-modal-form-group .phone-input-container {
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  transition: all 0.3s ease;
  background: var(--white);
  height: 42px;
}

.call-modal-form-group .phone-input-container:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(238, 10, 16, 0.1);
  transform: translateY(-2px);
}

.call-modal-form-group .country-button {
  background: transparent;
  border: none;
  border-right: 2px solid var(--light-gray);
  padding: 10px 12px;
  height: 100%;
  min-width: 90px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.call-modal-form-group .country-button:hover {
  background: rgba(238, 10, 16, 0.05);
}

.call-modal-form-group .country-button .flag {
  font-size: 18px;
}

.call-modal-form-group .country-button .code {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color-main);
  font-family: "Gilroy", sans-serif;
}

.call-modal-form-group .country-button .arrow {
  width: 12px;
  height: 12px;
  fill: var(--text-color-accent);
  transition: transform 0.2s ease;
}

.call-modal-form-group .country-button.active .arrow {
  transform: rotate(180deg);
}

.call-modal-form-group .phone-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: "Gilroy", sans-serif;
  color: var(--text-color-main);
  outline: none;
  height: calc(100% - 20px);
}

.call-modal-form-group .phone-input::placeholder {
  color: var(--shadow-light);
  opacity: 0.6;
}

/* Country Dropdown for Modal */
.call-modal-form-group .country-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(20, 20, 24, 0.15);
  z-index: 10001;
  max-height: 300px;
  display: none;
  overflow: hidden;
}

.call-modal-form-group .country-dropdown.open {
  display: block;
}

.call-modal-form-group .country-search {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-bottom: 2px solid var(--light-gray);
  outline: none;
  font-size: 1rem;
  font-family: "Gilroy", sans-serif;
  color: var(--text-color-main);
  background: var(--white);
}

.call-modal-form-group .country-search::placeholder {
  color: var(--shadow-light);
  opacity: 0.6;
}

.call-modal-form-group .country-list {
  max-height: 240px;
  overflow-y: auto;
}

.call-modal-form-group .country-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.call-modal-form-group .country-item:hover {
  background: rgba(238, 10, 16, 0.05);
}

.call-modal-form-group .country-item .flag {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.call-modal-form-group .country-item .name {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-color-main);
  font-family: "Gilroy", sans-serif;
}

.call-modal-form-group .country-item .code {
  font-size: 0.9rem;
  color: var(--text-color-accent);
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
}

/* Autofill trap hidden */
.call-modal-form-group .autofill-trap {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Hidden full value field */
.call-modal-form-group .phone-full-value {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .call-modal-container {
    width: 95%;
    max-height: 95vh;
  }

  .call-modal-content {
    padding: 24px 18px;
  }

  .call-modal-form-row {
    flex-direction: column;
    gap: 15px;
  }

  .call-modal-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .call-modal-title {
    font-size: 1.3rem;
  }

  .call-modal-subtitle {
    font-size: 0.85rem;
  }

  .call-modal-actions {
    flex-direction: column;
    gap: 10px;
  }

  .call-modal-cancel,
  .call-modal-submit {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .call-modal-close {
    width: 35px;
    height: 35px;
    top: 15px;
    right: 15px;
  }

  .call-modal-content {
    padding: 20px 15px;
  }

  .call-modal-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .call-modal-title {
    font-size: 1.2rem;
  }

  .call-modal-subtitle {
    font-size: 0.8rem;
  }

  .call-modal-input,
  .call-modal-select,
  .call-modal-textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .call-modal-phone-container .country-button {
    min-width: 85px;
    padding: 10px;
  }

  .call-modal-phone-container .phone-input {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .call-modal-overlay,
  .call-modal-container,
  .call-modal-icon,
  .call-modal-submit::before {
    animation: none !important;
    transition: none !important;
  }
}


/* ========== Block: request_offer_modal_1 (request-offer-modal) ========== */
/* Source: modals/request-offer-modal/template-assets/request-offer-modal-styles.css */
/* Modal Overlay */
.request-offer-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 24, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.request-offer-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Container */
.request-offer-modal-container {
  position: relative;
  width: 90%;
  max-width: 650px;
  max-height: 650px;
  background: var(--light-color);
  border-radius: 16px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.request-offer-modal-overlay.active .request-offer-modal-container {
  transform: scale(1) translateY(0);
}

/* Close Button */
.request-offer-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(20, 20, 24, 0.1);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: var(--shadow-color);
}

.request-offer-modal-close:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: rotate(90deg) scale(1.1);
}

/* Modal Content */
.request-offer-modal-content {
  padding: 24px 32px;
  overflow-y: auto;
  max-height: 650px;
}

/* Header */
.request-offer-modal-header {
  text-align: left;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.request-offer-modal-header-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.request-offer-modal-icon {
  width: 50px;
  height: 50px;
  margin: 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(238, 10, 16, 0.3);
  flex-shrink: 0;
}

.request-offer-modal-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-color-main);
  margin: 0;
  line-height: 1.2;
}

.request-offer-modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-color-accent);
  opacity: 0.8;
  margin: 0;
  line-height: 1.3;
}

/* Form */
.request-offer-modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.request-offer-modal-form-row {
  display: flex;
  gap: 14px;
}

.request-offer-modal-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.request-offer-modal-form-group.full-width {
  width: 100%;
}

.request-offer-modal-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-color-main);
  transition: color 0.3s ease;
}

/* Inputs */
.request-offer-modal-input,
.request-offer-modal-textarea {
  width: calc(100% - 28px);
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: "Gilroy", sans-serif;
  color: var(--text-color-main);
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  transition: all 0.3s ease;
  outline: none;
}

.request-offer-modal-input:focus,
.request-offer-modal-textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(238, 10, 16, 0.1);
  transform: translateY(-2px);
}

.request-offer-modal-input:focus + .request-offer-modal-label,
.request-offer-modal-textarea:focus + .request-offer-modal-label {
  color: var(--primary-color);
}

.request-offer-modal-textarea {
  min-height: 80px;
  resize: vertical;
}

/* Actions */
.request-offer-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: flex-end;
}

.request-offer-modal-cancel,
.request-offer-modal-submit {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: "Gilroy", sans-serif;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.request-offer-modal-cancel {
  background: transparent;
  color: var(--text-color-main);
  border: 2px solid var(--light-gray);
}

.request-offer-modal-cancel:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
}

.request-offer-modal-submit {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white);
  box-shadow: 0 5px 20px rgba(238, 10, 16, 0.3);
}

.request-offer-modal-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.request-offer-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(238, 10, 16, 0.5);
}

.request-offer-modal-submit:hover::before {
  left: 100%;
}

.request-offer-modal-submit:active {
  transform: translateY(0);
}

/* Response Message */
.request-offer-modal-response {
  margin-top: 14px;
  min-height: 0;
  transition: all 0.3s ease;
}

.request-offer-modal-response:empty {
  display: none;
}

.request-offer-modal-response .alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInUp 0.4s ease-out;
  font-family: "Gilroy", sans-serif;
}

.request-offer-modal-response .alert i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.request-offer-modal-response .alert-success {
  background: rgba(125, 132, 67, 0.1);
  color: var(--success-color);
  border: 1px solid var(--success-color);
}

.request-offer-modal-response .alert-success i {
  color: var(--success-color);
}

.request-offer-modal-response .alert-error {
  background: rgba(244, 67, 54, 0.1);
  color: var(--error-color);
  border: 1px solid var(--error-color);
}

.request-offer-modal-response .alert-error i {
  color: var(--error-color);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Phone Field Integration */
.request-offer-modal-form-group .modern-phone-field {
  width: 100%;
}

.request-offer-modal-form-group .phone-input-container {
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  transition: all 0.3s ease;
  background: var(--white);
  height: 42px;
}

.request-offer-modal-form-group .phone-input-container:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(238, 10, 16, 0.1);
  transform: translateY(-2px);
}

.request-offer-modal-form-group .country-button {
  background: transparent;
  border: none;
  border-right: 2px solid var(--light-gray);
  padding: 10px 12px;
  height: 100%;
  min-width: 90px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.request-offer-modal-form-group .country-button:hover {
  background: rgba(238, 10, 16, 0.05);
}

.request-offer-modal-form-group .country-button .flag {
  font-size: 18px;
}

.request-offer-modal-form-group .country-button .code {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color-main);
  font-family: "Gilroy", sans-serif;
}

.request-offer-modal-form-group .country-button .arrow {
  width: 12px;
  height: 12px;
  fill: var(--text-color-accent);
  transition: transform 0.2s ease;
}

.request-offer-modal-form-group .country-button.active .arrow {
  transform: rotate(180deg);
}

.request-offer-modal-form-group .phone-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: "Gilroy", sans-serif;
  color: var(--text-color-main);
  outline: none;
  height: calc(100% - 20px);
}

.request-offer-modal-form-group .phone-input::placeholder {
  color: var(--shadow-light);
  opacity: 0.6;
}

/* Country Dropdown */
.request-offer-modal-form-group .country-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(20, 20, 24, 0.15);
  z-index: 10001;
  max-height: 300px;
  display: none;
  overflow: hidden;
}

.request-offer-modal-form-group .country-dropdown.open {
  display: block;
}

.request-offer-modal-form-group .country-search {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-bottom: 2px solid var(--light-gray);
  outline: none;
  font-size: 1rem;
  font-family: "Gilroy", sans-serif;
  color: var(--text-color-main);
  background: var(--white);
}

.request-offer-modal-form-group .country-list {
  max-height: 240px;
  overflow-y: auto;
}

.request-offer-modal-form-group .country-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.request-offer-modal-form-group .country-item:hover {
  background: rgba(238, 10, 16, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .request-offer-modal-container {
    width: 95%;
    max-height: 95vh;
  }

  .request-offer-modal-content {
    padding: 24px 18px;
  }

  .request-offer-modal-form-row {
    flex-direction: column;
    gap: 15px;
  }

  .request-offer-modal-actions {
    flex-direction: column;
    gap: 10px;
  }

  .request-offer-modal-cancel,
  .request-offer-modal-submit {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .request-offer-modal-close {
    width: 35px;
    height: 35px;
    top: 15px;
    right: 15px;
  }

  .request-offer-modal-content {
    padding: 20px 15px;
  }

  .request-offer-modal-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .request-offer-modal-title {
    font-size: 1.2rem;
  }

  .request-offer-modal-input,
  .request-offer-modal-textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .request-offer-modal-overlay,
  .request-offer-modal-container,
  .request-offer-modal-submit::before {
    animation: none !important;
    transition: none !important;
  }
}


/* ========== Block: consultation_modal_1 (consultation-modal) ========== */
/* Source: modals/consultation-modal/template-assets/consultation-modal-styles.css */
/* Modal Overlay */
.consultation-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 24, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.consultation-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Container */
.consultation-modal-container {
  position: relative;
  width: 90%;
  max-width: 700px;
  max-height: 650px;
  background: var(--light-color);
  border-radius: 16px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.consultation-modal-overlay.active .consultation-modal-container {
  transform: scale(1) translateY(0);
}

/* Close Button */
.consultation-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(20, 20, 24, 0.1);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: var(--shadow-color);
}

.consultation-modal-close:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: rotate(90deg) scale(1.1);
}

/* Modal Content */
.consultation-modal-content {
  padding: 24px 32px;
  overflow-y: auto;
  max-height: 650px;
}

/* Header */
.consultation-modal-header {
  text-align: left;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.consultation-modal-header-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.consultation-modal-icon {
  width: 50px;
  height: 50px;
  margin: 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(238, 10, 16, 0.3);
  flex-shrink: 0;
}

.consultation-modal-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-color-main);
  margin: 0;
  line-height: 1.2;
}

.consultation-modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-color-accent);
  opacity: 0.8;
  margin: 0;
  line-height: 1.3;
}

/* Form */
.consultation-modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.consultation-modal-form-row {
  display: flex;
  gap: 14px;
}

.consultation-modal-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.consultation-modal-form-group.full-width {
  width: 100%;
}

.consultation-modal-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-color-main);
  transition: color 0.3s ease;
}

/* Inputs */
.consultation-modal-input,
.consultation-modal-textarea {
  width: calc(100% - 28px);
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: "Gilroy", sans-serif;
  color: var(--text-color-main);
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  transition: all 0.3s ease;
  outline: none;
}

.consultation-modal-input:focus,
.consultation-modal-textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(238, 10, 16, 0.1);
  transform: translateY(-2px);
}

.consultation-modal-input:focus + .consultation-modal-label,
.consultation-modal-textarea:focus + .consultation-modal-label {
  color: var(--primary-color);
}

.consultation-modal-textarea {
  min-height: 80px;
  resize: vertical;
}

/* Actions */
.consultation-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: flex-end;
}

.consultation-modal-cancel,
.consultation-modal-submit {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: "Gilroy", sans-serif;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.consultation-modal-cancel {
  background: transparent;
  color: var(--text-color-main);
  border: 2px solid var(--light-gray);
}

.consultation-modal-cancel:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
}

.consultation-modal-submit {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white);
  box-shadow: 0 5px 20px rgba(238, 10, 16, 0.3);
}

.consultation-modal-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.consultation-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(238, 10, 16, 0.5);
}

.consultation-modal-submit:hover::before {
  left: 100%;
}

.consultation-modal-submit:active {
  transform: translateY(0);
}

/* Response Message */
.consultation-modal-response {
  margin-top: 14px;
  min-height: 0;
  transition: all 0.3s ease;
}

.consultation-modal-response:empty {
  display: none;
}

/* Response Message - Compatible with form-handler.js */
.consultation-modal-response .alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInUp 0.4s ease-out;
  font-family: "Gilroy", sans-serif;
}

.consultation-modal-response .alert i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.consultation-modal-response .alert-success {
  background: rgba(125, 132, 67, 0.1);
  color: var(--success-color);
  border: 1px solid var(--success-color);
}

.consultation-modal-response .alert-success i {
  color: var(--success-color);
}

.consultation-modal-response .alert-error {
  background: rgba(244, 67, 54, 0.1);
  color: var(--error-color);
  border: 1px solid var(--error-color);
}

.consultation-modal-response .alert-error i {
  color: var(--error-color);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Phone Field Integration */
.consultation-modal-form-group .modern-phone-field {
  width: 100%;
}

.consultation-modal-form-group .phone-input-container {
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  transition: all 0.3s ease;
  background: var(--white);
  height: 42px;
}

.consultation-modal-form-group .phone-input-container:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(238, 10, 16, 0.1);
  transform: translateY(-2px);
}

.consultation-modal-form-group .country-button {
  background: transparent;
  border: none;
  border-right: 2px solid var(--light-gray);
  padding: 10px 12px;
  height: 100%;
  min-width: 90px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.consultation-modal-form-group .country-button:hover {
  background: rgba(238, 10, 16, 0.05);
}

.consultation-modal-form-group .country-button .flag {
  font-size: 18px;
}

.consultation-modal-form-group .country-button .code {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color-main);
  font-family: "Gilroy", sans-serif;
}

.consultation-modal-form-group .country-button .arrow {
  width: 12px;
  height: 12px;
  fill: var(--text-color-accent);
  transition: transform 0.2s ease;
}

.consultation-modal-form-group .country-button.active .arrow {
  transform: rotate(180deg);
}

.consultation-modal-form-group .phone-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: "Gilroy", sans-serif;
  color: var(--text-color-main);
  outline: none;
  height: calc(100% - 20px);
}

.consultation-modal-form-group .phone-input::placeholder {
  color: var(--shadow-light);
  opacity: 0.6;
}

/* Country Dropdown */
.consultation-modal-form-group .country-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(20, 20, 24, 0.15);
  z-index: 10001;
  max-height: 300px;
  display: none;
  overflow: hidden;
}

.consultation-modal-form-group .country-dropdown.open {
  display: block;
}

.consultation-modal-form-group .country-search {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-bottom: 2px solid var(--light-gray);
  outline: none;
  font-size: 1rem;
  font-family: "Gilroy", sans-serif;
  color: var(--text-color-main);
  background: var(--white);
}

.consultation-modal-form-group .country-list {
  max-height: 240px;
  overflow-y: auto;
}

.consultation-modal-form-group .country-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.consultation-modal-form-group .country-item:hover {
  background: rgba(238, 10, 16, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .consultation-modal-container {
    width: 95%;
    max-height: 95vh;
  }

  .consultation-modal-content {
    padding: 24px 18px;
  }

  .consultation-modal-form-row {
    flex-direction: column;
    gap: 15px;
  }

  .consultation-modal-actions {
    flex-direction: column;
    gap: 10px;
  }

  .consultation-modal-cancel,
  .consultation-modal-submit {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .consultation-modal-close {
    width: 35px;
    height: 35px;
    top: 15px;
    right: 15px;
  }

  .consultation-modal-content {
    padding: 20px 15px;
  }

  .consultation-modal-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .consultation-modal-title {
    font-size: 1.2rem;
  }

  .consultation-modal-input,
  .consultation-modal-textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .consultation-modal-overlay,
  .consultation-modal-container,
  .consultation-modal-submit::before {
    animation: none !important;
    transition: none !important;
  }
}


