:root {
  --max-width: 1200px;
  --container-pad: 1rem;
  --bg-dark: #0b0f13;
  --panel: rgba(0,0,0,0.45);
  --muted-text: #e9edf1;
  --white-weak: rgba(255,255,255,0.12);
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--muted-text);

  /* Background fix */
  background-color: #000; /* fallback black background */
  background-image: url('5.avif');
  background-position: center center; /* center horizontally and vertically */
  background-size: cover;           /* always cover the visible area */
  background-repeat: no-repeat;     /* prevent repetition */
  background-attachment: fixed;     /* keep wallpaper fixed when scrolling */
}





.container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.site-header {
  position: fixed;
  left: 0; right: 0; top: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 80px;
}

.brand { display:flex; align-items:center; gap:.5rem; color:#fff; text-decoration:none; font-weight:700; text-transform:uppercase; font-size:1.05rem; }
.brand-icon { width:28px; height:28px; display:inline-block; }

.nav ul { display:flex; gap:1rem; list-style:none; margin:0; padding:0; align-items:center; }
.nav a { color:inherit; text-decoration:none; padding:.5rem .75rem; display:flex; align-items:center; text-transform:uppercase; font-size:.95rem; }
.nav .emergency-btn { background: rgba(255,77,79,0.22); color: #fff; border-radius:8px; padding:.5rem .75rem; }
.lang-switch { display:flex; align-items:center; gap:.35rem; white-space:nowrap; font-size:.95rem; }
.lang-switch .sep { color: rgba(255,255,255,0.35); padding: 0 .25rem; }

.hero {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
/*  background-image: url('1920.avif'); */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-overlay { position:absolute; inset:0; background: linear-gradient(180deg, rgba(2,6,11,0.65), rgba(2,6,11,0.75)); }
.hero-content { position:relative; z-index: 2; padding: 5rem 1rem; }
.hero h1 { margin:0 0 .6rem; color: #fff; font-size:2.1rem; }
.hero p { margin:0 0 1rem; color: rgba(255,255,255,0.9); }

.btn, .button-more { display:inline-block; padding:.6rem 1rem; border-radius:8px; background: rgba(255,255,255,0.12); color:#fff; text-decoration:none; border:1px solid rgba(255,255,255,0.08); }
.btn:hover, .button-more:hover { background: rgba(255,255,255,0.16); }

.chat-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(79,77,255,0.22);
  color: #fff; 
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem; 
  z-index: 100;
  transition: background 0.2s ease, transform 0.1s ease;
}

.chat-btn:hover {
  background: rgba(79,77,255,0.32);
  transform: translateY(-1px);
}

#chat-box {
  display: none;
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 320px;
  max-width: 90%;
  height: 400px;
  background: rgba(11,15,19,0.92); 
  color: #e9edf1;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  flex-direction: column;
  overflow: hidden;
  z-index: 101;
  font-family: sans-serif;
  display: flex;
}

#chat-box .chat-header {
  padding: 0.75rem 1rem;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
}

#chat-box #chat-close {
  cursor: pointer;
  font-size: 1.2rem;
  color: #fff;
  background: none;
  border: none;
}

#chat-box .chat-messages {
  flex: 1;
  padding: 0.75rem 1rem;
  overflow-y: auto;
  font-size: 0.95rem;
  line-height: 1.4;
}

#chat-box .chat-input-area {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.25);
}

#chat-box #chat-input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
}

#chat-box #chat-input:focus {
  outline: none;
}

#chat-box .chat-send-btn {
  background: rgba(0,0,0,0.22);
  color: #fff;
  border: none;
  padding: 0 0.75rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

#chat-box .chat-send-btn:hover {
  background: rgba(0,0,0,0.32);
}




.chat-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(0,0,0,0.22);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 100;
  transition: background 0.2s ease, transform 0.1s ease;
}

.chat-btn:hover {
  background: rgba(0,0,0,0.32);
  transform: translateY(-1px);
}

.chat-btn svg {
  display: inline-block;
  vertical-align: middle;
}

#chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border: none;
  border-radius: 10px;
  padding: .55rem .8rem;
  display:flex; align-items:center; gap:.5rem;
  background: var(--white-weak); color:#fff; cursor:pointer;
  z-index: 9999;
  font-size: 0.98rem;
}
#chat-btn .emoji { font-size:18px; line-height:1; }

#chat-box {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 320px;
  height: 420px;
  background: rgba(20,20,20,0.86);
  color: #fff;
  border-radius: 12px;
  display: none;
  flex-direction: column;
  z-index: 9998;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 28px rgba(0,0,0,0.6);
  overflow: hidden;
}
.chat-header { background: rgba(18,18,18,0.94); padding:.6rem .8rem; display:flex; align-items:center; justify-content:space-between; font-weight:700; }
.chat-messages { padding: .75rem; flex:1; overflow:auto; font-size:.95rem; color:#e9edf1; }
#chat-input { border:none; background: rgba(255,255,255,0.03); color:#fff; padding:.6rem .8rem; margin:.6rem; border-radius:8px; outline:none; }

.section { padding: 2.5rem 0; }
.services-wrapper { display:flex; flex-direction:column; gap:1.75rem; width:100%; }

@media (min-width: 900px) {
  .services-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.75rem;
  }

  .service-box {
    flex: 1 1 calc(50% - 0.875rem);
  }
}

.service-box {
  background: var(--panel);
  padding: 2.0rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 18px rgba(255,255,255,0.04), inset 0 0 10px rgba(0,0,0,0.35);
  min-height: 180px;
  display:flex;
  flex-direction:column;
  gap: .6rem;
  box-sizing: border-box;
  position: relative; 
  padding-bottom: 70px;
}

@media (max-width: 900px) {
  .free-consult-btn {
    position: static;
    display: block;
    width: 100%;
    margin-top: 1rem;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 10px;
  }

  .service-box {
    padding-bottom: 1.25rem;
  }
}

.service-box .consult-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 10px 16px;
    background: #ffffff22;
    border: 1px solid #ffffff44;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    color: white;
    backdrop-filter: blur(4px);
}

.service-box .consult-btn:hover,
.service-box .consult-brn:focus {
  background: rgba(255,255,255,0.10);
/*  transform: translateY(-3px); */
  outline: none;
}


@media (max-width: 600px) {
    .service-box {
        padding-bottom: 80px;
    }

    .service-box .consult-btn {
        bottom: 12px;
        right: 12px;
    }
}



