@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");

:root {
  --primary-color: #1a1a1a;
  --text-dark: #0f172a;
  --text-light: #475569;
  --extra-light: #f2f2f2;
  --white: #ffffff;
  --max-width: 1200px;
  --gradient: linear-gradient(to bottom, #2a2a2e, #1a1a1a);

}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__subheader {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1px;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--white);
  background-color: #1a1a1a;
  white-space: nowrap;
  border-radius: 4px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: #3c4286;
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Mulish", sans-serif;
}

header {
  position: relative;
}

header::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
  z-index: -1;
}

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
}

.nav__logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--primary-color);
  transition: 0.5s;
  z-index: -1;
  transform: translateY(-100%);
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  font-weight: 700;
  color: var(--white);
}

.nav__links .btn {
  padding: 0;
  background-color: transparent;
}

.nav__btns {
  display: none;
}

.header__container {
  display: grid;
  gap: 2rem 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.header__container::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background: var(--gradient);
  border-radius: 1rem 1rem 0.5rem 0.5rem;
  z-index: -1;
}

.header__content h1 {
  position: relative;
  isolation: isolate;
  margin-bottom: 2rem;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 3.25rem;
}

.header__content h1::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1rem;
  height: 4px;
  width: 2rem;
  background-color: var(--primary-color);
}

.header__content p {
  margin-bottom: 2rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.75rem;
}

.header__links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__links img {
  max-width: 125px;
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.steps__container :is(.section__subheader, .section__header) {
  text-align: center;
}

.steps__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

.steps__card {
  text-align: center;
}

.steps__card span {
  display: inline-block;
  width: 70px;
  height: 70px;
  background: url("assets/paw.png") no-repeat center center / contain;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}


.steps__card:hover span {
  transform: scale(1.1) rotate(-5deg);
  filter: brightness(1.2);
}

.steps__card h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

.steps__card p {
  color: var(--text-light);
  line-height: 1.75rem;
}

.service__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.service__list {
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}

.service__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service__list li span {
  padding: 12px 15px;
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: var(--extra-light);
  border: 4px solid var(--white);
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.service__list h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.service__list p {
  color: var(--text-light);
  line-height: 1.75rem;
}

.services__section {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(to bottom right, #f4f4f4, #ffffff);
  position: relative;
}

.section__header {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #111827;
}

.services__container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  display: grid;
  place-items: center;
}

.center__image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 10;
}

.services__section {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom right, #ffffff, #f9fafb);
  text-align: center;
}

.section__header {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #111827;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  max-width: 1200px;
  margin: auto;
}

.services__section {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom right, #ffffff, #f9fafb);
  text-align: center;
}

.section__header {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #111827;
}

.services__layout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.services__column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service__card {
  background: #ffffff;
  color: #1f2937;
  padding: 1.2rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  font-weight: 600;
  width: 240px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover Effect */
.service__card:hover {
  background-color: #1a1a1a;
  color: #ffffff;
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.center__image img {
  width: 250px;
  height: auto;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 900px) {
  .services__layout {
    flex-direction: column;
    align-items: center;
  }

  .services__column {
    align-items: center;
  }

  .service__card {
    text-align: center;
    width: 100%;
    max-width: 300px;
  }

  .center__image img {
    margin: 2rem 0;
  }
}


.download__container {
  overflow: hidden;
}

.download__grid {
  display: grid;
  padding: 5rem 1rem;
  background: var(--gradient);
  border-radius: 1rem;
}

.download__image {
  display: none;
}

.download__content .section__header {
  margin-bottom: 1rem;
  color: var(--white);
}

.download__content p {
  margin-bottom: 2rem;
  color: var(--extra-light);
  line-height: 1.75rem;
}

.download__links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.download__links img {
  max-width: 125px;
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}







@media (width > 540px) {
  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  header::before {
    height: calc(100% - 4rem);
  }

  nav {
    position: static;
    padding-block: 2rem;
    padding-inline: 1rem;
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__logo a {
    font-weight: 800;
    color: var(--text-dark);
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    width: fit-content;
    flex-direction: row;
    background-color: transparent;
    transform: none;
  }

  .nav__links a {
    padding-block: 5px;
    color: var(--text-dark);
    border-bottom: 2px solid transparent;
  }

  .nav__links a:hover {
    border-color: var(--primary-color);
  }

  .nav__links__btn {
    display: none;
  }

  .nav__btns {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
  }

  .nav__btns .btn__primary {
    color: var(--text-dark);
    background-color: transparent;
  }

  .header__container {
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
  }

  .header__container::before {
    right: 5rem;
    width: calc(50% - 4rem);
    height: 100%;
  }

  .header__image {
    grid-column: 3/6;
  }

  .header__content {
    grid-area: 1/1/2/3;
  }

  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .experience__content img {
    opacity: 1;
  }

  .experience__card:nth-child(1) {
    left: 5rem;
  }

  .experience__card:nth-child(3) {
    left: 5rem;
  }

  .experience__card:nth-child(4) {
    right: 5rem;
  }

  .experience__card:nth-child(6) {
    right: 5rem;
  }

  .download__grid {
    margin-block: 4rem;
    padding-inline: 2rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .download__image {
    display: flex;
    position: relative;
    isolation: isolate;
  }

  .download__image img {
    position: absolute;
    max-width: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
  }

  .ai-wolf-footer {
  background: linear-gradient(135deg, #0b0b0b, #1c1f25);
  color: #f0f0f0;
  font-family: 'Orbitron', sans-serif;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.ai-wolf-footer::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02) 1px, transparent 1px, transparent 2px);
  animation: scanlines 3s linear infinite;
  z-index: 0;
}

@keyframes scanlines {
  0% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}

.logo-section {
  flex: 1 1 250px;
}

.logo-section h2 {
  font-size: 2rem;
  color: #ff3c00;
}

.logo-section .wolf-logo {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 10px #ff3c00);
}

.footer-links {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.footer-links a {
  color: #f0f0f0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #737fed;
  text-shadow: 0 0 5px #ff3c00;
}

.footer-bottom {
  flex: 1 1 100%;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #888;
}
}









.contact-section {
  padding: 60px 20px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1100px;
  width: 100%;
}

/* Contact Form Styles */
.contact-form {
  padding-top: 80px; /* was 30px before */
  position: relative;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  color: #111;
  overflow: hidden;
  z-index: 1;
}

.contact-form h2 {
  color: #000;
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  background: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
  color: #000;
  font-size: 14px;
}

.contact-form button {
  background: #1a1a1a;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.contact-form button i {
  font-size: 16px;
}

.contact-form button:hover {
  background: #333;
}

/* Paw background behind form */
.form-bg-paw {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: url('assets/velka-paw.png') no-repeat center center / contain;
  opacity: 0.7;
  filter: drop-shadow(0 0 10px rgba(7, 7, 7, 0.6)) 
          drop-shadow(0 0 20px rgba(76, 77, 77, 0.4));
  transform: rotate(-10deg);
  animation: pulseGlow 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}


@keyframes glowPaw {
  0% { opacity: 0.4; transform: rotate(-20deg) scale(1); }
  100% { opacity: 0.25; transform: rotate(-20deg) scale(1.05); }
}

/* Visit Card */
.visit-card {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit-card img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(81, 81, 81, 0.4);
  transition: transform 0.4s ease;
}

.visit-card img:hover {
  transform: scale(1.05) rotateY(5deg);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

  .step-number {
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-color);
  background-color: var(--extra-light);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin-bottom: 1rem;
  user-select: none;
  transition: background-color 0.3s, color 0.3s;
}

.steps__card:hover .step-number {
  background-color: var(--primary-color);
  color: var(--white);
}



.service__icon {
  font-size: 2.5rem;
  color: #4f46e5;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  margin-right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
}

.service__icon:hover {
  color: #4f46e5;
  transform: scale(1.2);
}








/* Chatbot Styles */
#chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-family: "Segoe UI", sans-serif;
  z-index: 1000;
}

#chat-toggle {
  background-color: #1a1a1a;
  color: white;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

#chat-toggle:hover {
  transform: scale(1.1);
}

#chat-widget {
  display: none;
  width: 320px;
  height: 450px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  flex-direction: column;
  overflow: hidden;
  margin-top: 10px;
}

.chat-header {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  color: white;
  padding: 12px;
  font-weight: bold;
}

.chat-header img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}

 #chat-messages {
    height: 300px;
    width: 320px;
    border: 1px solid #ccc;
    padding: 10px;
    overflow-y: auto;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
  }

