@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  height: 100%;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

a:not([class]):hover {
  text-decoration-line: underline;
}

a {
  text-decoration: none;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

:target {
  scroll-margin-block: 5ex;
}

/* =================== Font & Colors ============ */

body {
  font-family: "Poppins", sans-serif;
  color: #1a1a2e;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  width: 100%;
  overflow-x: hidden;
  line-height: normal;
  background-color: #f0f4f8;
  height: 100%;
}

:root {
  --primary-color: #16213e;
  --secondary-color: #0f3460;
  --accent-color: #533483;
  --light-bg: #e94560;
  --white: #ffffff;
  --black: #1a1a2e;
  --text-color: #2c3e50;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.ocean-blue-theme {
  --primary-color: #16213e;
  --secondary-color: #0f3460;
  --accent-color: #533483;
  --light-bg: #e94560;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.azure-container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f0f4f8 0%, #d4e4f7 100%);
}

.main-content {
  position: relative;
  flex: 1 0 auto;
}

.container-wrapper {
  max-width: 1200px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}

/* ================== HEADER START ================== */

.navy-header {
  position: relative;
  z-index: 11;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
  background: var(--gradient-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  width: 100%;
}

.logo-text {
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: normal;
  transition: transform 0.3s ease;
}

.logo-text:hover {
  transform: scale(1.05);
}

.main-navigation {
  display: block;
}

.nav-list {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-item {
  list-style: none;
}

.nav-link {
  color: var(--white);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 8px;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.burger-menu {
  display: none;
  gap: 5px;
  max-width: 40px;
  width: 100%;
  cursor: pointer;
  flex-wrap: wrap;
  flex-direction: column;
}

.burger-menu.active {
  display: flex;
}

.burger-menu span {
  width: 30px;
  height: 4px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 1100px) {
  .navy-header {
    height: 110px;
  }

  .header-content {
    padding: 25px 0;
  }

  .burger-menu {
    display: flex;
  }

  .main-navigation {
    display: none;
  }
}

@media (max-width: 568px) {
  .navy-header {
    height: 80px;
  }

  .header-content {
    padding: 15px 0;
  }

  .logo-text {
    font-size: 28px;
  }
}

@media (max-width: 1100px) {
  #mobileMenu {
    position: fixed;
    top: -100%;
    right: 0;
    width: 100%;
    height: fit-content;
    background: var(--white);
    padding: 50px 0px;
    display: block;
    transition: 0.5s ease-in-out;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  #mobileMenu.active {
    top: 110px;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .nav-link {
    color: var(--primary-color);
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
  }
}

@media (max-width: 568px) {
  #mobileMenu.active {
    top: 80px;
  }
}

.lock-scroll {
  overflow: hidden;
}

/* ================== HEADER END ================== */

/* ================== SLIDER START ================== */

.slider-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f0f4f8 0%, #e8f0f5 100%);
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background: var(--white);
}

.slide {
  display: none;
  width: 100%;
  padding: 50px;
  animation: fadeIn 0.6s ease-in-out;
}

.slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-content {
  display: flex;
  align-items: center;
  gap: 50px;
  min-height: 500px;
}

.slide-image-left {
  flex: 1;
  max-width: 450px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
}

.slide-image-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.slide-text-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
}

.slide-title {
  color: var(--primary-color);
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.slide-subtitle {
  color: var(--accent-color);
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.slide-description {
  color: var(--text-color);
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 500px;
}

.form-input {
  width: 100%;
  padding: 18px 25px;
  outline: none;
  border: 2px solid rgba(22, 33, 62, 0.3);
  border-radius: 15px;
  background: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(83, 52, 131, 0.1);
}

.form-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 35px;
  outline: none;
  border: none;
  border-radius: 15px;
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.slider-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.slider-dots {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(22, 33, 62, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--accent-color);
  width: 16px;
  height: 16px;
}

.dot:hover {
  background: var(--accent-color);
  transform: scale(1.2);
}

@media (max-width: 968px) {
  .slide-content {
    flex-direction: column;
    gap: 30px;
    min-height: auto;
  }

  .slide-image-left {
    max-width: 100%;
    order: 1;
  }

  .slide-text-right {
    order: 2;
  }

  .slide-title {
    font-size: 36px;
    text-align: center;
  }

  .slide-subtitle {
    font-size: 28px;
    text-align: center;
  }

  .slide-description {
    font-size: 18px;
    text-align: center;
  }

  .contact-form {
    max-width: 100%;
  }
}

@media (max-width: 568px) {
  .slider-section {
    padding: 30px 0;
    min-height: calc(100vh - 80px);
  }

  .slide {
    padding: 30px 20px;
  }

  .slide-content {
    gap: 25px;
  }

  .slide-title {
    font-size: 28px;
  }

  .slide-subtitle {
    font-size: 24px;
  }

  .slide-description {
    font-size: 16px;
  }

  .slide-image-left img {
    min-height: 250px;
  }

  .slider-controls {
    margin-top: 20px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

/* ================== SLIDER END ================== */

/* ================== FOOTER START ================== */

.footer-section {
  flex-shrink: 0;
  background: var(--gradient-primary);
  padding: 40px 0;
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  padding: 30px 0;
}

.footer-text-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-text {
  color: var(--white);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
}

.footer-link {
  color: var(--white);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 8px;
}

.footer-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-text {
    font-size: 16px;
  }

  .footer-link {
    font-size: 16px;
  }
}

@media (max-width: 568px) {
  .footer-section {
    padding: 25px 0;
  }

  .footer-content {
    padding: 20px 0;
    gap: 20px;
  }

  .footer-text-group {
    flex-direction: column;
    gap: 5px;
  }

  .footer-text {
    font-size: 14px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .footer-link {
    font-size: 14px;
  }
}

/* ================== FOOTER END ================== */

/* ================== COOKIES START ================== */

#cookie-notification {
  display: none;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 20px;
  left: 50%;
  width: 100%;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 20px;
  background-color: var(--primary-color);
  border-radius: 15px;
  box-shadow: 2px 3px 20px rgba(0, 0, 0, 0.3);
  gap: 20px;
  z-index: 999999;
  font-size: 16px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
}

#cookie-notification.show {
  display: flex;
}

#cookie-notification div {
  display: inline-block;
  flex: 1;
}

#cookie-notification a {
  color: var(--light-bg);
  text-decoration: underline;
}

.cookie-accept-btn {
  padding: 12px 25px;
  border-radius: 10px;
  background: var(--gradient-secondary);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.cookie-accept-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

@media (max-width: 768px) {
  #cookie-notification {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    font-size: 14px;
  }

  .cookie-accept-btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ================== COOKIES END ================== */

/* ================== CONTENT PAGES START ================== */

.content-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f0f4f8 0%, #e8f0f5 100%);
  min-height: calc(100vh - 140px);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px 0;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.content-title {
  color: var(--primary-color);
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.content-text {
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

.content-text p {
  margin-bottom: 20px;
}

.content-text ul {
  display: flex;
  flex-direction: column;
  list-style: disc;
  padding-left: 30px;
  gap: 10px;
  margin: 20px 0;
}

.content-text li {
  margin-bottom: 10px;
}

.content-text a {
  color: var(--accent-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.content-text a:hover {
  color: var(--light-bg);
}

.content-text address {
  font-style: normal;
  margin: 20px 0;
}

.content-text h3 {
  color: var(--accent-color);
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin: 30px 0 15px 0;
}

@media (max-width: 768px) {
  .content-section {
    padding: 40px 0;
    min-height: calc(100vh - 110px);
  }

  .content-wrapper {
    gap: 30px;
    padding: 30px 0;
  }

  .content-block {
    padding: 25px;
    gap: 20px;
  }

  .content-title {
    font-size: 32px;
  }

  .content-text {
    font-size: 16px;
  }

  .content-text h3 {
    font-size: 24px;
  }
}

@media (max-width: 568px) {
  .content-section {
    padding: 30px 0;
    min-height: calc(100vh - 80px);
  }

  .content-wrapper {
    gap: 25px;
    padding: 20px 0;
  }

  .content-block {
    padding: 20px;
    gap: 15px;
  }

  .content-title {
    font-size: 26px;
  }

  .content-text {
    font-size: 15px;
  }

  .content-text h3 {
    font-size: 20px;
  }
}

/* ================== CONTACTS PAGE START ================== */

.contacts-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f0f4f8 0%, #e8f0f5 100%);
  min-height: calc(100vh - 140px);
}

.contacts-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding: 50px 0;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}

.contacts-title {
  color: var(--primary-color);
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.contacts-text {
  display: flex;
  flex-direction: column;
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  gap: 15px;
}

.contacts-text p {
  margin: 0;
}

.contacts-text a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.contacts-text a:hover {
  color: var(--light-bg);
  text-decoration: underline;
}

.contacts-map {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.contacts-map iframe {
  max-width: 100%;
  width: 100%;
  height: 450px;
  border: none;
}

@media (max-width: 968px) {
  .contacts-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .contacts-info {
    width: 100%;
    gap: 30px;
  }

  .contacts-title {
    font-size: 36px;
    text-align: center;
  }

  .contacts-text {
    font-size: 18px;
    text-align: center;
  }

  .contacts-map {
    max-width: 100%;
  }

  .contacts-map iframe {
    height: 400px;
  }
}

@media (max-width: 568px) {
  .contacts-section {
    padding: 30px 0;
    min-height: calc(100vh - 80px);
  }

  .contacts-wrapper {
    gap: 30px;
    padding: 30px 0;
  }

  .contacts-info {
    gap: 25px;
  }

  .contacts-title {
    font-size: 28px;
  }

  .contacts-text {
    font-size: 16px;
  }

  .contacts-map iframe {
    height: 300px;
  }
}

/* ================== CONTACTS PAGE END ================== */

/* ================== CONTENT PAGES END ================== */
