/* =============================================================
   Očchi S Fioc - style.css
   Elegant Classic Responsive CSS - Mobile First
   Only Flexbox for layouts, no CSS Grid/Columns
   ============================================================== */
/* ==== 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, 
main, 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; 
}

body {
  line-height: 1.5;
  background: #fff;
  color: #29323a;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
img {
  border-style: none;
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
button {
  cursor: pointer;
  background: none;
}

/* ==== Typography ==== */
:root {
  --font-display: 'Montserrat', Georgia, serif;
  --font-body: 'Roboto', 'Georgia', serif;
  --color-primary: #285E6B;
  --color-secondary: #E2F0F6;
  --color-accent: #FFD166;
  --color-text: #29323a;
  --color-white: #fff;
  --color-muted: #F7F8F9;
  --color-border: #D2D8DD;
  --color-shadow: rgba(40, 94, 107, 0.05);
  --color-shadow-strong: rgba(40, 94, 107, 0.11);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-white);
  min-height: 100vh;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  letter-spacing: 0.01em;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.17;
}
h1 {
  font-size: 2.6rem; /* 42px */
}
h2 {
  font-size: 2rem;  /* 32px */
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;  /* 24px */
}
h4 {
  font-size: 1.25rem; /* 20px */
}
h5, h6 {
  font-size: 1rem;    /* 16px */
}
p,
ul,
ol,
div.text-section {
  font-size: 1rem;   /* 16px */
  margin-bottom: 18px;
}
strong, b {
  font-weight: 700;
  color: var(--color-primary);
}

address,
div.text-section address {
  font-style: normal;
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 18px;
}

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

/* Section Spacing */
.section, main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-muted);
  border-radius: 20px;
  box-shadow: 0 2px 12px var(--color-shadow);
}
main > section:last-child, .section:last-child { margin-bottom: 0; }