.chat-input {
  display: flex;
  padding: 8px;
  border-top: 1px solid #ddd;
}

.chat-input input {
  flex: 1;
  padding: 8px;
  border: none;
  outline: none;
}

.chat-input button {
  background: #1a1a1a;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
}
.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
  color: white;
  padding: 12px;
  font-weight: bold;
}

.chat-header img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}

.chat-header span {
  font-size: 16px;
}

#chat-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.bubble {
  margin: 8px 0;
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 80%;
  line-height: 1.4;
}

.bubble.user {
  background-color: #e0e7ff;
  color: #111827;
  text-align: right;
  border-top-right-radius: 0;
  margin-left: auto;
}

.bubble.bot {
  background-color: #f3f4f6;
  color: #111827;
  border-top-left-radius: 0;
  margin-right: auto;
}





.section-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

/* Grid of Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  width: 100%;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  color: #fff;
  text-align: left;
  transition: all 0.3s ease;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ddd;
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}






/* Services Section Container */
.features-section {
  padding: 60px 20px;
  text-align: center;
}

.features-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.features-wrapper {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  font-size: 2.5rem;
  color: #4a90e2;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.95rem;
  color: #555;
}

.features-subtext {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.cta-container {
  margin-top: 60px;
  background: #0d0d0d;
  padding: 40px 20px;
  border-radius: 16px;
  color: #fff;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-container h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background: #fff;
  color: #171717;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #e0eaff;
}

.smart-footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

.footer-brand h2 {
  font-size: 1.6rem;
  margin: 0 0 8px;
  color: #00e0ff;
}

.footer-brand p {
  color: #efe7e7;
  max-width: 300px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-links a {
  color: #fdfcfc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00e0ff;
}

.footer-socials {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.footer-socials a {
  color: #f6f5f5;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #00e0ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  color: #777;
}

/* Desktop Layout */
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
  }

  .footer-brand {
    max-width: 300px;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-socials {
    justify-content: flex-end;
  }
}




/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 12px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 999;
}

.language-switcher a {
  color: #000; /* Black text on desktop */
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.language-switcher a:hover {
  background: #df306b;
  color: #fff;
}

/* Responsive: white text and centered */
@media (max-width: 768px) {
  .language-switcher {
    position: relative;
    top: auto;
    right: auto;
    margin: 10px auto;
    justify-content: center;
  }

  .language-switcher a {
    color: #fff;  /* White on mobile */
    font-size: 16px;
  }
}

/* Hide Email Us buttons */
#email-btn,
.btn.btn__secondary {
  display: none !important;
}
