/* =============================
   RESET & BASE STYLES   
============================= */
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;
  box-sizing: border-box;
  font: inherit;
  vertical-align: baseline;
}
body {
  line-height: 1.5;
  background: #11191a;
  color: #eaf6ec;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  scroll-behavior: smooth;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #e1b973;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fffabd;
  outline: none;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (min-width: 900px) {
  section {
    padding: 60px 0;
    margin-bottom: 80px;
  }
}

/* =============================
   BRAND FONTS & HEADINGS
============================= */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.25rem; letter-spacing: -1px; }
h2 { font-size: 1.75rem; margin-bottom: 24px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

@media (min-width: 900px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.5rem; }
}

p, li, blockquote {
  font-size: 1rem;
  color: #c5dac9;
  line-height: 1.7;
}

ul, ol {
  margin-left: 26px;
  margin-bottom: 22px;
  color: #c5dac9;
}
li { margin-bottom: 8px; }
blockquote {
  font-style: italic;
  border-left: 3px solid #e1b973;
  padding-left: 20px;
  color: #12251a;
  background: #fffbe9;
  margin-bottom: 12px;
}


/* =============================
   CONTAINER & LAYOUTS
============================= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  max-width: 750px;
  margin: 0 auto;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  background: #192b22;
  border: 1.5px solid #385d45;
  box-shadow: 0 2px 16px 0 rgba(54, 82, 62, 0.13);
  border-radius: 18px;
  padding: 30px 24px 24px 24px;
  min-width: 220px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}
.feature img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 8px #e1b97375);
  margin-bottom: 4px;
}
.feature:hover {
  border-color: #e1b973;
  box-shadow: 0 4px 22px 5px #e1b97355;
  transform: translateY(-2px) scale(1.02);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  padding: 24px 18px;
  background: #1f3228;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(54,82,62,0.06);
  position: relative;
  transition: box-shadow 0.2s, transform 0.15s;
  border: 1.2px solid #385d45;
}
.card:hover {
  box-shadow: 0 6px 28px 0 #e1b97354;
  transform: translateY(-3px) scale(1.01);
  border-color: #e1b973;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 22px;
  background: #fffbe9;
  border-radius: 13px;
  border: 1px solid #e1b973;
  color: #222d21;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px 0 rgba(170,158,96,0.07);
  min-width: 260px;
  flex: 1 1 290px;
  max-width: 370px;
  transition: box-shadow 0.2s, transform 0.13s;
}
.testimonial-card blockquote {
  margin: 0;color:#36523e;background: none; border: none; padding-left: 0;
  font-weight: 500; font-size:1.07rem;
}
.testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #36523e;
  font-weight: 700;
  margin-top: 8px;
}


@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .content-grid,
  .features-grid,
  .testimonials,
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

/* =============================
   HEADER & MAIN NAVIGATION
============================= */
header {
  width: 100%;
  background: #18271e;
  box-shadow: 0 4px 18px 0 #36523e15;
  position: sticky;
  top: 0; left: 0;
  z-index: 999;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 10px 16px;
}
.logo img {
  height: 48px;
  transition: filter 0.2s;
}
.logo:focus img,
.logo:hover img {
  filter: drop-shadow(0 0 8px #e1b97390);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #eaf6ec;
  padding: 7px 5px;
  transition: color 0.18s, border-bottom 0.17s;
  border-bottom: 2px solid transparent;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #e1b973;
  border-bottom: 2px solid #e1b973;
}
.main-nav .primary {
  color: #fffbe9;
  background: #36523e;
  border-radius: 8px;
  border: none;
  padding: 8px 21px;
  margin-left: 12px;
  font-weight: 700;
  box-shadow: 0 3px 14px #36523e22;
  transition: background 0.2s, color 0.18s;
  position: relative;
}
.main-nav .primary:hover {
  background: #e1b973;
  color: #18271e;
}
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    background: none;
    border: none;
    color: #e1b973;
    cursor: pointer;
    z-index: 1002;
    padding: 6px 14px 6px 6px;
    margin-left: 8px;
    transition: color 0.15s, background 0.15s;
  }
  .mobile-menu-toggle:focus,
  .mobile-menu-toggle:hover {
    color: #ffe59d;
    background: #192b22;
    border-radius: 6px;
  }
}

