/* ===========================
   Shared site styles (styles.css)
   =========================== */

/* RESET + BASE */
* { box-sizing: border-box; margin: 0; padding: 0; }
html,body { height:100%; }
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color:#333;
  background:#fff;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

/* UTILS */
.container { max-width:1200px; margin:0 auto; padding:0 20px; }
.container-inner { max-width:900px; margin:0 auto; }

/* NAVBAR (solid black) */
.nav {
  position:fixed;
  top:0;
  left:0;
  width:100%;


  background:#000;
  z-index:1000;
  box-shadow: 0 1px 0 rgba(255,255,255,0.02);
}
.nav .nav-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1400px;
  margin:0 87px;
  padding:14px 20px;
}
.logo a { color:#fff; font-weight:700; font-size:1.2rem; text-decoration:none; }

/* nav links */
nav { display:block; }
.nav-links { list-style:none; display:flex; gap:24px; align-items:center; }
.nav-links a {
  color:#fff; text-decoration:none; font-weight:600; font-size:0.95rem;
  padding:6px 0; display:inline-block;
}
.nav-links a:hover { opacity:0.75; }
.nav-links a.active { border-bottom:3px solid #fff; padding-bottom:3px; }

/* hamburger */
.hamburger {
  display:none;
  border:0; background:transparent; cursor:pointer;
  padding:6px; margin-left:12px;
}
.hamburger span {
  display:block; width:24px; height:3px; background:#fff; margin:4px 0; border-radius:2px;
}

/* HERO */
.hero {
  height:420px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  position:relative;
  margin-top:60px; /* give space for fixed nav on small screens */
}
.hero::after {
  content:"";
  position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.35));
}
.hero-inner { position:relative; z-index:2; padding:0 20px; max-width:1000px; }
.hero h1 { font-size:46px; letter-spacing:1px; margin-bottom:10px; font-weight:800; }
.lead { font-size:18px; max-width:750px; margin:0 auto; opacity:0.95; }

/* MAIN CONTENT (spacing) */
.page-content { margin-top:20px; padding-bottom:0px; }
.section { padding:48px 0; }



.intro .container-inner p { font-size:1.05rem; color:#444; text-align:center; }

/* CONTENT BLOCKS - alternating layout */
.content-block {
  display:flex;
  align-items:center;
  gap:40px;
  max-width:1200px;
  margin:0 auto;
}
.content-block.reverse { flex-direction:row-reverse; }
.text-box { flex:1; margin-left:10px; margin-right: 10px;}
.text-box h2 { color:#0f3b66; font-size:1.75rem; margin-bottom:14px; font-weight:700; }
.text-box p { margin-bottom:14px; color:#333; }
.text-box ul { margin:8px 0 14px 20px; }
.text-box ul li { margin-bottom:8px; }

/* Image box (rounded rectangles) */
.image-box { flex:1; max-width:480px; }
.image-box img {
  width:100%;
  height:auto;
  display:block;
  border-radius:12px;
  object-fit:cover;
  box-shadow: 0 6px 18px rgba(15,59,102,0.08);
}

/* band (light gray band with centered title) */
.band { background:#f6f6f6; padding:56px 0; }
.band .container { text-align:center; }
.band-title { font-size:1.5rem; color:#222; margin-bottom:10px; font-weight:700; }
.band-sub { color:#444; max-width:900px; margin:0 auto; }

/* integrated section */
.integrated { display:flex; gap:30px; align-items:center; max-width:1200px; margin:0 auto; }
.integrated .image-small { flex:0 0 260px; }
.integrated .image-small img { width:100%; border-radius:10px; }
.integrated .text-box { flex:1; }

/* CTA style */
.cta {
  display:inline-block;
  margin-top:16px;
  background:#007bff;
  color:#fff;
  padding:10px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
}

/* FOOTER */
.site-footer .container { text-align:center; }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .hero h1 { font-size:36px; }
  .content-block { gap:24px; }
}
@media (max-width: 900px) {
  .nav .nav-inner { padding:12px; }


.nav-links {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  flex-direction: column;
  position: absolute;
  right: 14px;
  top: 60px;
  background: rgba(0,0,0,0.95);
  padding: 18px;
  width: 220px;
  gap: 12px;
  border-radius: 6px;
}

.nav-links.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}




  .hamburger { display:inline-block; }
  .content-block { flex-direction:column; }
  .content-block.reverse { flex-direction:column; }
  .hero { height:360px; margin-top:50px; }
  .hero h1 { font-size:28px; }
  .integrated { flex-direction:column; }
  .integrated .image-small { width:100%; max-width:420px; }
}

/* Smooth hide/show animation */
.nav {
    transition: transform 0.35s ease;
}

.nav.nav-hidden {
    transform: translateY(-100%);
}

/* Mobile Navigation Fix */
@media (max-width: 768px) {
    .nav {
        padding: 0 20px;
    }

    .hamburger {
        margin-left: auto;
        margin-right: 0;
    }

    /* Text spacing fix */
    .section,
    .text-box,
    .content-block,
    .hero-inner {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
    .nav .nav-inner {margin: 0 auto;}
}



/* ===============================
   CONTACT PAGE LAYOUT
   =============================== */

.contact-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
}

.contact-info, 
.contact-form-box {
  flex: 1;
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(15, 59, 102, 0.08);
}

.contact-info h2,
.contact-form-box h2 {
  color: #0f3b66;
  margin-bottom: 14px;
  font-size: 1.7rem;
}

.contact-list {
  margin-top: 12px;
  list-style: none;
}

.contact-list li {
  margin-bottom: 10px;
  color: #333;
  font-size: 1rem;
}

/* FORM */
.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f3b66;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  color: #333;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0f3b66;
  box-shadow: 0 0 0 2px rgba(15,59,102,0.12);
}

/* CTA Button (inherits shared .cta) */
.contact-form button.cta {
  margin-top: 10px;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}


/* FOOTER */
.site-footer {
  background: #0d2a45;
  padding: 40px 20px;
  color: #e9eef3;
  margin-top: 0px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #e9eef3;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.6;
}

@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}


/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 42, 69, 0.97);
    color: white;
    padding: 25px 20px;
    z-index: 99999;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
    backdrop-filter: blur(6px);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: auto;
}

