/* DESIGN SYSTEM: Swiss International Style */
:root {
  --bg-white: #ffffff;
  --bg-light: #f4f4f4;
  --text-black: #1a1a1a;
  --text-grey: #555555;
  --accent-red: #ff4500; /* International Orange */

  --container: 1180px;
  --grid-gap: 40px;

  --font-head: "Archivo", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* UTILS */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}
ul {
  list-style: none;
}
img {
  width: 100%;
  display: block;
  object-fit: cover;
}

h1,
h2,
h3 {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}
h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: -2px;
  margin-bottom: 30px;
}
h2 {
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 120px 0;
  border-bottom: 1px solid #ddd;
}
.bg-light {
  background-color: var(--bg-light);
}
.txt-red {
  color: var(--accent-red);
}
.center {
  text-align: center;
}
.narrow {
  max-width: 800px;
  margin: 0 auto;
}

/* BUTTONS */
.btn-swiss {
  padding: 10px 20px;
  border: 2px solid var(--text-black);
  background: transparent;
  color: var(--text-black);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.3s;
}
.btn-swiss:hover {
  background: var(--text-black);
  color: var(--bg-white);
}

.btn-swiss-lg {
  padding: 20px 40px;
  background: var(--accent-red);
  color: var(--bg-white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.1rem;
  display: inline-block;
  transition: 0.3s;
  border: none;
}
.btn-swiss-lg:hover {
  background: var(--text-black);
  color: var(--bg-white);
}

/* HEADER */
.swiss-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid var(--text-black);
  z-index: 100;
}
.h-grid {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo-type {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1;
  font-size: 1.1rem;
}

.swiss-nav {
  display: flex;
  gap: 40px;
}
.swiss-nav a {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
}
.swiss-nav a:hover {
  color: var(--accent-red);
  text-decoration: underline;
}

.h-side {
  display: flex;
  align-items: center;
  gap: 20px;
}
.menu-togg {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.ln {
  width: 40px;
  height: 4px;
  background: var(--text-black);
}

/* MOBILE DRAWER */
.swiss-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--accent-red);
  z-index: 200;
  transform: translateX(100%);
  transition: 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.swiss-drawer.active {
  transform: translateX(0);
}
.sd-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  font-weight: 900;
  font-size: 1.5rem;
  color: #fff;
}
#closeMm {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.sd-links a {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}
.sd-links a:hover {
  color: var(--text-black);
}
.sd-high {
  font-size: 1.2rem !important;
  margin-top: 40px;
  text-transform: uppercase;
}

/* HERO */
.hero-swiss {
  padding-top: 90px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  min-height: 80vh;
}
.hero-txt {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  z-index: 2;
}
.hero-img {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.hero-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.meta-label {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-grey);
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.hero-lead {
  font-size: 1.25rem;
  color: var(--text-grey);
  margin-bottom: 50px;
  max-width: 500px;
  font-weight: 300;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 30px;
}
.scroll-hint {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* TICKER */
.swiss-ticker {
  background: var(--text-black);
  color: var(--bg-white);
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
}
.st-wrap {
  animation: scroll 15s linear infinite;
}
.st-wrap span {
  margin: 0 40px;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* CONCEPT */
.text-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.red-line {
  width: 100px;
  height: 10px;
  background: var(--accent-red);
  margin-top: 20px;
}
.tg-right p {
  font-size: 1.1rem;
  color: var(--text-grey);
  margin-bottom: 25px;
  line-height: 1.6;
}
.tg-right .big-p {
  font-size: 1.5rem;
  color: var(--text-black);
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.3;
}

/* SERVICES GRID */
.sec-head {
  margin-bottom: 80px;
  border-top: 5px solid var(--text-black);
  padding-top: 20px;
  display: inline-block;
}
.sec-head p {
  font-size: 1.1rem;
  color: var(--text-grey);
  margin-top: 10px;
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #ddd;
  border: 1px solid #ddd;
}
.srv-card {
  background: var(--bg-white);
  padding: 60px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
.srv-card:hover {
  background: var(--accent-red);
  color: var(--bg-white);
}
.srv-card:hover p,
.srv-card:hover .srv-link,
.srv-card:hover h3 {
  color: var(--bg-white);
}

.srv-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: #eee;
  line-height: 1;
  margin-bottom: 20px;
}
.srv-card:hover .srv-num {
  color: rgba(255, 255, 255, 0.2);
}
.srv-card h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.srv-card p {
  color: var(--text-grey);
  margin-bottom: 40px;
  flex-grow: 1;
}
.srv-link {
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  align-self: flex-start;
}

/* BLOG COLS */
.blog-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.blog-item {
  border-top: 2px solid var(--text-black);
  padding-top: 20px;
  transition: 0.3s;
}
.blog-item:hover .bi-img img {
  filter: grayscale(0);
  transform: scale(1.05);
}
.bi-img {
  height: 250px;
  background: #eee;
  margin-bottom: 20px;
  overflow: hidden;
}
.bi-img img {
  filter: grayscale(100%);
  transition: 0.5s;
}
.bi-txt h4 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}
.bi-txt p {
  font-size: 0.95rem;
  color: var(--text-grey);
}
.bi-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-red);
  display: block;
  margin-bottom: 10px;
}

