/* =======================
   VETUS GETAW PESCA - VINTAGE RETRO 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,
b, 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F2F7FA;
  color: #3E3123;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s linear;
}
img { max-width: 100%; display: block; border: 0; }
input, button, textarea, select {
  font: inherit;
  box-sizing: border-box;
  outline: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

/* --- FONT FACE (Retro/Vintage Fonts) --- */
@import url('https://fonts.googleapis.com/css?family=Oswald:700,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');

:root {
  --color-primary: #145374;
  --color-secondary: #37718E;
  --color-accent: #F2F7FA;
  --color-warning: #F7B801;
  --color-dark: #3E3123;
  --color-light: #FFFBEA;
  --color-paper: #EADBB6;
  --color-shadow: rgba(60, 36, 3, 0.13);
  --color-testimonial-bg: #F9F6F0;
  --color-success-green: #7DC383;
  --color-error-red: #BF4736;
  --font-display: 'Oswald', 'Special Elite', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --border-radius-base: 18px;
  --shadow-lg: 0 4px 24px var(--color-shadow);
  --shadow-sm: 0 1px 5px var(--color-shadow);
}

/* --- VINTAGE RETRO BACKGROUND PATTERNS --- */
body {
  background:
    repeating-linear-gradient(135deg, #F2F7FA 0 60px, #EADBB6 60px 120px);
}

/* --- VINTAGE RETRO DECORATIVE BORDER --- */
.section, .testimonial-card, .cta, .newsletter, .posts > div, .card, .card-container > div {
  border-radius: var(--border-radius-base);
  border: 2px solid #e5dab0;
  box-shadow: var(--shadow-sm);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-paper);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  text-shadow: 1px 1px 0 #e2d1a2;
}
h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.13;
}
h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.21;
}
h3 {
  font-size: 1.15rem;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 500;
}
p, li, a, span, input, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
}
strong {
  font-weight: 700;
  letter-spacing: 1px;
}

/* --- VINTAGE TEXT EFFECTS --- */
.hero h1, .hero h2 {
  font-family: 'Special Elite', var(--font-display);
  font-size: 2.35rem;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #145374 60%, #37718E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 0 #e2d1a2;
}

.cta h2, .cta-btn {
  font-family: var(--font-display);
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background-color: #FFFBEA;
  border-bottom: 2px solid #e5dab0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.desktop-nav a {
  font-family: var(--font-display);
  font-size: 1.08rem;
  padding: 6px 12px;
  border-radius: 9px;
  color: var(--color-secondary);
  background: none;
  position: relative;
  transition: background 0.17s, color 0.2s;
  margin-right: 2px;
}
.desktop-nav a:hover, .desktop-nav a:focus {
  background: var(--color-warning);
  color: #573c0a;
}
.cta-btn {
  display: inline-block;
  padding: 11px 32px 13px 36px;
  margin-left: 10px;
  background: var(--color-dark);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 1.6px;
  border-radius: 42px 20px 38px 18px/32px 28px 42px 19px;
  box-shadow: var(--shadow-lg);
  text-shadow: 1px 1px 0 #adbaaa9f;
  border: 2px solid #d9ba73;
  outline: none;
  transition: background 0.18s, color 0.21s, box-shadow 0.28s;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-warning);
  color: var(--color-dark);
  box-shadow: 0 6px 32px var(--color-shadow);
}

