
/* Fonts */
:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Playfair Display", serif;
  --nav-font: "Montserrat", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #0f172a;
  --default-color: #e2e8f0; 
  --heading-color: #f8fafc; 
  --accent-color: #f59e0b; 
  --surface-color: #1e293b; 
  --contrast-color: #ffffff; 
  --nav-color: #cbd5e1;  
  --nav-hover-color: #f59e0b; 
  --nav-mobile-background-color: #1e293b; 
  --nav-dropdown-background-color: #1e293b; 
  --nav-dropdown-color: #cbd5e1; 
  --nav-dropdown-hover-color: #f59e0b; 
  --footer-bg: #020617;
  --footer-newsletter: #0f172a;
}


/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #1e293b;
  --surface-color: #334155;
}

.dark-background {
  --background-color: #020617;
  --default-color: #f1f5f9;
  --heading-color: #ffffff;
  --surface-color: #0f172a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 999;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: -0.5px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  font-size: 15px;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
  position: relative;
  overflow: hidden;
}

.header .btn-getstarted::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.header .btn-getstarted:hover {
  background: linear-gradient(135deg, #f97316, #f59e0b);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
}

.header .btn-getstarted:hover::before {
  left: 100%;
}

/* Desktop Nav */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    display: flex;
    gap: 25px;
    align-items: center;
    list-style: none;
    margin: 0 1rem 0 0;
    padding: 0;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a {
    font-size: 16px;
    color: #cbd5e1;
    text-decoration: none;
    padding: 12px 16px;
    font-weight: 500;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
  }

  .navmenu a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    border-radius: 8px;
    transition: width 0.4s ease;
    z-index: -1;
  }

  .navmenu a:hover,
  .navmenu .active {
    color: #ffffff;
    transform: translateY(-2px);
  }

  .navmenu a:hover::before,
  .navmenu .active::before {
    width: 100%;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }
}