.cookie-buttons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 22px;
    border-radius: 40px;
    cursor: pointer;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.cookie-btn.accept {
    background: #03A9F4;
    color: white;
}

.cookie-btn.accept:hover {
    background: #0288D1;
}

.cookie-btn.decline {
    background: rgba(255,255,255,0.15);
    color: white;
}

.cookie-btn.decline:hover {
    background: rgba(255,255,255,0.25);
}

.cookie-link {
    display: inline-block;
    margin-top: 10px;
    color: #9ccdf3;
    text-decoration: underline;
    font-size: 0.85rem;
}

.cookie-link:hover {
    opacity: 0.7;
}

/* Hidden state until JS checks */
.hidden {
    display: none;
}
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 20px;
}

.lang-switcher a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.lang-switcher span {
    color: white;
    opacity: 0.6;
}

/* Mobile: put language switcher inside hamburger menu */
@media (max-width: 900px) {
    .lang-switcher {
        position: absolute;
        right: 70px;
        top: 22px;
    }
    .nav.open .lang-switcher {
        right: 20px;
        top: auto;
        bottom: 20px;
    }
}
/* FULL light grey background for the entire section */
.contact-cta-section {
    background: #afafaf;       /* Light grey */
    padding: 60px 0;
}

/* container layout stays identical to the contact form version */
.contact-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* LEFT COLUMN (unchanged) */
.contact-info {
    flex: 1;
}

/* RIGHT CTA BOX */
.contact-cta-box {
    flex: 1;
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-cta-box h2 {
    margin-bottom: 15px;
    font-size: 24px;
}

.contact-cta-box p {
    font-size: 16px;
    line-height: 1.5;
}

/* CTA BUTTON */
.contact-cta-btn {
    display: inline-block;
    background: #03A9F4;
    padding: 14px 28px;
    color: white;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease;
}

.contact-cta-btn:hover {
    background: #0288D1;
}

/* MOBILE */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }
}
/* Remove spacing below this section */
.contact-cta-section {
    background: #f2f2f2;
    padding: 60px 0;
    margin-bottom: 0 !important;
}

/* Ensure container inside doesn't create extra space */
.contact-cta-section .contact-wrapper:last-child,
.contact-cta-section .contact-info:last-child,
.contact-cta-section .contact-cta-box:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}



/* Remove last paragraph bottom margin to prevent gaps */
.contact-cta-section p:last-child {
    margin-bottom: 0 !important;
}