/* ----- MOBILE MENU ----- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.4rem;
  line-height: 1;
  padding: 8px 14px;
  color: var(--color-primary);
  background: none;
  border-radius: 8px;
  border: 2px solid #e2d1a2;
  cursor: pointer;
  z-index: 402;
  transition: background 0.14s, color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-warning);
  color: var(--color-dark);
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(244,234,188,0.97);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 32px 24px 8px 0;
  font-size: 2.2rem;
  color: var(--color-primary);
  background: none;
  padding: 9px 17px;
  border-radius: 8px;
  border: 2px solid #e2d1a2;
  transition: background 0.14s, color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--color-warning);
  color: var(--color-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 44px 0;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  padding: 16px 36px;
  color: var(--color-dark);
  margin: 3px 0;
  border-radius: 12px;
  background: none;
  transition: background 0.16s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-warning);
  color: var(--color-dark);
}

/* Hide mobile nav by default - show only on mobile */
@media (max-width: 992px) {
  .desktop-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (min-width: 993px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* --- HERO SECTIONS --- */
.hero {
  position: relative;
  min-height: 320px;
  background:  repeating-linear-gradient(133deg, #F2F7FA 0 50px, #EADBB6 50px 100px);
  display: flex;
  align-items: center;
  box-shadow: 0 8px 38px #f2e0ae2c;
  margin-bottom: 60px;
}
.hero .container,
.hero .content-wrapper {
  height: 100%;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

/* --- FEATURES (WHY US / SERVICES / PRODUCT ETC) --- */
.features {
  background: var(--color-paper);
  margin-bottom: 60px;
  padding: 40px 20px;
  border: 2px solid #d1b77b;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  align-items: center;
  margin-top: 12px;
}
.features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  background: none;
  border-radius: 9px;
  padding: 6px 0;
  color: var(--color-secondary);
  font-family: var(--font-body);
}
.features li img, .services-detailed li img {
  width: 32px; height: 32px; min-width: 24px; min-height: 24px;
  margin-right: 7px;
}

/* --- SERVICES SECTION (INDEX) --- */
.services {
  background: #fffbeae8;
  margin-bottom: 60px;
  padding: 40px 20px;
  border: 2px solid #e5dab0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-list > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: var(--color-light);
  border-radius: 13px;
  border: 2px solid #d9ba73;
  box-shadow: var(--shadow-sm);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, border 0.21s;
}
.service-list > div:hover {
  box-shadow: 0 6px 32px var(--color-shadow);
  border-color: #b68a36;
}

/* --- ABOUT/TEAM/QUICK CONTACT --- */
.about-short, .about-detailed, .team, .contact-quick, .consulting, .contact {
  background: #ffeec8;
  border: 2px solid #e5dab0;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--border-radius-base);
  box-shadow: var(--shadow-sm);
}
.team > .content-wrapper > div {
  background: var(--color-accent);
  border-radius: 8px;
  border-left: 5px solid var(--color-primary);
  margin-bottom: 20px;
  padding: 13px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
}
.contact-quick ul, .contact ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-quick li, .contact li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-quick li img, .contact li img {
  width: 28px; min-width:18px;
}

/* --- EXPERIENCE/PRODUCTS/SERVICES DETAILED --- */
.experience-list > .container > .content-wrapper > div,
.products > .container > .content-wrapper > ul > li,
.services-detailed > .container > .content-wrapper > ul > li {
  background: var(--color-light);
  border-radius: 14px;
  border: 2px solid #e5dab0;
  margin-bottom: 18px;
  padding: 17px 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1rem;
  position: relative;
}
.products > .container > .content-wrapper > ul,
.services-detailed > .container > .content-wrapper > ul  {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* --- POSTS (BLOG) --- */
.posts > .container > .content-wrapper > div {
  background: #fffbeae8;
  border-radius: var(--border-radius-base);
  border: 2px solid #d9ba73;
  box-shadow: var(--shadow-sm);
  padding: 18px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: box-shadow 0.17s, border 0.2s;
}
.posts > .container > .content-wrapper > div:hover {
  box-shadow: 0 8px 26px var(--color-shadow);
  border-color: #b68a36;
}
.posts h3 {
  color: var(--color-secondary);
}

/* --- NEWSLETTER --- */
.newsletter {
  background: var(--color-paper);
  border-radius: var(--border-radius-base);
  border: 2px solid #e5dab0;
  margin-bottom: 60px;
  padding: 33px 18px 27px 18px;
}
.newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  align-items: flex-end;
  margin-bottom: 10px;
}
.newsletter input[type='email'] {
  min-width: 180px;
  flex: 1 1 200px;
  padding: 11px 17px;
  border: 2px solid #c7ad89;
  border-radius: 8px;
  font-size: 1rem;
  background: #fffbeae8;
  margin-right: 4px;
  transition: border 0.18s;
}
.newsletter input[type='email']:focus {
  border: 2px solid #37718E;
}

/* --- FORMS / CONTACT FORMS --- */
form {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  width: 100%;
}
form input[type='text'],
form input[type='email'],
form input[type='tel'],
form textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 7px;
  border: 2px solid #c7ad89;
  font-size: 1rem;
  background: #fffbeae8;
  margin-bottom: 5px;
  resize: vertical;
  transition: border 0.17s;
}
form input:focus,
form textarea:focus {
  border-color: #37718E;
}
form textarea {
  min-height: 100px;
  font-family: var(--font-body);
}
form button.cta-btn {
  width: auto;
  min-width: 160px;
  align-self: flex-start;
}

/* --- TESTIMONIALS --- */
.testimonials {
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  gap: 26px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px;
  margin-bottom: 20px;
  background: var(--color-testimonial-bg);
  border: 2px solid #e5dab0;
  border-radius: 21px 18px 12px 24px/20px 21px 31px 29px;
  box-shadow: 0 2px 14px var(--color-shadow);
  color: #2d2712;
  font-size: 1.1rem;
  font-style: italic;
  position: relative;
  min-width: 220px;
}
.testimonial-card p {
  color: #234462;
  margin-bottom: 8px;
  font-weight: 500;
}
.testimonial-card span {
  font-size: 1rem;
  font-weight: bold;
  color: #CF780E;
  margin-left: 6px;
}
.testimonial-card span:last-child {
  color: #5E4921;
  font-style: normal;
  font-size: 0.98rem;
  font-weight: 400;
}

/* --- LEGAL PAGES --- */
.legal {
  background: #F9F6F0;
  border-radius: var(--border-radius-base);
  border: 2px solid #e5dab0;
  margin-bottom: 60px;
  padding: 36px 20px;
}
.legal h1, .legal h2, .legal h3 {
  color: #37718E;
}
.legal ul {
  list-style: disc inside;
  margin: 10px 0 10px 20px;
}
.legal ul li {
  margin-bottom: 6px;
}

/* --- CTA --- */
.cta {
  background: linear-gradient(95deg, #FFEABE 93%, #F9F6F0 100%);
  border: 2px solid #e5dab0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 60px;
  padding: 32px 18px 27px 18px;
}
.cta h2 {
  font-size: 1.56rem;
  color: var(--color-primary);
}

/* --- FOOTER --- */
footer {
  background: #37718E;
  color: var(--color-accent);
  width: 100%;
  padding: 45px 0 28px 0;
  border-top: 4px solid #e5dab0;
  font-family: var(--font-body);
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 7px;
}
.footer-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-decoration: underline 0.13em #e5dab0;
  transition: color 0.18s, text-shadow 0.21s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-warning);
  text-shadow: 1px 1px 0 #c1994a76;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  color: var(--color-light);
}
.contact-info div {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 1rem;
}
.contact-info img {
  width: 18px;
}
.hours {
  font-size: 0.98rem;
  color: #FFEABE;
  margin-top: 7px;
  letter-spacing: 0.7px;
}

/* --- CONFIRMATION/THANK-YOU --- */
.confirmation {
  background: #FFEABE;
  border: 2px solid #e5dab0;
  border-radius: var(--border-radius-base);
  padding: 53px 17px 47px 17px;
  margin-bottom: 60px;
  text-align: center;
  min-height: 220px;
}
.confirmation h1 {
  color: var(--color-primary);
  font-family: var(--font-display);
  margin-bottom: 16px;
}
.confirmation a.cta-btn {
  margin-top: 15px;
}

/* --- CARD & FLEX CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  padding: 20px 17px;
  background: #fffbeae8;
  border: 2px solid #d9ba73;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  position: relative;
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.17s, border 0.2s;
}
.card:hover {
  box-shadow: 0 6px 22px var(--color-shadow);
  border-color: #b68a36;
}
.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;
}

/* --- COOKIES BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1404;
  background: #EADBB6;
  border-top: 3px solid #37718E;
  box-shadow: 0 -2px 22px #2a1f0e13;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 18px 22px 18px;
  gap: 16px;
  font-family: var(--font-body);
  color: #3e3123;
  font-size: 1rem;
  animation: banner-in 0.5s cubic-bezier(.44,.82,.49,1.12) both;
}
@keyframes banner-in {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  min-width: 120px;
  padding: 9px 17px;
  font-size: 1rem;
  border-radius: 10px;
  font-weight: 600;
  border: 2px solid #d9ba73;
  background: #fffbeae8;
  color: #3e3123;
  box-shadow: var(--shadow-sm);
  transition: background 0.17s, border 0.18s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-warning);
  color: var(--color-dark);
  border-color: var(--color-dark);
}

/* --- COOKIE MODAL (PREFERENCES) --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2000; left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(31, 27, 16,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in .35s cubic-bezier(.27,1.22,.78,0.98);
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #FFFBEA;
  border: 3px solid #d9ba73;
  border-radius: 18px;
  width: 92vw; max-width: 390px;
  box-shadow: 0 12px 56px var(--color-shadow);
  padding: 39px 23px 21px 23px;
  position: relative;
  animation: popup-in .42s cubic-bezier(.39,1.21,.61,1.16);
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@keyframes popup-in {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1.0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.25rem;
  margin-bottom: 13px;
  color: var(--color-primary);
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 16px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #145374;
  border-radius: 5px;
  padding: 6px 7px;
  transition: background 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #ffeec8;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  padding: 7px 0;
}
.cookie-category label {
  font-weight: 500;
  color: #37610e;
}
.cookie-category .toggle {
  accent-color: #37718E;
  width: 20px; height: 20px;
  vertical-align: middle;
}
.cookie-modal-actions {
  margin-top: 17px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal-actions button {
  min-width: 120px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  header .container {
    flex-direction: row;
    gap: 7px;
    min-height: 52px;
  }
  .cta-btn {
    padding: 10px 20px 11px 22px;
    font-size: 1rem;
    border-radius: 17px 25px 28px 11px/19px 24px 21px 11px;
  }
  .hero {
    min-height: 160px;
    padding: 17px 0;
  }
  .section, .services, .features, .about-short, .team, .products, .consulting, .contact, .newsletter, .cta, .legal {
    padding: 18px 9px;
  }
  .service-list, .content-grid, .card-container, .posts > .container > .content-wrapper {
    flex-direction: column;
    gap: 19px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    padding: 18px 10px;
    gap: 14px;
  }
  .newsletter form {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .hero h1, .hero h2 {
    font-size: 1.13rem;
  }
}

/* ---  FOCUS STYLES & ACCESSIBILITY --- */
a:focus, button:focus, input:focus, .cta-btn:focus {
  outline: 2.5px solid #145374;
  outline-offset: 1.5px;
}

/* --- HOVER / TRANSITIONS / MICRO-INTERACTIONS --- */
.cta-btn,
.card,
.card-container > div,
.service-list > div,
.posts > .container > .content-wrapper > div,
.desktop-nav a,
.mobile-nav a,
.footer-nav a,
button {
  transition: box-shadow 0.18s, background 0.18s, border 0.19s, color 0.18s, text-shadow 0.18s, transform 0.17s;
}
.card:hover, .service-list > div:hover, .posts > .container > .content-wrapper > div:hover {
  transform: scale(1.018) translateY(-2px);
}

/* --- RETRO VINTAGE DETAILS (STRIPES, DOTS) --- */
.section:after {
  content: '';
  display: block;
  position: absolute;
  top: 19px; right: 23px;
  width: 62px; height: 15px;
  background-image: repeating-linear-gradient(90deg, #e5dab0, #e5dab0 5px, transparent 5px, transparent 10px);
  opacity: 0.24;
  z-index: 2;
  pointer-events: none;
}
.section:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 14px; left: 16px;
  width: 38px; height: 14px;
  background-image: repeating-linear-gradient(135deg, #b7894d, #b7894d 3px, transparent 3px, transparent 7px);
  opacity: 0.18;
  z-index: 2;
  pointer-events: none;
}

/* --- MISC. --- */
::-webkit-input-placeholder { color: #c4a45e; }
::-moz-placeholder { color: #c4a45e; }
:-ms-input-placeholder { color: #c4a45e; }
::placeholder { color: #c4a45e; }

hr {
  border: 0; border-top: 2px dotted #e5dab0; height:0; margin: 24px 0;
}

/* --- PRINT STYLES --- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
}

/* --- UTILITIES --- */
.d-none { display: none !important; }
.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.gap-12 { gap: 12px !important; }

/***************************
 * END VETUS GETAW PESCA CSS
 ***************************/