/* Sticky effect on scroll */
.scrolled .header {
  background-color: #fefefe;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

/* Responsive elements */
@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 8px 18px;
    font-size: 14px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* General Footer Styling */
.footer {
  background: var(--footer-bg);
  color: #f0f0f0;
  padding-top: 60px;
  padding-bottom: 40px;
  font-family: 'Segoe UI', sans-serif;
}

/* Newsletter Section */
.footer-newsletter {
  background: linear-gradient(135deg, #020617, #0f172a);
  padding: 80px 20px;
  border-top: 3px solid #f59e0b;
  position: relative;
  overflow: hidden;
}

.footer-newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-newsletter .container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-newsletter h4 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.footer-newsletter p {
  font-size: 1.2rem;
  color: #e2e8f0;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.newsletter-form input[type="email"] {
  padding: 16px 24px;
  flex: 1 1 300px;
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  font-size: 16px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  color: #1e293b;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
  transform: translateY(-2px);
}

.newsletter-form input[type="submit"] {
  padding: 16px 32px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  border: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
  position: relative;
  overflow: hidden;
}

.newsletter-form input[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.newsletter-form input[type="submit"]:hover {
  background: linear-gradient(135deg, #f97316, #f59e0b);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.newsletter-form input[type="submit"]:hover::before {
  left: 100%;
}

.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
  display: none;
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
}

/* Footer Top Section */
.footer-top {
  padding-top: 50px;
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  border-top: 1px solid #333;
  margin-top: 40px;
}

/* Footer About Section */
.footer-about .sitename {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  text-decoration: none;
}

.footer-contact p {
  margin: 10px 0 0;
  font-size: 15px;
}

.footer-contact strong {
  font-weight: 600;
  color: #f0f0f0;
}

/* Footer Links */
.footer-links h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 15px;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin: 10px 0;
}

.footer-links ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links ul li a:hover {
  color: var(--heading-color);
}

.footer-links ul i {
  color: var(--heading-color);
  margin-right: 6px;
}

/* Footer About Text */
.footer-top .col-lg-4:last-child h4 {
  font-size: 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
}

.footer-top .col-lg-4:last-child p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-new {
  padding: 100px 15px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  min-height: 90vh;
  display: flex;
  align-items: center;
  font-family: var(--default-font);
  color: var(--heading-color);
  position: relative;
  overflow: hidden;
}

.hero-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1 1 500px;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-text p {
  font-size: 1.35rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: var(--default-color);
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero-buttons {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-primary {
    width: 100%;
  }
  .btn-secondary {
    width: 100%;
  }
}

.btn-primary,
.btn-secondary {
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  box-shadow: 0 8px 15px rgba(245, 158, 11, 0.4);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #f97316, #f59e0b);
  box-shadow: 0 12px 25px rgba(245, 158, 11, 0.6);
  transform: translateY(-3px) scale(1.05);
  outline: none;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #f59e0b;
  color: #f59e0b;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
  transition: left 0.5s;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px rgba(245, 158, 11, 0.4);
  outline: none;
}

.btn-secondary:hover::before {
  left: 100%;
}

.hero-image {
  flex: 1 1 400px;
  max-width: 480px;
  animation: floatUp 4s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Анимация для картинки */
@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Мобильная адаптивность */
@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text {
    flex-basis: 100%;
  }

  .hero-image {
    flex-basis: 100%;
    max-width: 300px;
    margin-bottom: 30px;
    animation: none;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    min-width: auto;
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-modern {
  padding: 100px 15px;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: var(--default-color);
  font-family: var(--default-font);
  position: relative;
  overflow: hidden;
}

.about-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.about-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.about-image {
  flex: 1 1 350px;
  max-width: 400px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-content {
  flex: 1 1 450px;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent-color);
}

.about-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--nav-color);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  stroke: var(--accent-color);
}

.feature-item p {
  margin: 0;
  font-size: 16px;
  color: var(--default-color);
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  user-select: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.btn-read-more:hover,
.btn-read-more:focus {
  background-color: color-mix(in srgb, var(--accent-color), transparent 30%);
  outline: none;
}

.arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn-read-more:hover .arrow {
  transform: translateX(5px);
}

/* Responsive */

@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-image,
  .about-content {
    max-width: 100%;
  }

  .about-content p {
    font-size: 17px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features-modern {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 100px 15px;
  font-family: var(--default-font);
  color: var(--default-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.features-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 30%, rgba(245, 158, 11, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.features-modern .section-title h2 {
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.features-modern .section-title p {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--default-color);
  max-width: 700px;
  margin: 0 auto 3rem auto;
  opacity: 0.9;
}

.features-modern .features-list {
  list-style: none;
  padding: 0;
  margin: 0 ;
  max-width: 700px;
}

.features-modern .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 36px;
  gap: 20px;
  border-left: 4px solid var(--accent-color);
  padding-left: 20px;
  transition: background-color 0.3s ease;
  cursor: default;
}

.features-modern .feature-item:hover {
  background-color: rgba(245, 158, 11, 0.1);
  transform: translateY(-8px) scale(1.02);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.2);
}

.features-modern .icon-circle {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.features-modern .icon-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.features-modern .feature-item:hover .icon-circle {
  background: linear-gradient(135deg, #f97316, #f59e0b);
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.features-modern .feature-item:hover .icon-circle::before {
  left: 100%;
}

.features-modern .icon-circle svg {
  stroke: var(--white);
  width: 24px;
  height: 24px;
}

.features-modern .feature-text h4 {
  margin: 0 0 8px 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--contrast-color);
}

.features-modern .feature-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--contrast-color);
}

.features-image {
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.features-image:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.features-image[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.features-image[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .features-modern .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-left: none;
    padding-left: 0;
  }
  
  .features-modern .icon-circle {
    margin-bottom: 12px;
  }
}


/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details {
  background: var(--white);
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-details .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

.feature-details .feature-card {
  background: linear-gradient(135deg, #1e293b, #334155);
  border: 2px solid rgba(245, 158, 11, 0.2);
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-details .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
  transition: left 0.6s;
}

.feature-details .feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(245, 158, 11, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.feature-details .feature-card:hover {
  transform: translateY(-10px) scale(1.03) rotate(1deg);
  box-shadow: 0 25px 50px rgba(245, 158, 11, 0.3);
  border-color: rgba(245, 158, 11, 0.5);
}

.feature-details .feature-card:hover::before {
  left: 100%;
}

.feature-details .feature-card:hover::after {
  transform: translateX(100%);
}

.feature-details .feature-icon {
  font-size: 56px;
  color: #f59e0b;
  margin-bottom: 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.3));
}

.feature-details .feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(10deg);
  color: #f97316;
  filter: drop-shadow(0 8px 16px rgba(245, 158, 11, 0.5));
}

.feature-details .feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.feature-details .feature-text {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.5;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    border-radius: 25px;
    transition: none;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e293b, #334155);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials .testimonial-wrap {
  display: flex;
  justify-content: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: visible;
  width: 100%;
}

.testimonials .testimonial-item {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  padding: 40px;
  margin: 0 15px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(245, 158, 11, 0.1);
  overflow: hidden;
}

.testimonials .testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.05), transparent);
  transition: left 0.6s;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.3);
}

.testimonials .testimonial-item:hover::before {
  left: 100%;
}

.testimonials .testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--accent-color);
  object-fit: cover;
  margin-bottom: 16px;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 4px;
  color: var(--heading-color);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
  opacity: 0.7;
  margin: 0 0 12px;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 10px;
}

.testimonials .testimonial-item .stars i {
  color: #fbbf24; /* amber-400 */
  margin: 0 2px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  display: none; /* Removed for cleaner UI, re-enable if needed */
}

.testimonials .testimonial-item p {
  font-size: 15px;
  line-height: 1.6;
  font-style: normal;
  color: var(--accent-color);
  margin: 0;
}

.testimonials .swiper-pagination {
  margin-top: 24px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--accent-color);
  opacity: 0.4;
  margin: 0 4px;
  transition: opacity 0.3s;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding: 0 10px;
  }

  .testimonials .testimonial-item {
    padding: 24px;
    margin: 0 8px;
  }

  .testimonials .testimonial-img {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
  }
}


