
/* Fonts */
:root {
  --default-font: "Roboto",  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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  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: #ffffff;
  --default-color: #212529; 
  --heading-color: #2c3c3a; 
  --accent-color: #3273ff; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
  --nav-color: #212529;  
  --nav-hover-color: #5777ba; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #212529; 
  --nav-dropdown-hover-color: #5777ba; 
  --footer-bg: #101820;
  --footer-newsletter: #1a1f2b;
}


/* 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: #f2f5fb;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --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 {
  color: var(--heading-color);
  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: linear-gradient(135deg, #29463d, #46c8b4);
  color: #ffffff;
  padding: 20px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: all 0.3s ease;
}

.header .logo h1 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  background: linear-gradient(135deg, #12342f, #40e0d0);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 50px;
  transition: background 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.header .btn-getstarted:hover {
  background: linear-gradient(135deg, #18554d, #5ff8e4);
  transform: scale(1.05);
}

/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu ul {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0 1rem 0 0;
    padding: 0;
  }

  .navmenu a {
    font-size: 15px;
    color: #e0f7f4;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
  }

  .navmenu a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
  }

  .navmenu a:hover,
  .navmenu a.active {
    color: #ffffff;
  }

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


/* 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: linear-gradient(135deg, #29463d, #3ccbc0);
  color: #e9e9e9;
  font-family: 'Segoe UI', sans-serif;
  padding-top: 60px;
  padding-bottom: 40px;
}

/* Newsletter */
.footer-newsletter {
  background: #f2f2f2;
  padding: 50px 30px;
  border-bottom: 1px solid #ccc;
  color: #2b2b2b;
}

.newsletter-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.newsletter-left {
  flex: 1 1 400px;
}

.newsletter-left h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #29463d;
}

