/* Variables & Reset */
:root {
  --bg-color: #ffffff;
  --text-color: #111111;
  --accent-color: #ff4d00; /* International Orange */
  --gray-light: #f4f4f4;
  --gray-dark: #222222;
  --border-color: #e0e0e0;
  --font-main: "Manrope", sans-serif;
  --font-head: "Oswald", sans-serif;
  --container-width: 1200px;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  text-transform: uppercase;
  line-height: 1.1;
  font-weight: 700;
}

.text-accent {
  color: var(--accent-color);
}

.section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--text-color);
  color: var(--bg-color);
  padding: 14px 32px;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid var(--text-color);
  font-family: var(--font-head);
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.btn-primary.outline {
  background: transparent;
  color: var(--text-color);
}

.btn-primary.white-bg {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btn-primary.white-bg:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.btn-primary.small {
  padding: 8px 20px;
  font-size: 14px;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-secondary:hover {
  color: var(--accent-color);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  height: 80px;
  display: flex;
  align-items: center;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
}

.logo-text {
  letter-spacing: -0.5px;
}

.desk-nav {
  display: flex;
  gap: 30px;
}

.desk-nav a {
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
}

.desk-nav a:hover {
  color: var(--accent-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.link-contact {
  font-weight: 600;
}

.link-contact:hover {
  color: var(--accent-color);
}

/* Burger Button */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2000;
}

.burger .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--text-color);
  color: #fff;
  z-index: 1500;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mm-label {
  font-family: var(--font-head);
  font-size: 14px;
  opacity: 0.5;
}

.mm-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.mm-nav {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.mm-link {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.mm-link:hover {
  color: var(--accent-color);
  padding-left: 10px;
}

.mm-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.btn-mobile-cta {
  display: block;
  background: var(--accent-color);
  color: #fff;
  text-align: center;
  padding: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.mm-loc {
  font-size: 12px;
  opacity: 0.5;
  text-align: center;
}

/* Hero Section */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: var(--gray-light);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.lead-text {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-sub {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
}

.visual-box {
  position: relative;
  overflow: hidden;
}

.visual-overlay {
  position: absolute;
  top: 20px;
  right: -20px;
  background: var(--accent-color);
  color: #fff;
  padding: 5px 15px;
  font-weight: 700;
  font-family: var(--font-head);
  transform: rotate(5deg);
  z-index: 10;
}

/* Ticker */
.ticker-wrap {
  background: var(--text-color);
  color: #fff;
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* General Layouts */
.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 10px;
}

.section-title-lg {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 60px;
  border-bottom: 1px solid var(--text-color);
  padding-bottom: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.info-block {
  padding: 40px;
  border: 1px solid var(--border-color);
}

.info-block.bg-gray {
  background: var(--gray-light);
  border: none;
}

.info-block h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.styled-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.styled-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent-color);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.card-item {
  border: 1px solid var(--border-color);
  padding: 30px;
  transition: 0.3s;
}

.card-item:hover {
  border-color: var(--text-color);
  transform: translateY(-5px);
}

.card-icon {
  margin-bottom: 20px;
  color: var(--accent-color);
}

.card-item h4 {
  font-size: 24px;
  margin-bottom: 15px;
}

.center-btn {
  text-align: center;
}

/* Blog Section */
.bg-black {
  background: var(--text-color);
  color: #fff;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.split-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

.stat-box {
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px;
  display: inline-block;
}

.big-num {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--font-head);
}

.blog-entry {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
}

.blog-entry:first-child {
  padding-top: 0;
}

.blog-entry .date {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 5px;
  display: block;
}

.blog-entry h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.read-link {
  font-size: 14px;
  text-decoration: underline;
  color: #ccc;
}

.read-link:hover {
  color: var(--accent-color);
}

/* Interactive Banner */
.banner-wrap {
  background: var(--accent-color);
  padding: 80px 40px;
  text-align: center;
  color: #fff;
}

.banner-body h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.banner-body p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px;
}

.banner-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.banner-note {
  font-size: 12px;
  opacity: 0.8;
}

/* Benefits */
.mb-50 {
  margin-bottom: 50px;
}

.feature-row {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid var(--border-color);
  padding: 30px 0;
}

.f-num {
  font-family: var(--font-head);
  font-size: 40px;
  color: var(--accent-color);
  font-weight: 700;
  line-height: 1;
}

.f-txt h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* FAQ */
.bg-gray {
  background: var(--gray-light);
}

.narrow {
  max-width: 800px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.acc-item {
  background: #fff;
  border: 1px solid var(--border-color);
}

.acc-btn {
  width: 100%;
  padding: 20px;
  text-align: left;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-head);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.acc-content p {
  padding: 0 20px 20px;
  color: #666;
}

/* Contact Form */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.ci-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
}

.form-wrapper {
  background: #fff;
  padding: 40px;
  border: 1px solid var(--text-color);
  box-shadow: 10px 10px 0 var(--gray-light);
}

.inp-group {
  margin-bottom: 20px;
  position: relative;
}

.inp-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.inp-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  background: var(--gray-light);
  font-size: 16px;
  font-family: var(--font-main);
}

.inp-group input:focus {
  outline: none;
  border-color: var(--text-color);
}

.error input {
  border-color: red;
}

.error-msg {
  display: none;
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

.error .error-msg {
  display: block;
}

.check-group {
  margin-bottom: 30px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-group input {
  margin-top: 5px;
  accent-color: var(--text-color);
}

.check-group label {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.check-group a {
  text-decoration: underline;
  color: #000;
  font-weight: 600;
}

.full-width {
  width: 100%;
}

/* Footer */
.footer {
  background: var(--text-color);
  color: #fff;
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.f-logo {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.f-brand p {
  opacity: 0.6;
  max-width: 300px;
}

.footer h5 {
  opacity: 0.5;
  margin-bottom: 20px;
  font-size: 14px;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  opacity: 0.8;
}

.footer a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.hl-link {
  color: var(--accent-color);
  opacity: 1 !important;
}

.footer-btm {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 12px;
  opacity: 0.4;
}

/* Cookie Pop-up */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid var(--text-color);
  padding: 20px;
  z-index: 9000;
  max-width: 300px;
  box-shadow: 5px 5px 0 var(--text-color);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.cookie-popup.show {
  opacity: 1;
  visibility: visible;
}

.cookie-inner p {
  font-size: 14px;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .desk-nav {
    display: none;
  }
  .header-actions {
    display: flex !important;
  }
  .link-contact,
  .btn-primary.small {
    display: none;
  }
  .burger {
    display: flex;
    position: absolute;
    right: 20px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .split-layout {
    grid-template-columns: 1fr;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding-top: 20px;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    text-align: left;
    font-size: 20px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  h3 {
    font-size: 20px;
  }
  .margin {
    font-size: 28px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
