@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Lora:wght@400;500;600;700&family=Noto+Sans+Devanagari:wght@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;
}

.wrap {
  word-wrap: break-word;
}

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

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

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

/* =================== Font & Base Styles ============ */

body {
  font-family: "Roboto", "Lora", "Noto Sans Devanagari", sans-serif;
  color: #0f172a;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  width: 100%;
  overflow-x: hidden;
  line-height: 1.7;
  background-color: #f1f5f9;
  height: 100%;
}

:root {
  --primary-indigo: #6366f1;
  --secondary-indigo: #818cf8;
  --accent-amber: #f59e0b;
  --dark-indigo: #4338ca;
  --light-indigo: #c7d2fe;
  --text-dark: #0f172a;
  --text-medium: #475569;
  --text-light: #94a3b8;
  --bg-light: #f1f5f9;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --shadow-sm: 0 1px 3px rgba(99, 102, 241, 0.12), 0 1px 2px rgba(99, 102, 241, 0.24);
  --shadow-md: 0 3px 6px rgba(99, 102, 241, 0.15), 0 2px 4px rgba(99, 102, 241, 0.12);
  --shadow-lg: 0 10px 20px rgba(99, 102, 241, 0.19), 0 6px 6px rgba(99, 102, 241, 0.23);
}

.energy-blue-theme {
  --primary-indigo: #6366f1;
  --secondary-indigo: #818cf8;
  --accent-amber: #f59e0b;
}

.container-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  max-width: 1280px;
  padding: 0 24px;
  width: 100%;
  margin: 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #1e293b 0%, #334155 100%);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-bottom: 2px solid var(--primary-indigo);
}

.header-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 0;
  gap: 60px;
  position: relative;
}

.site-logo {
  color: var(--bg-white);
  font-family: "Lora", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.site-logo:hover {
  opacity: 0.85;
  transform: translateX(3px);
}

.navigation-menu {
  display: flex;
  flex: 1;
}

.menu-list {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: flex-start;
  margin-left: 0;
  padding-left: 0;
}

.menu-element {
  list-style: none;
}

.menu-link {
  color: #e2e8f0;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  transition: all 0.25s ease;
  position: relative;
  padding: 6px 12px;
  letter-spacing: 0.3px;
}

.menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  width: 0;
  height: 2px;
  background: var(--accent-amber);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.menu-link:hover::after {
  width: calc(100% - 24px);
}

.menu-link:hover {
  color: var(--accent-amber);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 28px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
}

.menu-toggle span {
  width: 100%;
  height: 2.5px;
  background: var(--bg-white);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-15px);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.menu-toggle.active span:nth-child(4) {
  display: none;
}

@media (max-width: 1024px) {
  .header-content {
    padding: 18px 0;
    justify-content: space-between;
  }

  .site-logo {
    font-size: 24px;
  }

  .menu-list {
    gap: 20px;
    margin-left: 0;
  }

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

  .menu-toggle {
    display: flex;
    position: static;
  }

  .navigation-menu {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-content {
    padding: 16px 0;
  }

  .site-logo {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .header-content {
    justify-content: space-between;
  }

  .site-logo {
    order: 1;
  }

  .menu-toggle {
    order: 3;
  }

  .navigation-menu {
    order: 2;
  }

  #mobileMenu {
    position: fixed;
    top: -100%;
    right: 0;
    width: 100%;
    height: fit-content;
    background: linear-gradient(180deg, #1e293b 0%, #334155 100%);
    padding: 40px 0;
    display: block;
    transition: 0.4s ease-in-out;
    z-index: 999;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid var(--primary-indigo);
  }

  #mobileMenu.active {
    top: 60px;
  }

  .menu-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin-left: 24px;
    padding-left: 0;
  }

  .menu-link {
    color: #e2e8f0;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.3px;
  }

  .menu-link::after {
    left: 0;
  }

  .menu-link:hover::after {
    width: 30%;
  }

  .menu-link:hover {
    color: var(--accent-amber);
    transform: translateX(5px);
  }
}

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

  .menu-link {
    font-size: 15px;
  }
}

.lock-scroll {
  overflow: hidden;
}

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

/* ================== MAIN CONTENT START ================== */

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

/* ================== HERO SECTION START ================== */

