/* =============================================
   Čistý Lesk | elegant_classic Style CSS
   ============================================= */

/* ===== CSS Reset & Normalize ===== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F2F5F7;
  color: #18304B;
  font-family: 'Roboto', serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:before, *:after { box-sizing: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol {
  margin-left: 2em;
  margin-bottom: 1em;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}

/* ===== Brand Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', serif;
  color: #18304B;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.8rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.15; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; font-weight: 600; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 10px; }

p {
  font-family: 'Roboto', serif;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
strong { font-weight: 600; }
em, i { font-style: italic; }

/* ===== Layout Containers ===== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(34,48,75,0.10);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== Header & Main Nav ===== */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e7e9ec;
  box-shadow: 0 2px 8px rgba(24,48,75,0.06);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 8px 18px;
  gap: 20px;
}
.logo-area img {
  height: 54px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: 1.08rem;
  font-family: 'Montserrat', serif;
  color: #18304B;
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  background: #4A90A4;
  width: 0%;
  border-radius: 1px;
  margin-top: 2px;
  transition: width 0.3s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #4A90A4;
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 40%;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  background: #18304B;
  color: #fff;
  font-weight: 700;
  padding: 11px 30px;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(24,48,75,0.08);
  transition: background 0.21s, box-shadow 0.25s, transform 0.12s;
  border: none;
  margin-left: 32px;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:active,
.cta-primary:focus {
  background: #4A90A4;
  box-shadow: 0 10px 32px rgba(24,48,75,0.10);
  transform: translateY(-2px) scale(1.025);
  color: #fff;
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  background: #F2F5F7;
  color: #18304B;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 26px;
  box-shadow: 0 1px 8px rgba(24,48,75,0.06);
  transition: background 0.2s, color 0.2s;
  margin-top: 16px;
  border: 1px solid #e2e6eb;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #4A90A4;
  color: #fff;
  border: 1px solid #4A90A4;
}

/* ===== Hero Section ===== */
.hero {
  background: #F2F5F7;
  padding: 44px 0 34px 0;
  border-radius: 0 0 35px 35px;
  box-shadow: 0 4px 16px rgba(24,48,75,0.07);
  margin-bottom: 38px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
.hero .content-wrapper {
  gap: 18px;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.14rem;
  max-width: 640px;
  color: #34495E;
  margin-bottom: 19px;
}

/* ===== Feature List & Highlights ===== */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 4px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.04rem;
  margin-bottom: 0;
  background: #F8FAFB;
  border-left: 3px solid #4A90A4;
  padding: 14px 15px 14px 18px;
  border-radius: 10px;
  color: #25405e;
  box-shadow: 0 1px 4px rgba(24,48,75,0.04);
}
.feature-list img {
  height: 26px;
  width: 26px;
  flex-shrink: 0;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.value-list li {
  font-size: 1.05rem;
  line-height: 1.5;
}

/* ====== Cards, Services, Projects ====== */
.card-container, .service-list, .project-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .service-card, .service-item, .project-highlight {
  background: #fff;
  box-shadow: 0 2px 10px rgba(24,48,75,0.09);
  border-radius: 18px;
  padding: 30px 28px 24px 28px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 240px;
  max-width: 370px;
}
.service-list {
  margin-top: 8px;
}
.service-card {
  min-width: 220px;
  max-width: 338px;
}
.service-card span, .service-item span {
  font-size: 1.02rem;
  color: #4A90A4;
  margin-top: 10px;
  font-weight: 700;
}
.project-blocks {
  margin-top: 10px;
}

.project-highlight h3 {
  font-size: 1.14rem;
  margin-bottom: 8px;
}
.project-highlight p {
  margin-bottom: 6px;
  color: #25405E;
}

/* Testimonial Cards/Slider */
.testimonial-slider, .testimonial-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #F8FAFB;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(24,48,75,0.07);
  padding: 20px 24px;
  margin-bottom: 20px;
  align-items: center;
  min-width: 260px;
  max-width: 410px;
  flex: 1 1 320px;
  color: #18304B;
  font-size: 1rem;
  transition: box-shadow 0.17s, transform 0.14s;
}
.testimonial-card p {
  font-size: 1.09rem;
  line-height: 1.56;
  color: #2E3D50;
  margin-bottom: 8px;
}
.testimonial-card > span {
  font-size: 0.99rem;
  color: #4A90A4;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 5px 22px rgba(24,48,75,0.09);
  transform: translateY(-3px) scale(1.012);
}

.testimonial-summary {
  background: #E5EDF1;
  border-radius: 12px;
  padding: 22px 30px;
  color: #18304B;
  box-shadow: 0 1px 8px rgba(24,48,75,0.06);
  font-family: 'Montserrat', serif;
  font-weight: 500;
  margin-top: 34px;
  flex: 1 1 100%;
}
.testimonial-summary h3 {
  font-size: 1.14rem;
  margin-bottom: 8px;
}

/* Thank you message */
.thank-message {
  background: #F8FAFB;
  border-radius: 14px;
  padding: 32px 32px 24px 32px;
  color: #25405e;
  box-shadow: 0 1px 8px rgba(24,48,75,0.07);
  margin-bottom: 24px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 18px;
  background: #fff;
  box-shadow: 0 1px 10px rgba(24,48,75,0.06);
  border-radius: 10px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 18px 16px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #E5EDF1;
}
.pricing-table th {
  background: #E5EDF1;
  font-family: 'Montserrat', serif;
  font-weight: 700;
  color: #18304B;
  font-size: 1.07rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.price-notes {
  margin-top: 14px;
  margin-bottom: 12px;
  color: #60718a;
  font-size: 1rem;
}
.service-inclusions {
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: 10px;
  background: #F8FAFB;
  color: #18304B;
}
.service-inclusions ul {
  margin-bottom: 0;
  margin-top: 8px;
}

/* Footer Styles */
footer {
  background: #18304B;
  color: #fff;
  padding: 26px 0 0 0;
  margin-top: 60px;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid #223e5e;
}
.footer-logo img {
  height: 48px;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #dfedfa;
  font-family: 'Montserrat', serif;
  font-size: 0.98rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  opacity: 1;
  text-decoration: underline;
}
.footer-contact {
  color: #e3eaf2;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-top: 7px;
}

/* ===== Mobile Burger Menu ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 19px;
  right: 22px;
  background: #fff;
  color: #18304B;
  font-size: 2.2rem;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  box-shadow: 0 1px 8px rgba(24,48,75,0.08);
  z-index: 201;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: background 0.2s, box-shadow 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F2F5F7;
  box-shadow: 0 3px 18px rgba(24,48,75,0.15);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 30px rgba(24,48,75,0.18);
  z-index: 205;
  transform: translateX(105vw);
  transition: transform 0.36s cubic-bezier(.77,.2,.18,1.05);
  display: flex;
  flex-direction: column;
  padding-top: 0;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  border: none;
  background: none;
  color: #18304B;
  font-size: 2.3rem;
  font-weight: 700;
  align-self: flex-end;
  margin: 16px 30px 0 0;
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.13s;
}
.mobile-menu-close:hover { color: #4A90A4; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 48px 0 0 35px;
}
.mobile-nav a {
  font-family: 'Montserrat', serif;
  font-size: 1.28rem;
  color: #18304B;
  padding: 8px 6px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
  margin-bottom: 5px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F2F5F7;
  color: #4A90A4;
}

/* ===== Cookie Consent Banner & Modal ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fff;
  color: #18304B;
  box-shadow: 0 -2px 18px rgba(24,48,75,0.08);
  z-index: 300;
  padding: 1.3rem 18px 1.07rem 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 1.04rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-left: 18px;
}
.cookie-banner button,
.cookie-banner .btn-cookie {
  border: none;
  border-radius: 22px;
  padding: 9px 28px;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 600;
  background: #18304B;
  color: #fff;
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.13s, color 0.16s;
  margin-right: 0;
  margin-bottom: 0;
  box-shadow: 0 1px 6px rgba(24,48,75,0.07);
}
.cookie-banner .btn-secondary {
  background: #F2F5F7;
  color: #18304B;
  border: 1px solid #4A90A4;
  margin-left: 0;
}
.cookie-banner button:hover, .cookie-banner .btn-cookie:hover,
.cookie-banner .btn-cookie:focus {
  background: #4A90A4;
  color: #fff;
}
.cookie-banner .btn-secondary:hover, .cookie-banner .btn-secondary:focus {
  background: #dbe7ec;
  color: #18304B;
}

.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: #fff;
  z-index: 400;
  box-shadow: 0 2px 30px rgba(24,48,75,0.18);
  border-radius: 18px;
  min-width: 350px;
  max-width: 96vw;
  padding: 32px 34px 26px 34px;
  transition: opacity 0.19s, transform 0.23s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h3 {
  font-size: 1.18rem;
  font-family: 'Montserrat', serif;
  margin-bottom: 13px;
}
.cookie-modal .cookie-categories {
  margin: 17px 0 23px 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Montserrat', serif;
}
.cookie-category input[type=checkbox] {
  accent-color: #4A90A4;
  width: 20px; height: 20px;
  border-radius: 6px;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .btn-cookie-close {
  background: none;
  color: #18304B;
  border: 1px solid #D6E0E7;
  padding: 9px 16px;
  border-radius: 18px;
  font-family: 'Montserrat', serif;
  cursor: pointer;
}
.cookie-modal .btn-cookie-close:hover,
.cookie-modal .btn-cookie-close:focus {
  background: #F2F5F7;
  color: #4A90A4;
}

/* ========= Utility Flex Classes ========= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {margin-bottom: 20px; position: relative;}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========= Forms, Address, etc ========= */
.contact-details {
  background: #F8FAFB;
  border-radius: 13px;
  padding: 20px 24px;
  color: #25405E;
  margin-bottom: 20px;
  font-size: 1rem;
  box-shadow: 0 0.5px 5px rgba(24,48,75,0.04);
}
.address-block {
  background: #E5EDF1;
  border-radius: 13px;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: center;
  min-height: 80px;
  margin: 18px 0 17px 0;
}
.address-block img {
  height: 38px; width: 38px;
  opacity: 0.84;
}

/* ========= Responsive & Media Queries ========= */
@media (max-width: 1020px) {
  .footer-main, .card-container, .service-list, .project-blocks, .content-grid, .testimonial-slider {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 21px;
  }
  .footer-main {
    gap: 22px;
    flex-wrap: wrap;
  }
}
@media (max-width: 820px) {
  .card, .service-card, .service-item, .project-highlight, .testimonial-card {
    min-width: 90vw;
    max-width: 510px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header .container {
    padding: 8px 9px;
  }
  .main-nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding: 0 7px;
    max-width: 99vw;
  }
  .hero {
    border-radius: 0 0 28px 28px;
    padding: 28px 0 20px 0;
    margin-bottom: 10px;
  }
  .content-wrapper,
  .section {
    padding: 25px 6px;
    gap: 15px;
  }
  .card-container, .service-list, .project-blocks, .testimonial-slider, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card, .service-card, .service-item, .project-highlight, .testimonial-card {
    min-width: 90vw;
    max-width: 99vw;
    padding: 18px 12px 19px 12px;
  }
  .testimonial-summary {
    padding: 17px 12px;
    margin-top: 21px;
  }
  .footer-main {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .price-notes, .service-inclusions {
    font-size: 0.99rem;
    padding: 8px 8px;
  }
  .cookie-modal {
    min-width: 90vw;
    padding: 14px 10px 8px 10px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.1rem; }
  .footer-logo img { height: 38px; }
  .cookie-banner { font-size: 0.96rem; padding: 0.65rem 6px 0.85rem 6px; }
}
@media (hover: hover) {
  .cta-primary:hover, .cta-secondary:hover,
  .footer-nav a:hover, .main-nav a:hover {
    filter: brightness(1.025);
  }
}

/* ===== Selection ===== */
::selection {
  background: #eaf6fa;
  color: #18304B;
}

/* ===== Scrollbar ===== */
body::-webkit-scrollbar {
    width: 13px;
    background: #f2f5f7;
}
body::-webkit-scrollbar-thumb {
    background: #e0e4ea;
    border-radius: 6px;
}
body::-webkit-scrollbar-thumb:hover {
    background: #b2c0d6;
}

/* ===== Animation Keyframes ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
.card, .testimonial-card, .service-card, .project-highlight {
  animation: fadeIn 0.65s cubic-bezier(.59,.32,.37,.9) both;
}

/* ===== Accessibility ===== */
:focus {
  outline: 2px solid #4A90A4;
  outline-offset: 1px;
}

/* ===== Misc ===== */
.section.cta-final, .cta-section {
  background: #18304B;
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 22px rgba(24,48,75,0.11);
}
.section.cta-final .cta-primary,
.cta-section .cta-primary {
  background: #fff;
  color: #18304B;
}
.section.cta-final .cta-primary:hover, .cta-section .cta-primary:hover { background: #F2F5F7; color: #4A90A4; }

/* End of Čistý Lesk elegant_classic style */