/* =============================
   MOBILE SLIDE MENU
============================= */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100vw; height: 100vh;
  background: rgba(18,39,29,0.98);
  box-shadow: -10px 0 32px 0 #36523e64;
  z-index: 2000;
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(.71,.3,.33,1.14);
  display: flex;
  flex-direction: column;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #e1b973;
  font-size: 2.3rem;
  padding: 12px 24px 8px 12px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.22s;
  z-index: 2011;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #ffe59d;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  margin-top: 12px;
  padding: 0 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fffbe9;
  padding: 8px 0;
  transition: color 0.18s, border-bottom 0.13s;
  border-bottom: 1.2px solid transparent;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #e1b973;
  border-bottom: 1.2px solid #e1b973;
}
.mobile-nav .primary {
  background: #e1b973;
  color: #36523e;
  border-radius: 10px;
  padding: 8px 16px;
  margin-top: 16px;
  font-weight: 700;
  box-shadow: 0 2px 10px #e1b97333;
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =============================
   HERO SECTION
============================= */
.hero {
  background: linear-gradient(120deg, #151e17 10%, #36523e 70%);
  min-height: 340px;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 12px 56px 0 #36523e22;
  padding-top: 34px;
  padding-bottom: 48px;
  margin-bottom: 60px;
}
.hero h1 {
  color: #eefee4;
  text-shadow: 0 2px 14px #18271e33;
}
.hero p {
  color: #cdecd2;
  font-size: 1.17em;
  margin: 14px 0 20px 0;
  max-width: 570px;
}
.hero .cta {
  margin-top: 16px;
}

@media (max-width: 768px) {
  .hero { border-radius: 0 0 18px 18px; padding: 28px 0 34px 0; }
}

/* =============================
   BUTTONS & CTA
============================= */
.cta,
button, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-block;
  background: #e1b973;
  color: #36523e;
  border: none;
  outline: none;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 12px;
  padding: 11px 32px;
  box-shadow: 0 6px 18px #e1b97349;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.19s, box-shadow 0.18s, color 0.19s, border 0.17s;
  position: relative;
}
.cta.primary {
  background: #36523e;
  color: #fffbe9;
  border: 2.2px solid #e1b973;
}
.cta.primary:hover, .cta.primary:focus {
  background: #e1b973;
  color: #18271e;
  box-shadow: 0 4px 22px #e1b97348;
}
.cta:hover, .cta:focus, button:hover, input[type="submit"]:hover {
  background: #ffe59d;
  color: #2e4233;
}

/* Subtle neon accents for focus + border */
.cta:focus-visible, button:focus-visible {
  outline: 2.5px solid #bdffb7;
  outline-offset: 3px;
  border-color: #e1b973;
}

/* =============================
   CONTACT INFO & FOOTER
============================= */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
  margin-bottom: 24px;
}
.contact-info > div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #e1b973;
  background: #1c2120;
  padding: 10px 13px;
  border-radius: 8px;
  min-width: 220px;
}
.contact-info img {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 0 4px #e1b97380);
}
.address-detail {
  color: #bdddb7;
  font-weight: 500;
  margin-bottom: 7px;
  padding-left: 4px;
}
.directions {
  color: #c5dac9;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

footer {
  background: #18271e;
  padding: 42px 0 26px 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 18px #e1b9730f;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 22px;
  justify-content: center;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #e1b973;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: border-bottom 0.18s, color 0.13s;
}
.footer-nav a:hover { color: #fffbe9; border-bottom:1.5px solid #e1b973; }
.footer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.99rem;
  color: #bdddb7;
  padding-top: 8px;
}
.footer-info img {
  width: 32px;
  height: 32px;
}

/* =============================
   BLOG HIGHLIGHTS
============================= */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
}
.article-highlight {
  background: #1f3228;
  border-left: 5px solid #e1b973;
  border-radius: 10px;
  padding: 18px 22px 18px 18px;
  color: #eaf6ec;
  min-width: 220px;
  max-width: 360px;
  flex: 1 1 241px;
  margin-bottom: 12px;
  transition: background 0.18s, box-shadow 0.15s, border-left 0.16s;
}
.article-highlight h3 {
  color: #e1b973;
  margin-bottom: 10px;
  font-size: 1.17rem;
}
.article-highlight:hover {
  background: #282e22;
  border-left: 5px solid #ffe9b7;
  box-shadow: 0 3px 25px #e1b97321;
}

