/* Fonty */
/* Fonty - przeniesione do HTML */

/* Reset HTML5 */
html {
  color: #222;
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Universal Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--light-bg);
  color: var(--text-color);
  overflow-x: hidden;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Element Resets */
img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/* CSS Variables */
:root {
  /* Colors */
  --primary-color: #0086CD;
  --primary-dark: #006ba6;
  --secondary-color: #1a252f;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --white-color: #ffffff;
  --accent-color: #e74c3c;
  --gray-light: #e9ecef;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Layout */
  --site-max-width: 1200px;
  --site-gutter: 20px;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--secondary-color);
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding-inline: var(--site-gutter);
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--primary-color);
  transition: var(--transition);
  cursor: pointer;
  font-size: 0.9rem;
  text-align: center;
}

.btn:hover {
  background-color: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 0;
}

.static-page-section {
  flex: 1;
  /* Push footer down */
}

.section-spacing {
  padding-top: 40px;
  padding-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 15px;
  text-align: left;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  transform: none;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.section-title-small {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

/* Header & Nav */
.top-bar {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 10px 0;
  font-size: 0.85rem;
}



.top-container {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 var(--site-gutter);
  flex-wrap: wrap;
}

.top-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-contact-item i {
  color: var(--primary-color);
}

.top-contact-item a:hover {
  color: var(--primary-color);
}

.nav-bar {
  background-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 var(--site-gutter);
}

.logo img {
  height: 50px;
  width: auto;
}

.main-menu {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-menu a {
  color: var(--white-color);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 10px 0;
  display: block;
}

.main-menu a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--white-color);
  transition: var(--transition);
}

.main-menu a:hover::after,
.main-menu a.active::after {
  width: 100%;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--white-color);
  border-radius: 2px;
}

.menu-close-li {
  display: none;
}

@media (max-width: 900px) {
  .top-container {
    justify-content: center;
    gap: 15px;
  }

  .top-contact-item {
    font-size: 0.8rem;
  }

  .menu-toggle {
    display: flex;
  }

  .main-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--secondary-color);
    flex-direction: column;
    padding: 80px 30px;
    transition: var(--transition);
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    gap: 20px;
  }

  .main-menu.active {
    right: 0;
  }

  .main-menu a {
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-menu a::after {
    display: none;
    /* Remove underline animation on mobile */
  }

  .main-menu a:hover,
  .main-menu a.active {
    color: var(--primary-color);
  }

  .menu-close-li {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .menu-close {
    background: none;
    border: none;
    color: var(--white-color);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    backdrop-filter: blur(3px);
  }

  .menu-overlay.active {
    display: block;
  }
}


@media (max-width: 768px) {
  .top-container {
    justify-content: space-between;
    gap: 10px;
  }

  /* Hide Email and Address on mobile */
  .top-contact-item:nth-child(2),
  .top-contact-item:nth-child(3) {
    display: none;
  }

  .top-contact-item {
    font-size: 0.75rem;
  }
}

/* Hero Section */
.hero-full-image {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white-color);
  text-align: center;
  background-color: #000;
  /* Fallback */
}

.hero-full-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.8;
}

.hero-full-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 134, 205, 0.65);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 800px;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text p {
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 1px;
  margin: 0;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-text p:first-child {
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 5px;
}

/* About Section */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.text-section p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #555;
  text-align: justify;
}

.two-columns-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.left-image img {
  border-radius: var(--border-radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right-text {
  background-color: var(--white-color);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-list {
  margin-bottom: 30px;
}

.offer-highlight {
  background-color: rgba(0, 134, 205, 0.1);
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  border-radius: 4px;
  margin: 20px 0;
  font-weight: 500;
}

.offer-list li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  font-size: 1.05rem;
}

.offer-list li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

@media (max-width: 900px) {
  .two-columns-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .right-text {
    padding: 30px;
  }

  .text-section p {
    text-align: left;
  }
}

/* Services Section */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.services-item {
  background: var(--white-color);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.services-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--primary-color);
}

.services-item h2.name {
  color: var(--secondary-color);
  font-size: 1.6rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--gray-light);
  padding-bottom: 15px;
}

.services-item ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #555;
}

.services-item ul li::before {
  content: '\f00c';
  /* FontAwesome check */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-size: 0.9em;
  top: 3px;
}

/* Gallery Section */
.masonry-gallery {
  column-count: 3;
  column-gap: 20px;
}

.gallery-item {
  margin-bottom: 20px;
  break-inside: avoid;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #000;
  position: relative;
  /* For loader positioning */
  background-color: #f0f0f0;
  /* Placeholder background */
  min-height: 200px;
  /* Minimum height to show loader */
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  /* Hidden initially for fade-in */
}