.hero-section {
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  opacity: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.main-title {
  color: var(--bg-white);
  text-align: center;
  font-family: "Lora", serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 950px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.intro-text {
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.85;
  max-width: 880px;
  letter-spacing: 0.2px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 70px 0;
  }

  .hero-content {
    gap: 28px;
    padding: 35px 0;
  }

  .main-title {
    font-size: 38px;
  }

  .intro-text {
    font-size: 17px;
  }
}

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

  .hero-content {
    gap: 22px;
    padding: 25px 0;
  }

  .main-title {
    font-size: 30px;
  }

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

/* ================== HERO SECTION END ================== */

/* ================== PLANTS IMAGE SECTION START ================== */

.plants-image-section {
  background: var(--bg-white);
  padding: 70px 0;
}

.plants-image-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #f8fafc;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--border-color);
}

.plants-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(129, 140, 248, 0.08) 100%);
  z-index: 1;
}

.plants-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 450px;
  position: relative;
  z-index: 0;
}

@media (max-width: 568px) {
  .plants-image-section {
    padding: 50px 0;
  }

  .plants-image {
    min-height: 280px;
  }
}

/* ================== PLANTS IMAGE SECTION END ================== */

/* ================== MAIN CONTENT SECTION START ================== */

.main-content-section {
  background: linear-gradient(to bottom, #f8fafc 0%, #f1f5f9 100%);
  padding: 90px 0;
}

.content-layout {
  display: flex;
  align-items: center;
  gap: 70px;
}

.products-image-container {
  flex: 1;
  max-width: 50%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #f8fafc;
  position: relative;
  border: 1px solid var(--border-color);
}

.products-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(217, 119, 6, 0.08) 100%);
  z-index: 1;
}

.products-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 520px;
  position: relative;
  z-index: 0;
}