/* FAQ */
.swiss-acc {
  border-top: 1px solid #ccc;
}
.acc-row {
  border-bottom: 1px solid #ccc;
}
.acc-btn {
  width: 100%;
  text-align: left;
  padding: 25px 0;
  background: none;
  border: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-black);
  cursor: pointer;
  transition: 0.3s;
}
.acc-btn:hover {
  color: var(--accent-red);
}
.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
}
.acc-content p {
  padding-bottom: 30px;
  color: var(--text-grey);
  max-width: 800px;
  font-size: 1.1rem;
}

/* CONTACT SIMPLE */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.cs-info h2 {
  font-size: 4rem;
  color: var(--accent-red);
  margin-bottom: 30px;
}
.cs-info p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}
.cs-details p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.cs-details strong {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 5px;
}

.swiss-form {
  background: var(--bg-light);
  padding: 50px;
  border: 2px solid var(--text-black);
  box-shadow: 15px 15px 0 var(--text-black);
}
.form-row {
  margin-bottom: 25px;
}
.form-row label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.form-row input {
  width: 100%;
  padding: 15px;
  border: 2px solid #ddd;
  background: #fff;
  font-size: 1.1rem;
  font-family: var(--font-body);
  color: var(--text-black);
  transition: 0.3s;
}
.form-row input:focus {
  outline: none;
  border-color: var(--accent-red);
}

.captcha-row input {
  width: 100px;
}

.form-agree {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 30px;
  align-items: start;
}
.form-agree input {
  margin-top: 4px;
}
.form-agree a {
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 20px;
  background: var(--text-black);
  color: #fff;
  font-weight: 900;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
.btn-submit:hover {
  background: var(--accent-red);
}

/* FOOTER */
.swiss-footer {
  background: var(--text-black);
  color: #fff;
  padding: 100px 0 30px;
}
.f-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 80px;
}
.f-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 20px;
}
.f-brand p {
  color: #888;
  max-width: 300px;
}

.f-links h5 {
  color: var(--accent-red);
  margin-bottom: 25px;
  font-family: var(--font-head);
  font-size: 1rem;
}
.f-links a {
  display: block;
  color: #ccc;
  margin-bottom: 12px;
  font-size: 1rem;
}
.f-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.phone-link {
  font-size: 1.5rem !important;
  color: #fff !important;
  font-weight: 700;
  margin: 20px 0;
}

.f-copy {
  border-top: 1px solid #333;
  padding-top: 30px;
  text-align: center;
  color: #555;
  font-size: 0.9rem;
}

/* COOKIE */
.cookie-swiss {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-light);
  border-top: 2px solid var(--text-black);
  padding: 20px;
  display: none;
  z-index: 500;
}
.cb-wrap {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}
.cb-wrap span {
  font-weight: 600;
  font-size: 1.1rem;
}
#acceptCookie {
  padding: 10px 30px;
  background: var(--accent-red);
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}
#acceptCookie:hover {
  background: var(--text-black);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .swiss-nav,
  .h-side .btn-swiss {
    display: none;
  }
  .menu-togg {
    display: flex;
  }

  .hero-layout {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
    gap: 20px;
  }

  .text-grid,
  .srv-grid,
  .contact-split,
  .f-layout {
    grid-template-columns: 1fr;
  }
  .hero-layout {
    border: none;
  }
  .hero-img {
    height: 400px;
    order: -1;
  }
  .blog-cols {
    grid-template-columns: 1fr;
  }
  .srv-card,
  .hero-txt {
    padding: 20px 12px;
  }
  .srv-card h3 {
    font-size: 1.5rem;
  }
  h1 {
    font-size: 3rem;
  }
}

.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 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .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;
  }
}