/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background: linear-gradient(135deg, #1e293b, #334155);
  padding: 60px 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  height: 100%;
  position: relative;
  border: 2px solid rgba(245, 158, 11, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing .pricing-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.05), transparent);
  transition: left 0.6s;
}

.pricing .pricing-item:hover::before {
  left: 100%;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: #e2e8f0;
  background: linear-gradient(135deg, #1e293b, #334155);
  display: inline-block;
  padding: 14px 40px;
  border-radius: 12px;
  border: 2px solid rgba(245, 158, 11, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.pricing .buy-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
  transition: left 0.6s;
}

.pricing .buy-btn:hover {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border-color: #f59e0b;
  color: #ffffff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
}

.pricing .buy-btn:hover::before {
  left: 100%;
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  border-color: #f59e0b;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.pricing .featured .buy-btn:hover {
  background: linear-gradient(135deg, #f97316, #f59e0b);
  color: #ffffff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  background-color: var(--background-color);
  padding: 60px 0;
}

.faq .faq-container {
  margin-top: 30px;
}

.faq .faq-item {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 24px 20px 16px 20px;
  margin-bottom: 16px;
  position: relative;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.faq .faq-item:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.faq .faq-icon {
  font-size: 22px;
  color: var(--accent-color);
  margin-right: 12px;
  vertical-align: middle;
}

.faq .faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding-left: 36px;
  position: relative;
  cursor: pointer;
  transition: color 0.3s;
}

.faq .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-toggle {
  position: absolute;
  right: 20px;
  top: 28px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s, color 0.3s;
  color: var(--text-color);
}

.faq .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-left: 36px;
  padding-top: 0;
  margin-top: 8px;
  font-size: 15px;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}

.faq .faq-content p {
  margin: 0;
  line-height: 1.6;
}

.faq .faq-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-active h3,
.faq .faq-active .faq-icon,
.faq .faq-active .faq-toggle {
  color: var(--contrast-color);
}

.faq .faq-active .faq-content {
  max-height: 200px;
  opacity: 1;
  padding-top: 12px;
}

.faq .faq-active .faq-toggle {
  transform: rotate(90deg);
}

@media (max-width: 576px) {
  .faq .faq-item {
    padding: 20px 16px 14px 16px;
  }

  .faq .faq-toggle {
    top: 24px;
  }

  .faq .faq-item h3 {
    font-size: 16px;
    padding-left: 32px;
  }

  .faq .faq-content {
    padding-left: 32px;
  }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
:root {
  --accent-color: var(--footer-newsletter);
  --text-color: #212529;
}

/* Section Accent */
.text-accent {
  color: var(--accent-color);
}

.btn-accent {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  transition: background 0.3s ease;
}

.btn-accent:hover {
  background-color: var(--accent-color);
}

/* Contact Section */
.contact.section {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.contact.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.contact-box {
  background: linear-gradient(135deg, #1e293b, #334155);
  border: 2px solid rgba(245, 158, 11, 0.2);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
  transition: left 0.6s;
}

.contact-box:hover::before {
  left: 100%;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.4);
}

.icon-box i {
  color: #f59e0b;
  filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.3));
  transition: all 0.3s ease;
}

.contact-box:hover .icon-box i {
  color: #f97316;
  filter: drop-shadow(0 6px 12px rgba(245, 158, 11, 0.5));
  transform: scale(1.1);
}

.contact-form {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-left: 5px solid #f59e0b;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form:hover {
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.15);
  transform: translateY(-2px);
}

.contact-form input,
.contact-form textarea {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
  outline: none;
  transform: translateY(-1px);
}

.form-status .loading,
.form-status .error-message,
.form-status .sent-message {
  font-size: 14px;
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-status .sent-message {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.form-status .error-message {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

#cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: 30px;
  max-width: 500px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #e2e8f0;
  border: 2px solid rgba(245, 158, 11, 0.3);
  padding: 35px;
  font-family: var(--default-font);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  font-size: 15px;
  z-index: 9999;
  display: none;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

#cookie-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

#cookie-popup.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  display: block;
}

#cookie-popup p {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-size: 15px;
}

#cookie-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

#cookie-popup .popup-message {
  text-align: left;
}

#cookie-popup .popup-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

#cookie-popup button {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
  position: relative;
  overflow: hidden;
  min-width: 140px;
}