/* ==== Cards & Feature Layouts ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 4px 16px var(--color-shadow-strong);
  padding: 28px 24px;
  flex: 1 1 320px;
  min-width: 250px;
  max-width: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 24px rgba(40,94,107,0.15);
  transform: translateY(-2px) scale(1.011);
}

.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 14px 0;
  flex: 1 1 200px;
  min-width: 170px;
  max-width: 100%;
}

ul > li, ol > li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  color: var(--color-primary);
  font-weight: 500;
}
ul > li img, ol > li img { 
  position: absolute;
  left: 0; top: 2px;
  width: 22px; height: 22px;
  display: inline-block;
}

ol {
  padding-left: 16px;
  color: var(--color-text);
}
ol > li {
  color: var(--color-text);
  font-weight: 400;
  padding-left: 0;
}
/* ==== Hero, CTA, Section Variants ==== */
.hero {
  background: var(--color-secondary);
  padding: 64px 0 50px 0;
  border-radius: 0 0 26px 26px;
  box-shadow: 0 8px 32px var(--color-shadow-strong);
  margin-bottom: 60px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.2rem;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.hero .cta-button {
  margin-top: 22px;
}

.contact-cta, .feedback-cta, .cta-section {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 2px 28px 0 rgba(40, 94, 107, 0.11);
}
.contact-cta h2, .feedback-cta h2, .cta-section h2, .contact-cta a, .feedback-cta a, .cta-section a {
  color: var(--color-accent);
}
.contact-cta a.cta-button, .feedback-cta a.cta-button, .cta-section a.cta-button {
  border-color: var(--color-accent);
  color: var(--color-primary);
  background: var(--color-accent);
}
.contact-cta address p, .contact-cta address a {
  color: #e7efe6;
}
/* ==== Testimonial Cards ==== */
.testimonials-preview .testimonial-card,
.testimonials-preview > .container > .content-wrapper > .testimonial-card,
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: #fff;
  color: #1d2d31;
  border-radius: 13px;
  box-shadow: 0 1px 10px var(--color-shadow-strong);
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-primary);
  min-width: 220px;
  transition: box-shadow 0.13s, border-color 0.18s;
}
.testimonial-card:hover { border-color: var(--color-accent); box-shadow: 0 6px 24px var(--color-shadow-strong); }
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: #20363b;
  margin-bottom: 10px;
}
.testimonial-card span {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 500;
}
.testimonial-card .star-rating {
  margin: 2px 0 6px 0;
  color: var(--color-accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
  font-family: var(--font-display);
}

/* ==== Buttons & Links ==== */
.cta-button,
button.cta-button,
.mobile-menu-toggle,
.mobile-menu-close,
.cookie-banner button,
.cookie-modal button {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 64px;
  border: 2px solid var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px var(--color-shadow);
  transition: background 0.19s, color 0.18s, box-shadow 0.2s, border 0.18s, transform 0.12s;
  outline: none;
  cursor: pointer;
  margin-right: 14px;
  margin-bottom: 11px;
}
.cta-button:hover, .cta-button:focus-visible {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
  box-shadow: 0 6px 24px var(--color-shadow);
  transform: scale(1.035);
}

/* Links in nav and elsewhere */
a {
  color: var(--color-primary);
  border-bottom: 1px solid transparent;
  transition: border 0.18s, color 0.15s;
}
a:hover, a:focus {
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
}

/* ==== Header & Navigation ==== */
header {
  background: var(--color-white);
  box-shadow: 0 3px 18px var(--color-shadow-strong);
  padding: 0;
  position: sticky;
  top: 0; left: 0; width: 100%;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
header img {
  height: 46px;
  margin-right: 36px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.04rem;
  color: var(--color-primary);
  font-weight: 600;
  padding: 6px 7px;
  border-bottom: 2px solid transparent;
  transition: color 0.14s, border 0.19s, background 0.14s;
  border-radius: 6px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  background: var(--color-secondary);
}
header .cta-button {
  margin-left: 24px;
}
/* ==== Footer ==== */
footer {
  background: var(--color-primary);
  padding: 36px 0 28px 0;
  color: #e6f4fa;
  font-family: var(--font-body);
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #e2f0f6;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 3px 9px;
  border-bottom: 1px dotted transparent;
  transition: color 0.15s, border 0.16s, background 0.14s;
  border-radius: 6px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
  background: rgba(255, 209, 102, 0.03);
  border-bottom: 1px dotted var(--color-accent);
}
.footer-branding {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-branding img {
  height: 34px;
  width: auto;
}
.footer-branding span {
  color: #e2f0f6;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

/* ==== Mobile-First Navigation ==== */
.mobile-menu-toggle {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 120;
  background: var(--color-primary);
  color: var(--color-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 12px var(--color-shadow-strong);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, transform 0.16s;
  cursor: pointer;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: scale(1.05);
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  color: var(--color-white);
  z-index: 160;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(110%);
  transition: transform 0.38s cubic-bezier(.65,0,.11,1);
  box-shadow: -12px 0 42px rgba(40, 94, 107, 0.17);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  margin: 24px 22px 8px 0;
  align-self: flex-end;
  box-shadow: 0 2px 12px var(--color-shadow);
  border: none;
  transition: background 0.15s, color 0.16s, transform 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  transform: scale(1.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  padding: 30px 42px 42px 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--color-white);
  padding: 10px 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.13s, background 0.15s;
  margin-bottom: 6px;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
@media (min-width: 980px) {
  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none!important; }
}
@media (max-width: 979px) {
  .main-nav,
  header .cta-button {
    display: none!important;
  }
  .mobile-menu-toggle { display: flex; }
}

/* ==== Cookie Banner/Modal ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1800;
  background: var(--color-white);
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -2px 24px var(--color-shadow-strong);
  padding: 18px 20px 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  font-size: 1rem;
  animation: fadein-appear 0.27s ease;
}
@keyframes fadein-appear {
  0% { opacity: 0; transform: translateY(42px); }
  100% { opacity: 1; transform: none; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 48px;
  padding: 10px 26px;
  font-size: 1rem;
  font-family: var(--font-display);
  margin: 0;
  transition: background 0.14s, color 0.14s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(32, 44, 74, 0.2);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-appear 0.17s;
}
.cookie-modal-content {
  background: var(--color-white);
  color: var(--color-text);
  padding: 32px 22px 20px 22px;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(40,94,107,0.18);
  max-width: 98vw;
  width: 410px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1rem;
}
.cookie-modal-content h2 {
  font-size: 1.4rem;
  margin-bottom: 13px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.cookie-modal-content .cookie-toggle {
  width: 32px;
  height: 18px;
  border-radius: 9px;
  background: var(--color-muted);
  position: relative;
  outline: none;
  margin-right: 8px;
}
.cookie-modal-content .cookie-toggle input {
  display: none;
}
.cookie-modal-content .cookie-toggle span {
  display: block;
  width: 18px; height: 18px;
  background: var(--color-border);
  border-radius: 50%;
  position: absolute;
  left: 0; top: 0;
  transition: background 0.17s, left 0.18s;
}
.cookie-modal-content .cookie-toggle input:checked + span {
  background: var(--color-primary);
  left: 14px;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 10px 18px;
}

/* ==== Responsive Layouts & Utilities ==== */
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
}
@media (max-width: 980px) {
  .container { max-width: 96vw; }
  .content-wrapper { gap: 18px; }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; padding: 0 10px; }
  .section, main > section { padding: 22px 7px; margin-bottom: 44px; }
  .card { padding: 18px 8px; min-width: 200px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .content-grid { flex-direction: column; gap: 15px; }
  .card-container { flex-direction: column; gap: 16px; }
  .testimonial-card { padding: 12px; }
  .footer-nav { gap: 10px; font-size: 0.97rem; }
  .footer-branding img { height: 24px; }
  .mobile-menu-close { font-size: 1.5rem; width: 40px; height: 40px; }
  header .container { padding: 11px 12px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.17rem; }
  .cta-button, button.cta-button { padding: 10px 14px; font-size: 1rem; }
  .footer-nav { flex-wrap: wrap; }
}

/* ==== Section and Card Utility Classes ==== */
.section, main > section {
  box-sizing: border-box;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container,
.content-grid {
  gap: 20px;
  flex-wrap: wrap;
}
.card {
  margin-bottom: 20px;
}
.text-image-section {
  gap: 30px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
}
.feature-item {
  gap: 15px;
}

/* ==== Map Placeholder Styling ==== */
.map-placeholder {
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: 15px;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  margin-bottom: 20px;
}

.map-placeholder img {
  width: 62px; height: 62px; margin-bottom: 7px;
}

/* ==== Forms, Inputs (future-proof) ==== */
input[type], textarea, select {
  background: var(--color-muted);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 9px;
  padding: 10px 16px;
  margin-bottom: 10px;
  width: 100%;
  font-size: 1rem;
  transition: border 0.14s, box-shadow 0.13s;
}
input[type]:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-primary);
  box-shadow: 0 2px 8px rgba(40,94,107,0.06);
  background: #f9ffff;
}
textarea { resize: vertical; min-height: 90px; }

/* ==== Miscellaneous ==== */
::-webkit-scrollbar {
  width: 10px;
  background: #f5f5f5;
}
::-webkit-scrollbar-thumb {
  background: #d4e2eb;
  border-radius: 8px;
}

/* ==== Utility Classes ==== */
.mt-4 { margin-top: 16px !important; }
.mb-4 { margin-bottom: 16px !important; }
.mr-4 { margin-right: 16px !important; }
.bold { font-weight: 700 !important; }
.center { text-align: center !important; }

/* ==== Focus States (Accessibility) ==== */
a:focus-visible,
button:focus-visible,
.cta-button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ==== Hide Native Focus For Mouse, Show for Keyboard ==== */
:focus:not(:focus-visible) {
  outline: none;
}

/* ==== Print Styles ==== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  .container, .section { box-shadow: none; background: #fff; }
  body { color: #000; }
}

/* ==== Z-index layering for components ==== */
header { z-index: 100; }
.cookie-banner { z-index: 1800; }
.cookie-modal { z-index: 2000; }
.mobile-menu { z-index: 160; }

/* ==== Page-specific: Thank-You, Terms, Policy (centered) ==== */
.thank-you-message,
.privacy-policy,
.terms-conditions,
.gdpr-info,
.cookie-policy {
  background: var(--color-muted);
  border-radius: 18px;
  box-shadow: 0 2px 16px var(--color-shadow-strong);
  padding: 36px 22px;
  margin-bottom: 45px;
}

/* ==== END OF style.css ==== */