.gallery-item img.loaded {
  opacity: 1;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Loader Spinner */
.gallery-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid #ddd;
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 1;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 900px) {
  .masonry-gallery {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .masonry-gallery {
    column-count: 1;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: -10px;
  background: none;
  border: none;
  color: var(--white-color);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}

.lightbox-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: var(--white-color);
  font-size: 2rem;
  cursor: pointer;
  padding: 15px 10px;
  transition: background 0.3s;
  border-radius: 4px;
}

.lightbox-nav button:hover {
  background: rgba(0, 0, 0, 0.6);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 0;
  }

  .lightbox-next {
    right: 0;
  }

  .lightbox-img {
    max-height: 80vh;
  }
}

/* Contact Section */
.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 50px;
  position: relative;
  height: 450px;
  background-color: var(--gray-light);
}

.map-blocked {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.map-blocked-content {
  padding: 20px;
  max-width: 400px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info {
  background: transparent;
  box-shadow: none;
  padding: 0;
  height: fit-content;
}

.contact-items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  align-items: center;
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-icon-circle {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 134, 205, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: var(--transition);
}

.contact-item:hover .contact-icon-circle {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.contact-text h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
  color: var(--secondary-color);
  font-weight: 700;
}

.contact-text p {
  margin-bottom: 0;
  color: #555;
  line-height: 1.4;
}

.contact-info h3,
.contact-form h3 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
  font-size: 1.5rem;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--primary-color);
  width: 100%;
}

.contact-info h3 i,
.contact-form h3 i {
  color: var(--primary-color);
}

.contact-info h3::after,
.contact-form h3::after {
  display: none;
}

.contact-form {
  background: var(--white-color);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background-color: #fcfcfc;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(0, 134, 205, 0.1);
}

.form-control.error {
  border-color: var(--accent-color);
}

.error-msg {
  color: var(--accent-color);
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: nowrap;
}

.checkbox-group input {
  margin-top: 4px;
  width: auto;
  flex-shrink: 0;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.submit-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 12px 30px;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.checkbox-group label {
  font-size: 0.9rem;
  line-height: 1.4;
}

.submit-btn:disabled {
  background-color: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
  transform: none;
}

.form-response {
  margin-top: 20px;
  padding: 15px;
  border-radius: var(--border-radius);
  display: none;
  text-align: center;
}

.form-response.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-response.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: #ccc;
  padding-top: 0;
  margin-top: auto;
}

.footer-alert {
  background-color: var(--secondary-color);
  color: #e74c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 0;
  /* font-weight: 500; */
  font-size: 1.4rem;
  margin-bottom: 0;
  box-shadow: none;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-alert p {
  margin-bottom: 0;
}

.footer-main {
  padding-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact {
  grid-row: 1 / 3;
}

.footer h3 {
  color: var(--white-color);
  margin-bottom: 25px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 15px;
}

.footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.footer-social {
  padding-top: 0;
}

.footer-logo {
  grid-column: 2 / -1;
  grid-row: 2;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
}

.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--primary-color);
  margin-top: 5px;
  width: 20px;
  text-align: center;
}

.footer-contact-item a:hover {
  color: var(--primary-color);
}

.nav-info {
  display: block;
  font-size: 0.85rem;
  color: #999;
  margin-top: 5px;

  a {
    text-decoration: none;
  }
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #ccc;
  transition: var(--transition);
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  font-size: 1.2rem;
}

.social-link span {
  display: none;
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 25px 0;
  text-align: center;
  font-size: 0.9rem;
  background-color: #151e26;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

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

.footer-links a {
  color: #aaa;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.separator {
  color: #555;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-contact {
    grid-row: auto;
  }

  .footer-logo {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
    margin-bottom: 30px;
    order: -1;
    /* Move logo to top on mobile */
    justify-content: center;
  }

  .footer-social {
    padding-top: 0;
  }
}

/* Cookie Banner */
#userNotice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 400px;
  width: calc(100% - 40px);
  background: var(--white-color);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
  border-left: 5px solid var(--primary-color);
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#userNotice.active {
  display: block;
}

.notice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.notice-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.notice-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.info-toggle {
  background: none;
  border: none;
  color: var(--primary-color);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.details-panel {
  display: none;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.details-panel.visible {
  display: block;
}

.details-section {
  margin-bottom: 10px;
}

.action-buttons {
  display: flex;
  gap: 10px;
}

.action-btn {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
}

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

.btn-secondary {
  background-color: var(--gray-light);
  color: var(--text-color);
}

.btn-secondary:hover {
  background-color: #dbe2e8;
}

.notice-hint {
  font-size: 0.8rem;
  color: #888;
  margin-top: 10px;
  text-align: center;
  margin-bottom: 0;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
  font-size: 1.2rem;
}

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

.back-to-top:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

/* Offer Page New Layout */
.offer-columns {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
  align-items: start;
}

.column-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--secondary-color);
  font-weight: 600;
}

.offer-img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin-top: 30px;
  display: block;
}

.offer-list-styled {
  margin-bottom: 25px;
}

.offer-list-styled li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #555;
}

.offer-list-styled li::before {
  content: '•';
  position: absolute;
  left: 5px;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}

@media (max-width: 900px) {
  .offer-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offer-img {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}