.service-title { display:flex; align-items:center; gap:.6rem; font-size:1.85rem; color:#fff; font-weight:600; text-transform:uppercase; letter-spacing:.4px; margin:0; }
.service-icon svg { width:24px; height:24px; display:block; }
.service-description { margin:0; color: #e9edf1; font-size:1rem; line-height:1.6; font-weight:400; }
.site-footer { margin-top: 3rem; padding: 2rem 0; background: rgba(0,0,0,0.45); border-top:1px solid rgba(255,255,255,0.05); color: #e9edf1; text-align:center; }

@media (max-width: 900px) {
  .service-title { font-size: 1.4rem; }
  .brand-icon { width:24px; height:24px; }
  .header-inner { padding: 0 .75rem; }
  #chat-box { right: 12px; left: auto; width: 90%; height: 360px; }
}

.nav a:hover {
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  transition: background 0.2s ease;
}

.nav .emergency-btn:hover {
  background: rgba(255,77,79,0.32);
  transition: background 0.2s ease;
}

.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0;
  background: rgba(0,0,0,0.45);
  border-top:1px solid rgba(255,255,255,0.05);
  text-align:center;
  color: #e9edf1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.site-footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.site-footer .footer-links a {
  color: #fff;
  text-decoration: none;
  padding: .3rem .5rem;
  transition: background 0.2s ease;
  border-radius: 6px;
}

.site-footer .footer-links a:hover {
  background: rgba(255,255,255,0.12);
}

.footer-social {
  display: flex;
  justify-content: left;
  gap: 1rem;
}

.footer-social a svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  transition: fill 0.2s ease;
}

.footer-social a:hover svg {
  fill: rgba(255,255,255,0.8);
}

.footer-links + .footer-social {
  margin-top: 0.5rem;
}

.nav-toggle {
  display: none;
  background: rgba(255,255,255,0.22);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .5rem .75rem;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(255,255,255,0.32);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav {
    position: fixed;
    top: 80px; 
    left: 0;
    right: 0;
    background: rgba(11,15,19,0.95);
    flex-direction: column;
    align-items: flex-start;
    display: none; 
    padding: 1rem;
    gap: 1rem;
    z-index: 50;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .nav.open {
    display: flex;
  }
  .nav ul {
    flex-direction: column;
    width: 100%;
  }
  .nav li { width: 100%; }
  .nav a, .nav .emergency-btn { width: 100%; }
}

.nav-item.dropdown {
  position: relative;
  display: inline-block;
}

.nav-item.dropdown .dropdown-toggle {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.nav-item.dropdown .dropdown-toggle:hover {
  background: rgba(255,255,255,0.2);
}

.nav-item.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(11,15,19,0.95);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  list-style: none;
  padding: 0.25rem 0;
  margin: 0;
  min-width: 80px;
  z-index: 100;
}

.nav-item.dropdown .dropdown-menu li a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.nav-item.dropdown .dropdown-menu li a:hover {
  background: rgba(255,255,255,0.15);
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.emergency-box {
  background: rgba(255,77,79,0.45);
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(255,255,255,0.05), 0 0 16px rgba(255,255,255,0.05);
  padding: 2.5rem 1.5rem;
  margin: 2rem auto;
  max-width: 100%;
}

.emergency-box .service-title {
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.emergency-box .service-description {
  color: #e9edf1;
  font-size: 1rem;
  line-height: 1.6;
}

.emergency-box .highlight {
  font-weight: bold;
  text-decoration: underline;
}

.contact-box {
  background: rgba(0,0,0,1.0);
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(255,255,255,0.05), 0 0 16px rgba(255,255,255,0.05);
  margin: 2rem auto;
  padding: 2.5rem 1.5rem;
  max-width: 100%;
}

.contact-box .service-title {
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.contact-box p,
.contact-box a {
  color: #e9edf1;
  font-size: 1rem;
  line-height: 1.6;
  text-decoration: none;
}

.contact-box .footer-social {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}

/* Sign In button - make white like other buttons */
.header-inner .btn-signin {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Sign Up button - green hue similar level as other buttons */
.header-inner .btn-signup {
  background: rgba(76,175,80,0.22); /* green hue */
  color: #fff;
  border: 1px solid rgba(76,175,80,0.44);
}

.header-inner .btn-signup:hover {
  background: rgba(76,175,80,0.32);
}










/* arctic 2 */

.hero {
  background: rgba(0,0,0,0.5);
min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position:absolute;
  inset:0;
/*  background: transparent; */
  background: linear-gradient(180deg, rgba(2,6,11,0.45), rgba(2,6,11,0.6));
}
.hero-content {
  position: relative;
  z-index:2;
  padding: 5rem 1rem;
  color: #fff;
}

/* Keep rest of whitehat styles for nav, chat, dropdowns */


form#def-form {
display: flex;
flex-direction: column;
align-items: left;
gap: 0.75rem;
margin-top: 1rem;
}
form#def-form input[type="text"] {
padding: 0.75rem;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 1rem;
width: 90%;
max-width: 300px;
position: relative; z-index: 1;
}
form#def-form input[type="password"] {
padding: 0.75rem;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 1rem;
width: 90%;
max-width: 300px;
position: relative; z-index: 1;
}
form#def-form button {
display: inline-block;
padding:.6rem 1rem;
border-radius:8px;
border: 1px solid rgba(255,255,255,0.44);
background: rgba(255, 255, 255, 0.2);
color: #fff;
font-size: 1rem;
/* margin-right: 1rem; */
text-decoration: none;
cursor: pointer;
/* transition: background 0.3s ease;
position: relative; z-index: 1;
*/
width: 100%;
max-width: 300px;
}
form#def-form button:hover {
background: rgba(255, 255, 255, 0.35);
}

.btn-signup {
  background: rgba(76,175,80,0.22); /* green hue */
  color: #fff;
  border: 1px solid rgba(76,175,80,0.44);
}

.btn-signup:hover {
  background: rgba(76,175,80,0.32);
}