.info-text-block {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.block-title {
  color: var(--primary-indigo);
  font-family: "Lora", serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.3px;
}

.info-text {
  color: var(--text-dark);
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.95;
  margin: 0;
  text-align: justify;
  letter-spacing: 0.1px;
}

@media (max-width: 968px) {
  .content-layout {
    flex-direction: column;
    gap: 45px;
  }

  .products-image-container {
    max-width: 100%;
  }

  .info-text-block {
    max-width: 100%;
  }

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

@media (max-width: 568px) {
  .main-content-section {
    padding: 60px 0;
  }

  .content-layout {
    gap: 35px;
  }

  .products-image {
    min-height: 320px;
  }

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

  .info-text {
    font-size: 15px;
    text-align: left;
  }
}

/* ================== MAIN CONTENT SECTION END ================== */

/* ================== CONCLUSION SECTION START ================== */

.conclusion-section {
  background: var(--bg-white);
  padding: 90px 0;
  border-top: 1px solid var(--border-color);
}

.conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 950px;
  margin: 0 auto;
}

.conclusion-title {
  color: var(--primary-indigo);
  text-align: center;
  font-family: "Lora", serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.3px;
}

.conclusion-text {
  color: var(--text-dark);
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.95;
  margin: 0;
  text-align: justify;
  letter-spacing: 0.1px;
}

@media (max-width: 768px) {
  .conclusion-section {
    padding: 70px 0;
  }

  .conclusion-content {
    gap: 28px;
  }

  .conclusion-title {
    font-size: 36px;
  }

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

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

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

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

/* ================== CONCLUSION SECTION END ================== */

/* ================== POLICY SECTION START ================== */

.policy-section {
  background: linear-gradient(to bottom, #f8fafc 0%, #f1f5f9 100%);
  padding: 90px 0;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.policy-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--bg-white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.policy-title {
  color: var(--primary-indigo);
  text-align: left;
  font-family: "Lora", serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.3px;
}

.policy-text {
  color: var(--text-dark);
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.1px;
}

.policy-text p {
  margin: 0 0 20px 0;
}

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

.policy-text li {
  margin: 0;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .policy-section {
    padding: 70px 0;
  }

  .policy-content {
    gap: 40px;
  }

  .policy-block {
    padding: 30px;
  }

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

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

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

  .policy-content {
    gap: 30px;
  }

  .policy-block {
    padding: 24px;
  }

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

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

  .policy-text ul {
    padding-left: 22px;
  }
}

/* ================== POLICY SECTION END ================== */

/* ================== CONTACTS SECTION START ================== */

.contacts-section {
  background: linear-gradient(to bottom, #f8fafc 0%, #f1f5f9 100%);
  padding: 90px 0;
}

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

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

.contacts-title {
  color: var(--primary-indigo);
  font-family: "Lora", serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.3px;
}

.contacts-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: var(--text-dark);
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.1px;
}

.contacts-details p {
  margin: 0;
}

.contacts-details a {
  color: var(--primary-indigo);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.contacts-details a:hover {
  color: var(--accent-amber);
  text-decoration: underline;
}

.contacts-map {
  flex: 1;
  max-width: 600px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

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

@media (max-width: 968px) {
  .contacts-content {
    flex-direction: column;
    gap: 45px;
  }

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

@media (max-width: 768px) {
  .contacts-section {
    padding: 70px 0;
  }

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

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

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

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

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

  .contacts-details {
    font-size: 15px;
  }

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

/* ================== CONTACTS SECTION END ================== */

/* ================== FORM SECTION START ================== */

.form-section {
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
  opacity: 1;
}

.form-wrapper {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.form-title-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  margin-bottom: 45px;
}

.form-title {
  color: var(--bg-white);
  text-align: center;
  font-family: "Lora", serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.3px;
}

.form-subtitle {
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  letter-spacing: 0.2px;
}

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

.form-input {
  width: 100%;
  padding: 20px 28px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-dark);
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: var(--accent-amber);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.form-input::placeholder {
  color: var(--text-medium);
}

.submit-btn {
  width: 100%;
  padding: 20px 32px;
  border: none;
  border-radius: 12px;
  background: var(--gradient-accent);
  color: var(--bg-white);
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
  box-shadow: var(--shadow-md);
  letter-spacing: 0.3px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.submit-btn:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .form-section {
    padding: 70px 0;
  }

  .form-title-block {
    margin-bottom: 35px;
  }

  .form-title {
    font-size: 36px;
  }

  .form-subtitle {
    font-size: 17px;
  }

  .form-input {
    padding: 18px 24px;
    font-size: 16px;
  }

  .submit-btn {
    padding: 18px 28px;
    font-size: 17px;
  }
}

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

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

  .form-subtitle {
    font-size: 15px;
  }

  .form-input {
    padding: 16px 20px;
    font-size: 15px;
  }

  .submit-btn {
    padding: 16px 24px;
    font-size: 16px;
  }
}

/* ================== FORM SECTION END ================== */

/* ================== MAIN CONTENT END ================== */

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

.bottom-footer {
  flex-shrink: 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  padding: 70px 0 35px 0;
  position: relative;
  border-top: 2px solid var(--primary-indigo);
}

.bottom-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #f59e0b 50%, transparent 100%);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 45px;
  position: relative;
}

.footer-text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 250px;
}

.footer-text {
  color: #cbd5e1;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  letter-spacing: 0.4px;
}

.footer-text:first-child {
  color: #ffffff;
  font-weight: 600;
  font-size: 17px;
}

.footer-nav-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
  min-width: 200px;
}

.footer-nav-link {
  color: #cbd5e1;
  text-align: right;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  transition: all 0.3s ease;
  position: relative;
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.footer-nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
  transition: width 0.3s ease;
}

.footer-nav-link:hover::before {
  width: 100%;
}

.footer-nav-link:hover {
  color: #ffffff;
  transform: translateX(-4px);
}

@media (max-width: 768px) {
  .bottom-footer {
    padding: 60px 0 30px 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 35px;
  }

  .footer-text-block {
    align-items: center;
  }

  .footer-text {
    text-align: center;
  }

  .footer-text:first-child {
    font-size: 16px;
  }

  .footer-nav-block {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 25px;
    width: 100%;
  }

  .footer-nav-link {
    text-align: center;
  }

  .footer-nav-link:hover {
    transform: translateY(-2px);
  }
}

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

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

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

  .footer-nav-link {
    font-size: 13px;
  }

  .footer-nav-block {
    flex-direction: column;
    gap: 18px;
  }
}

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

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

#hbgBDAgqmW-cookie {
    display: none;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 20px;
    left: 50%;
    width: 100%;
    max-width: 92%;
    transform: translateX(-50%);
    padding: 22px;
    background-color: #1e293b;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    gap: 18px;
    z-index: 999999;
    font-size: 15px;
    color: #fff;
    flex-wrap: wrap;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

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

#hbgBDAgqmW-cookie div {
    flex: 1;
    min-width: 200px;
}

#hbgBDAgqmW-cookie a {
    color: var(--accent-amber);
    text-decoration: underline;
}

.cookie-accept-btn {
    padding: 12px 24px;
    border-radius: 10px;
    background: var(--gradient-accent);
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

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

@media (max-width: 568px) {
    #hbgBDAgqmW-cookie {
        flex-direction: column;
        text-align: center;
        max-width: 96%;
        padding: 18px;
    }

    #hbgBDAgqmW-cookie div {
        width: 100%;
    }

    .cookie-accept-btn {
        width: 100%;
    }
}

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