.newsletter-left p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.newsletter-right {
  flex: 1 1 300px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-right input[type="email"] {
  padding: 12px 16px;
  flex: 1 1 200px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.newsletter-right input[type="submit"] {
  background: linear-gradient(135deg, #2a7c6f, #30e3ca);
  color: #fff;
  font-weight: 600;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.newsletter-right input[type="submit"]:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #246a60, #45f0d5);
}

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

/* Footer Content */
.footer-content {
  margin-top: 50px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 5px;
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 14px;
  line-height: 1.6;
  color: #e3e3e3;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

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

.footer-col li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter-grid,
  .footer-columns {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-right {
    width: 100%;
    flex-direction: column;
  }

  .newsletter-right input[type="email"],
  .newsletter-right input[type="submit"] {
    width: 100%;
  }
}


/*--------------------------------------------------------------
# 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-kernkraft {
  padding: 80px 20px;
  background: linear-gradient(135deg, #e6e9eb, #d1f5f0);
  color: #0d2f2b;
  font-family: 'Inter', sans-serif;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #255c55;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-kern {
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-width: 180px;
}

.btn-kern.primary {
  background: var(--button-bg);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 105, 92, 0.3);
}

.btn-kern.primary:hover {
  background: #004d43;
}

.btn-kern.outline {
  border: 2px solid var(--button-bg);
  color: var(--button-bg);
  background: transparent;
}

.btn-kern.outline:hover {
  background: var(--button-bg);
  color: #fff;
}

.hero-visual {
  flex: 1 1 400px;
  max-width: 500px;
}

.hero-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

/* Features */
.features-kernkraft {
  background: linear-gradient(135deg, #dbe6e4, #c0e8df);
  padding: 80px 20px;
  color: #1c3834;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-box {
  background: #ffffffcc;
  border: 2px solid #4eb8a3;
  border-radius: 0;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
}

.feature-icon {
  font-size: 36px;
  color: #00796b;
  margin-bottom: 16px;
}

.feature-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-box p {
  font-size: 16px;
  color: #2e5a55;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-visual {
    margin-bottom: 30px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-kern {
    padding: 12px 24px;
    min-width: auto;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
:root {
  --gradient-bg: linear-gradient(135deg, #113c3a, #18b2a4);
  --text-light: #e0e0e0;
  --text-dark: #1c1c1c;
  --form-bg: #f7f7f7;
  --button-bg: #00695c;
  --button-hover: #00bfa5;
  --font-main: 'Segoe UI', sans-serif;
}


/* About Section */
.about-kk-section {
  background: #f0f2f5;
  color: var(--text-dark);
  padding: 100px 20px;
}

.about-kk-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.about-kk-content {
  flex: 1 1 400px;
  max-width: 600px;
}

.about-kk-content h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: var(--button-bg);
  font-family: var(--font-main);
}

.about-kk-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.about-kk-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.about-kk-features li {
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-kk-features i {
  color: var(--button-hover);
  font-size: 20px;
}

.about-kk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--button-bg);
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.about-kk-btn:hover {
  background: var(--button-hover);
}

.about-kk-image {
  flex: 1 1 400px;
  max-width: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

/* Responsive */
@media (max-width: 992px) {
  .contact-kk-grid {
    grid-template-columns: 1fr;
  }

  .about-kk-wrapper {
    flex-direction: column;
  }

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


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.kernkraftwerk-features {
  padding: 100px 20px;
  background: var(--gradient-bg);
  color: #e5e5e5;
  font-family: "Segoe UI", sans-serif;
}

.features-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
}

.features-image-block {
  flex: 1;
  text-align: center;
}

.features-image {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.features-content-block {
  flex: 1;
}

.features-heading {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
}

.features-subheading {
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 50px;
  color: #d0e4e2;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
  background-color: #2ca39c;
  color: #ffffff;
  padding: 12px;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.feature-info h4 {
  margin: 0 0 8px 0;
  font-size: 20px;
  color: #ffffff;
}

.feature-info p {
  margin: 0;
  font-size: 15px;
  color: #c2dad9;
  line-height: 1.5;
}

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

  .features-heading {
    text-align: center;
  }

  .features-subheading {
    text-align: center;
  }
}


/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 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: 80px 20px;
  background: var(--gradient-bg);
  background-blend-mode: lighten;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}

.testimonials-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.section-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.section-subheading {
  font-size: 18px;
  color: #d5f5f3;
  max-width: 600px;
}

.testimonial-icon i {
  font-size: 48px;
  color: #9ff4e5;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.user-profile img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid #9ff4e5;
  object-fit: cover;
}

.user-meta h3 {
  margin: 0;
  font-size: 18px;
  color: #ffffff;
}

.user-meta span {
  font-size: 14px;
  color: #c7f2ef;
}

blockquote {
  font-size: 16px;
  line-height: 1.6;
  color: #f0fdfa;
  position: relative;
  padding-left: 20px;
}

blockquote::before {
  content: "“";
  font-size: 36px;
  color: #a8ede2;
  position: absolute;
  left: 0;
  top: -10px;
}

@media (max-width: 768px) {
  .testimonials-header {
    flex-direction: column;
    text-align: center;
  }

  .section-heading {
    font-size: 26px;
  }

  .testimonial-icon i {
    font-size: 40px;
  }
}


/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.nuclear-pricing-section {
  padding: 100px 30px;
  background: var(--gradient-bg);
  color: #f2f2f2;
  font-family: "Orbitron", sans-serif;
}

.nuclear-pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-header p {
  font-size: 16px;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 992px) {
  .pricing-cards-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}

.pricing-card {
  background: rgba(240, 240, 240, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  background: var(--gradient-bg);
  border-color: rgba(255, 255, 255, 0.3);
}

.card-top h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.price {
  font-size: 38px;
  font-weight: 700;
  color: #e4fffb;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.card-features li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.card-features li::before {
  content: "✓";
  color: #56ffc2;
  position: absolute;
  left: 0;
  top: 0;
}

.card-features li.disabled {
  opacity: 0.4;
  text-decoration: line-through;
}

.card-features li.disabled::before {
  content: "✕";
  color: #ff5c5c;
}

.nuclear-button {
  display: inline-block;
  text-align: center;
  padding: 12px 24px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  background: #00fcd3;
  color: #003530;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nuclear-button:hover {
  background: #ffffff;
  color: #0a3b34;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq-new-section {
  padding: 100px 20px;
  background: var(--gradient-bg);
  color: #f0f0f0;
  font-family: 'Inter', sans-serif;
}

.faq-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.faq-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.faq-subtitle {
  font-size: 18px;
  color: #c7dedb;
  line-height: 1.6;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.faq-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 28px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(8px);
}

.faq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.faq-question i {
  font-size: 26px;
  color: #9ff4d2;
  flex-shrink: 0;
}

.faq-question h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #d9f5ef;
}

@media (max-width: 600px) {
  .faq-title {
    font-size: 32px;
  }

  .faq-subtitle {
    font-size: 16px;
  }

  .faq-card {
    padding: 20px;
  }

  .faq-question h3 {
    font-size: 18px;
  }

  .faq-answer p {
    font-size: 15px;
  }
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

/* Kontakt Section */
.contact-kk-section {
  background: var(--gradient-bg);
  color: var(--text-light);
  padding: 80px 20px;
}

.contact-kk-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.contact-kk-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-family: var(--font-main);
}

.contact-kk-header p {
  font-size: 18px;
  opacity: 0.85;
}

.contact-kk-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-kk-info {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #1de9b6;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.contact-kk-info .contact-kk-icon {
  font-size: 40px;
  color: #1de9b6;
  margin-bottom: 15px;
}

.contact-kk-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.contact-kk-info p {
  font-size: 16px;
  opacity: 0.9;
}

.contact-kk-form {
  background: var(--form-bg);
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-kk-form input,
.contact-kk-form textarea {
  padding: 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: var(--font-main);
}

.contact-kk-form button {
  background: var(--button-bg);
  color: #fff;
  font-size: 16px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-kk-form button:hover {
  background: var(--button-hover);
}


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

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: translateX(-50%);
  background: #dedede;
  color: #333;
  border: none;
  padding: 20px;
  font-family: "Roboto", sans-serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-radius: 25px;
  font-size: 14px;
  max-width: 400px;
  z-index: 1000;
  display: none;
  opacity: 0; /* Start invisible */
  transform: translateY(30px); /* Slide up effect */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

#cookie-popup p {
  margin: 0;
  padding: 0;
}

#cookie-popup .popup-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cookie-popup button {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

#cookie-popup button:hover {
  background: #0056b3;
}

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

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

#cookie-popup .popup-message a:hover {
  color: #0056b3;
}
