:root {
  --primary-bg: #0f1f1a;
  --secondary-bg: #162a23;
  --accent-color: #22c55e;
  --accent-hover: #16a34a;
  --text-main: #ffffff;
  --text-secondary: #a7bfb7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-main);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  transition: all 0.3s ease;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

button:hover {
  opacity: 0.9;
}

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

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.js-cookie-banner {
  display: none;
}

@media (max-width: 768px) {
  h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  h3 {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }

  p,
  body {
    font-size: 14px;
  }
}

/* ===== pre_header_section ===== */
#top-info {
  width: 100%;
  position: relative;
  z-index: 1050;
}

#top-info p {
  margin: 0;
  letter-spacing: 0.01em;
}

#top-info .container {
  max-width: 1200px;
}

/* ===== header_section ===== */
#main-header .nav-link {
  transition: color 0.3s ease;
  font-weight: 500;
}

#main-header .nav-link:hover {
  color: var(--accent-color) !important;
}

.btn-cta {
  transition: background-color 0.3s ease;
}

.btn-cta:hover {
  background-color: var(--accent-hover) !important;
  color: var(--text-main) !important;
}

.js-mobile-link {
  transition: color 0.3s ease;
}

.js-mobile-link:hover {
  color: var(--accent-color) !important;
}

.mobile-menu-overlay {
  transition: opacity 0.3s ease;
}

/* ===== hero_section ===== */
#hero {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-section .btn:hover {
  background-color: var(--accent-hover) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(34, 197, 94, 0.3);
}

.hero-section .ph {
  transition: transform 0.3s ease;
}

.hero-section .col-md-4:hover .ph {
  transform: scale(1.1);
}

/* ===== offers_grid ===== */
.offer-card {
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.offer-card .btn:hover {
  background-color: var(--accent-hover) !important;
}

#shareBtn {
  transition: all 0.3s ease;
}

#shareBtn:hover {
  background-color: var(--text-main);
  color: var(--primary-bg) !important;
}

#shareBtn:hover i {
  color: var(--primary-bg) !important;
}

/* ===== about_Azurebook10 ===== */
#about {
  overflow: hidden;
}

#about .img-fluid {
  transition: transform 0.3s ease-in-out;
}

#about .img-fluid:hover {
  transform: scale(1.02);
}

/* ===== why_trust_us ===== */
#trust {
  overflow: hidden;
}

.trust-feature {
  transition: transform 0.3s ease;
}

.trust-feature:hover {
  transform: translateX(10px);
}

.image-wrapper::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(var(--accent-color) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.2;
  z-index: -1;
}

.icon-container {
  border: 1px solid rgba(34, 197, 94, 0.2);
}

/* ===== how_it_works_steps ===== */
.js-step-card:hover {
  transform: translateY(-10px);
}

.js-step-card i {
  transition: transform 0.3s ease;
}

.js-step-card:hover i {
  transform: scale(1.1);
}

/* ===== faq_section ===== */
#faq .accordion-button::after {
  display: none;
}

#faq .accordion-button:not(.collapsed) {
  color: var(--accent-color) !important;
}

#faq .accordion-button:not(.collapsed) .js-faq-icon {
  transform: rotate(180deg);
}

#faq .accordion-button:focus {
  box-shadow: none;
}

#faq .accordion-item {
  transition: border-color 0.3s ease;
}

#faq .accordion-item:hover {
  border-color: var(--accent-color) !important;
}

/* ===== disclaimer_block ===== */
#disclaimer {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.js-disclaimer-wrap {
  background-color: var(--secondary-bg);
  transition:
    border-color 0.3s ease-in-out,
    transform 0.3s ease;
}

.js-disclaimer-wrap:hover {
  border-color: var(--accent-color) !important;
}

.disclaimer-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.disclaimer-content a {
  transition: color 0.2s ease;
}

.disclaimer-content a:hover {
  color: var(--accent-color) !important;
}

/* ===== footer ===== */
.footer-nav-link {
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-nav-link:hover {
  color: var(--accent-color) !important;
}

.legal-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: var(--accent-color) !important;
}

.org-logo {
  width: 110px;
  height: auto;
  display: block;
}

.js-cta-button:hover {
  background-color: var(--accent-hover) !important;
}

@media (max-width: 767px) {
  footer .badge {
    font-size: 13px !important;
  }
}
