/* === 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;
}
html {
  scroll-behavior: smooth;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  background: #F5F7FA;
  color: #1A232E;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #233447;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}
ul, ol {
  list-style-position: inside;
}

/* === LUXURY PREMIUM THEME PALETTE === */
:root {
  --color-primary: #233447;
  --color-secondary: #3E5568;
  --color-accent: #F5F7FA;
  --color-gold: #D4AF37;
  --color-gold-dark: #B39528;
  --color-gray: #E5E7ED;
  --color-text: #1A232E;
  --color-light: #FAFBFC;
  --color-link-hover: #67C8B2;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  line-height: 1.16;
  color: var(--color-primary);
  font-weight: 600;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
p, ul, ol {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 16px;
}
strong {
  color: var(--color-primary);
  font-weight: 700;
}
blockquote {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 600;
  border-left: 4px solid var(--color-gold);
  background: var(--color-light);
  padding: 18px 24px;
  margin: 0 0 8px 0;
}
cite {
  font-size: 0.95rem;
  color: var(--color-gold-dark);
  font-style: italic;
}

/* === CONTAINER & FLEX LAYOUTS === */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(35, 52, 71, 0.08), 0 1.5px 4px 0 rgba(212, 175, 55, 0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px 0 rgba(35, 52, 71, 0.10);
  padding: 32px 26px;
  border: 1.5px solid var(--color-gray);
  transition: box-shadow 0.26s, border-color 0.26s;
}
.card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 12px 40px -6px rgba(212, 175, 55, 0.13), 0 8px 32px -8px rgba(35, 52, 71, 0.10);
  z-index: 2;
}
.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;
  background: var(--color-light);
  border-radius: 18px;
  border: 1.5px solid var(--color-gold);
  box-shadow: 0 3px 10px 0 rgba(212, 175, 55, 0.07);
  margin-bottom: 20px;
  flex-direction: column;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* === NAVIGATION === */
header {
  box-shadow: 0 2px 12px 0 rgba(35, 52, 71, 0.04);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.main-navigation {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 16px 20px;
  justify-content: flex-start;
}
.main-navigation a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 7px 14px;
  border-radius: 7px;
  position: relative;
  transition: background 0.19s, color 0.17s;
}
.main-navigation a:hover, .main-navigation a:active {
  background: var(--color-gold);
  color: #fff;
}
.main-navigation img {
  height: 38px;
  width: auto;
  margin-right: 12px;
}
.main-navigation .cta-primary {
  margin-left: auto;
  background: var(--color-gold);
  color: #fff;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 17px;
  box-shadow: 0 2px 8px 0 rgba(35, 52, 71, 0.12);
  letter-spacing: 0.01em;
  border: none;
  transition: background 0.22s, box-shadow 0.22s;
  outline: none;
}
.main-navigation .cta-primary:hover, .main-navigation .cta-primary:focus {
  background: var(--color-gold-dark);
  box-shadow: 0 5px 16px 0 rgba(212, 175, 55, 0.18);
  color: #fff;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  margin-left: auto;
  padding: 8px 14px;
  border-radius: 10px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus {
  background: var(--color-gray);
  outline: none;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(35,52,71, 0.98);
  z-index: 3000;
  opacity: 1;
  transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.21s;
  transform: translateX(100%);
}
.mobile-menu.open {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  margin: 20px 26px 0 0;
  cursor: pointer;
  padding: 10px;
  border-radius: 9px;
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(212,175,55,0.21);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-top: 45px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  padding: 15px 34px;
  border-radius: 15px;
  transition: background 0.16s, color 0.13s;
  margin-bottom: 2px;
}
.mobile-nav a:hover, .mobile-nav a:active {
  background: var(--color-gold);
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  .main-navigation .cta-primary {
    margin-left: 0;
  }
}
@media (max-width: 900px) {
  .main-navigation {
    gap: 18px;
    font-size: 0.95rem;
  }
}
@media (max-width: 800px) {
  .main-navigation {
    gap: 13px;
    padding: 13px 8px;
  }
  .main-navigation a {
    font-size: 0.97rem;
    padding: 7px 6px;
  }
  .container {
    max-width: 98vw;
    padding: 0 9px;
  }
}
@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 4px;
  }
  .content-wrapper, .section {
    padding: 18px 4px;
    margin-bottom: 38px;
    border-radius: 15px;
  }
}