#cookie-popup button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

#cookie-popup button:hover {
  background: linear-gradient(135deg, #f97316, #f59e0b);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
}

#cookie-popup button:hover::before {
  left: 100%;
}

#cookie-popup .btn-secondary {
  background: linear-gradient(135deg, #374151, #4b5563);
  border: 2px solid rgba(245, 158, 11, 0.3);
}

#cookie-popup .btn-secondary:hover {
  background: linear-gradient(135deg, #4b5563, #374151);
  border-color: #f59e0b;
}

#cookie-popup .popup-message {
  max-width: 80%;
}

#cookie-popup .popup-message a {
  color: #f59e0b;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

#cookie-popup .popup-message a:hover {
  color: #f97316;
  border-bottom-color: #f97316;
  text-decoration: none;
}

@media (max-width: 768px) {
  #cookie-popup {
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 25px;
    font-size: 14px;
  }
  
  #cookie-popup .popup-content {
    gap: 15px;
  }
  
  #cookie-popup .popup-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  #cookie-popup button {
    padding: 14px 24px;
    font-size: 14px;
    min-width: 120px;
  }
}

/* Cookie Notification Styles */
.cookie-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
  font-family: var(--default-font);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.notification-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.notification-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .cookie-notification {
    right: 15px;
    left: 15px;
    max-width: none;
  }
}