/* =============================
   CARDS, SERVICES & VALUES
============================= */
.service-detail {
  background: #192b22;
  border-radius: 12px;
  border: 1.3px solid #385d45;
  padding: 18px 20px 14px 20px;
  color: #c5dac9;
  margin-bottom: 20px;
  flex: 1 1 231px;
  transition: box-shadow 0.14s, border 0.14s, transform 0.14s;
}
.service-detail h3 {
  color: #e1b973;
  margin-bottom: 7px;
  font-size: 1.10rem;
}
.service-detail:hover {
  border-color: #e1b973;
  box-shadow: 0 3px 16px #e1b97322;
  transform: translateY(-2px);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============================
   OL & UL Custom Bullets
============================= */
ul li::marker {
  color: #e1b973;
  font-size: 1.18em;
}
ol {
  counter-reset: myCounter;
}
ol li {
  position: relative;
  padding-left: 0.4em;
}
ol li:before {
  counter-increment: myCounter;
  content: counter(myCounter) '.';
  color: #e1b973;
  font-family: 'Montserrat', Arial, sans-serif;
  position: absolute;
  left: -1.8em;
  font-weight: bold;
}

/* =============================
   SPACING & FLEX ADJUSTMENTS
============================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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;
}

/* =============================
   RESPONSIVE MEDIA QUERIES
============================= */
@media (max-width: 900px) {
  .footer-nav { gap: 12px; }
  .contact-info > div { font-size: 0.96rem; }
}
@media (max-width: 700px) {
  .footer-info {flex-direction: column; gap:0;}
}
@media (max-width: 650px) {
  .footer-info img {width: 20px;height:20px;}
}
@media (max-width: 570px) {
  .container { padding: 0 4px; }
  .footer-nav { gap: 6px; font-size: 0.97rem; }
  footer { padding: 27px 0 14px 0; }
}

/* =============================
   SCROLLBAR (Futuristic Style)
============================= */
::-webkit-scrollbar {
  width: 8px;
  background: #1f3228;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg,#36523e 30%,#e1b973 90%);
  border-radius: 8px;
}

html {
  scrollbar-color: #e1b973 #35563a;
  scrollbar-width: thin;
}

/* =============================
   ANIMATIONS & EFFECTS
============================= */
@keyframes fadeInUp {
  0% { opacity:0; transform: translateY(24px); }
  100% { opacity:1; transform: translateY(0); }
}
.hero,.feature,.card,.testimonial-card,.article-highlight {
  animation: fadeInUp 0.7s cubic-bezier(.48,.08,.27,1.01) 0.1s both;
}

/* =============================
   COOKIE CONSENT BANNER
============================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #36523e;
  color: #fffbe9;
  z-index: 3001;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px 18px 16px;
  box-shadow: 0 -4px 44px #e1b97335;
  gap: 16px;
  font-size: 1rem;
  animation: fadeInUp 0.7s;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  margin-top: 9px;
}
.cookie-btn,
.cookie-btn-settings {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 7px;
  border: none;
  padding: 7px 20px;
  background: #e1b973;
  color: #36523e;
  transition: background 0.17s, color 0.15s;
  cursor: pointer;
  margin-right: 2px;
}
.cookie-btn-reject {
  background: #fffbe9;
  color: #36523e;
  border: 1.4px solid #e1b973;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-btn-settings:focus {
  background: #fffabd;
  color: #2e4233;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #e1b973;
  color: #18271e;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  bottom: 50%; left:50%; transform: translate(-50%,50%);
  background: #1f3228;
  color: #fffbe9;
  box-shadow: 0 8px 66px #36523e90;
  border-radius: 16px;
  z-index: 4002;
  padding: 28px 32px 30px 32px;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  max-width: 92vw;
  animation: fadeInUp 0.35s;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #e1b973;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 9px 0;
}
.cookie-category label {
  font-size: 1.05rem;
  color: #fffbe9;
  font-weight: 600;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #e1b973;
  border-radius: 20px;
  position: relative;
  outline: none;
  border: 1.25px solid #e1b973;
  box-shadow: 0 2px 6px #e1b97311;
  background: #bdddb7;
  transition: background 0.17s;
  cursor: pointer;
}
.cookie-modal .cookie-toggle:checked {
  background: #e1b973;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  width: 16px;
  height: 16px;
  position: absolute;
  top: 1.8px;left:3.2px;
  background: #fffbe9;
  border-radius: 100px;
  transition: left 0.19s;
  box-shadow: 0 1px 4px #965c0a22;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 19px;
}
.cookie-modal .cookie-category--essential label {
  color: #bdddb7;
}
.cookie-modal .cookie-category--essential .cookie-toggle {
  background: #e1b973 !important;
  opacity: .7;
  pointer-events: none;
}
.cookie-modal__actions {
  display: flex;
  gap: 13px;
  margin-top: 15px;
  justify-content: flex-end;
}
.cookie-modal__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #e1b973;
  font-size: 1.7rem;
  cursor: pointer;
  position: absolute;
  top: 10px; right: 18px;
  transition: color 0.16s;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  color: #fffbe9;
}
@media (max-width: 420px) {
  .cookie-modal { padding: 19px 8px 24px 8px; min-width: 220px; }
}

/* =============================
   MODERN FUTURISTIC ACCENTS
============================= */
.feature, .card, .testimonial-card, .service-detail, .article-highlight {
  box-shadow: 0 0 0 #fffbe9;
  border: 1.4px solid #385d45;
  position: relative;
}
.feature:hover::after, .card:hover::after, .testimonial-card:hover::after, .service-detail:hover::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 6px; right: 16px;
  width: 22px; height: 2px;
  background: linear-gradient(90deg,#36523e 0%,#e1b973 100%);
  border-radius: 4px;
  opacity: 0.8;
}


/**************************************
* END OF style.css FOR PRETISAURA VERDE
***************************************/