/* === FLEXBOX RESPONSIVENESS === */
@media (max-width: 768px) {
  .text-image-section,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 18px 10px;
  }
}

/* === BUTTONS & CTA === */
.cta-primary,
button, input[type="submit"] {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: var(--color-gold);
  color: #fff;
  padding: 12px 32px;
  border-radius: 22px;
  border: none;
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 rgba(212,175,55,.11);
  cursor: pointer;
  transition: background 0.19s, transform 0.13s, box-shadow 0.2s;
  letter-spacing: 0.02em;
  outline: none;
  position: relative;
  margin-top: 8px;
}
.cta-primary:hover,
button:hover, input[type="submit"]:hover, .cta-primary:focus, button:focus {
  background: var(--color-gold-dark);
  color: #fff;
  transform: translateY(-1.5px) scale(1.03);
  box-shadow: 0 7px 22px 0 rgba(212,175,55,0.17);
}
/* Secondary Button */
button.secondary, .btn-secondary {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-gold);
  font-weight: 700;
}
button.secondary:hover, .btn-secondary:hover {
  background: var(--color-gold);
  color: #fff;
}

/* === TABLES === */
table {
  width: 100%;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  border-collapse: collapse;
  box-shadow: 0 4px 16px 0 rgba(35,52,71,0.07);
}
thead tr {
  background: var(--color-gray);
}
thead th {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  padding: 13px 10px;
  font-weight: 700;
  font-size: 1.04rem;
}
tbody td {
  color: var(--color-text);
  padding: 13px 10px;
  border-bottom: 1px solid var(--color-gray);
  font-size: 1rem;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* === TAGS (BLOG) === */
.tag {
  display: inline-block;
  background: var(--color-gold);
  color: #fff;
  border-radius: 13px;
  padding: 4px 16px;
  font-size: 0.97rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-right: 10px;
  margin-top: 5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* === INPUTS and SEARCH === */
input,
input[type="search"] {
  border: 1.5px solid var(--color-gold);
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  margin-bottom: 16px;
  width: 100%;
  transition: border 0.16s;
  outline: none;
}
input:focus {
  border-color: var(--color-primary);
}

/* === FOOTER === */
footer {
  background: #fff;
  padding: 36px 0 18px 0;
  border-top: 1.5px solid var(--color-gray);
  margin-top: 45px;
}
.footer-menu {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-bottom: 11px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: var(--color-primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 7px;
  transition: background 0.17s, color 0.13s;
}
.footer-menu a:hover {
  background: var(--color-gold);
  color: #fff;
}
footer small {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-secondary);
  opacity: 0.77;
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 9000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(4px);
  border-top: 2px solid var(--color-gold);
  box-shadow: 0 -6px 36px 0 rgba(212,175,55,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 22px 30px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  animation: fadeInUp .7s ease;
}
.cookie-consent-banner p {
  margin-bottom: 0;
  flex: 2 0 125px;
}
.cookie-consent-banner button {
  margin: 0 5px 0 0;
  padding: 8px 22px;
  font-size: 1rem;
  border-radius: 11px;
  border: none;
  box-shadow: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-consent-banner .accept {
  background: var(--color-gold);
  color: #fff;
  font-weight: 700;
}
.cookie-consent-banner .accept:hover {
  background: var(--color-gold-dark);
}
.cookie-consent-banner .reject {
  background: #fff;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold-dark);
  font-weight: 600;
}
.cookie-consent-banner .reject:hover {
  background: var(--color-gold);
  color: #fff;
}
.cookie-consent-banner .settings {
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
}
.cookie-consent-banner .settings:hover {
  background: var(--color-gold);
}

@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 14px 10px;
    font-size: 0.98rem;
  }
  .cookie-consent-banner button {
    padding: 11px 12px;
    margin-bottom: 7px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 46%;
  z-index: 9900;
  transform: translate(-50%, -50%) scale(1);
  max-width: 94vw;
  width: 440px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 48px 0 rgba(35,52,71,0.16),0 2px 8px 0 rgba(212,175,55,0.07);
  padding: 44px 32px 26px 32px;
  animation: fadeIn .25s cubic-bezier(.32,0,.01,1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-size: 1.4rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  margin-bottom: 11px;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--color-gold);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal .close {
  background: none;
  border: none;
  font-size: 1.34rem;
  color: var(--color-gold-dark);
  position: absolute;
  top: 12px;
  right: 20px;
  cursor: pointer;
}
@media (max-width:500px) {
  .cookie-modal { padding: 22px 6vw 18px 6vw; }
  .cookie-modal .modal-actions { justify-content: center; gap:7px; }
}

@keyframes fadeIn {
  0% {opacity:0;transform:translate(-50%,-60%) scale(.85);}
  100%{opacity:1;transform:translate(-50%,-50%) scale(1);}
}
@keyframes fadeInUp {
  0% { opacity:0; transform:translateY(40px); }
  100%{ opacity:1; transform:none; }
}

/* === LISTS, TEXT SECTIONS, AND MISC === */
ul, ol {
  padding-left: 15px;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 7px;
  padding-left: 6px;
  font-size: 1rem;
  color: var(--color-primary);
  line-height: 1.7;
}
.text-section {
  margin-bottom: 32px;
}
.text-section h2 {
  margin-top: 20px;
}

/* === ARTICLE === */
article {
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(35,52,71,0.07), 0 2px 8px 0 rgba(212,175,55,0.05);
  padding: 26px 18px;
  margin-bottom: 24px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 5px solid var(--color-gold);
}

/* === RESPONSIVE FONTSCALE === */
@media (max-width: 500px) {
  h1 { font-size: 1.72rem; }
  h2 { font-size: 1.24rem; }
  h3 { font-size: 1.01rem; }
  .content-wrapper, .section { padding: 10px 2px; }
}

/* === MICRO-INTERACTIONS === */
.card, .testimonial-card, .cta-primary, .cookie-consent-banner, .cookie-modal {
  transition: box-shadow 0.22s, border 0.23s, background 0.17s, transform 0.14s;
}
.card:active, .testimonial-card:active {
  transform: scale(0.98);
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px 0 rgba(212,175,55,0.14);
  border-color: var(--color-gold-dark);
}

/* === ACCENT DETAILS === */
hr {
  border: none;
  border-top: 2.5px solid var(--color-gold);
  margin: 36px 0;
  opacity: 0.2;
}

/* === SCROLLBAR STYLES === */
::-webkit-scrollbar {
  width: 11px;
  background: var(--color-accent);
  border-radius: 9px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 9px;
}

/* === SELECTION === */
::selection {
  background: var(--color-gold);
  color: #fff;
}
::-moz-selection {
  background: var(--color-gold);
  color: #fff;
}

/* === ACCESSIBILITY === */
a, button, input, [tabindex]:not([tabindex="-1"]) {
  transition: outline 0.18s;
}
:focus-visible {
  outline: 2.5px solid var(--color-gold);
  outline-offset: 1.5px;
}

/* === OVERRIDES FOR UTILITY CLASSES, IF ANY === */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* === Z-INDEX SANITY CHECKS === */
header {
  z-index: 20 !important;
}
.mobile-menu {
  z-index: 3000 !important;
}
.cookie-consent-banner {
  z-index: 9000 !important;
}
.cookie-modal {
  z-index: 9900 !important;
}

/* END OF STYLE.CSS for ISKRA DRIVE */
