/* VORTEX GRID - MONOCHROME SOPHISTICATED STYLE.CSS */

/* =====================
   CSS RESET & BASE
===================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #181818;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  background-color: #F7F7F7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1A3365;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D0A13C;
  outline: none;
}

/* =====================
   TYPOGRAPHY
===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #181818;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
}
p, ul, ol {
  margin-bottom: 18px;
  color: #232323;
}
strong {
  font-weight: 700;
  color: #1A3365;
}

/* =====================
   CONTAINER & LAYOUT
===================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(30,30,30,0.07);
}

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 8px;
  }
}

/* =====================
   FLEXBOX PATTERNS
===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(30,30,30,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  flex: 1 1 320px;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(30,30,30,0.13);
  transform: translateY(-4px) scale(1.02);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F7F7F7;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(30,30,30,0.06);
  margin-bottom: 20px;
  color: #181818;
  font-style: italic;
  position: relative;
  min-width: 260px;
  flex: 1 1 320px;
}
.testimonial-card p {
  color: #181818;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #555;
  font-size: 0.98rem;
  font-style: normal;
  margin-left: auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30,30,30,0.05);
  padding: 20px 18px;
  margin-bottom: 20px;
}

/* =====================
   NAVIGATION
===================== */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(30,30,30,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
nav > a img {
  height: 38px;
  width: auto;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  align-items: center;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1A3365;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
nav ul li a:hover, nav ul li a:focus {
  background: #1A3365;
  color: #fff;
}
.cta-btn {
  background: #1A3365;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 28px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(30,30,30,0.07);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  margin-left: 18px;
  letter-spacing: 0.03em;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #D0A13C;
  color: #181818;
  box-shadow: 0 4px 24px rgba(208,161,60,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* =====================
   MOBILE NAVIGATION
===================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1A3365;
  cursor: pointer;
  margin-left: 12px;
  z-index: 120;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: #D0A13C;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,20,20,0.97);
  z-index: 200;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  animation: slideInMenu 0.35s cubic-bezier(.4,0,.2,1);
}
@keyframes slideInMenu {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #D0A13C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: flex-start;
  padding: 36px 36px 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #D0A13C;
  background: rgba(255,255,255,0.04);
}

@media (max-width: 1024px) {
  nav ul, nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =====================
   HERO & FEATURE GRIDS
===================== */
.feature_grid, .service_grid, .team_photos, .blog_list, .faq_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature_grid > div, .service_grid > div, .team_photos > div, .blog_list > div, .faq_list > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30,30,30,0.05);
  padding: 22px 18px;
  flex: 1 1 260px;
  min-width: 220px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature_grid > div:hover, .service_grid > div:hover, .team_photos > div:hover, .blog_list > div:hover, .faq_list > div:hover {
  box-shadow: 0 6px 24px rgba(30,30,30,0.13);
  transform: translateY(-2px) scale(1.01);
}

@media (max-width: 900px) {
  .feature_grid, .service_grid, .team_photos, .blog_list, .faq_list {
    gap: 16px;
  }
  .feature_grid > div, .service_grid > div, .team_photos > div, .blog_list > div, .faq_list > div {
    min-width: 180px;
    padding: 16px 10px;
  }
}
@media (max-width: 600px) {
  .feature_grid, .service_grid, .team_photos, .blog_list, .faq_list {
    flex-direction: column;
    gap: 12px;
  }
  .feature_grid > div, .service_grid > div, .team_photos > div, .blog_list > div, .faq_list > div {
    min-width: 0;
    width: 100%;
    padding: 14px 6px;
  }
}

.value_list, .feature_list, .service_list, .process_steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
  padding-left: 18px;
}
.value_list li, .feature_list li, .service_list li, .process_steps li {
  color: #232323;
  font-size: 1.05rem;
  margin-bottom: 0;
  padding-left: 0;
}
.process_steps {
  list-style: decimal inside;
}

/* =====================
   BLOG & ARTICLE CARDS
===================== */
.article_card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30,30,30,0.05);
  padding: 22px 18px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.article_card:hover {
  box-shadow: 0 6px 24px rgba(30,30,30,0.13);
  transform: translateY(-2px) scale(1.01);
}
.article_card span {
  display: block;
  color: #888;
  font-size: 0.95rem;
  margin-top: 10px;
}

/* =====================
   CONTACT DETAILS
===================== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.contact-details a {
  color: #1A3365;
  text-decoration: underline;
  transition: color 0.18s;
}
.contact-details a:hover {
  color: #D0A13C;
}
.map {
  background: #F7F7F7;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 18px;
  color: #232323;
}

/* =====================
   FOOTER
===================== */
footer {
  background: #181818;
  color: #fff;
  padding: 36px 0 18px 0;
  margin-top: 60px;
}
footer .content-wrapper {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.98rem;
  margin-bottom: 8px;
  justify-content: center;
}
.footer-menu a {
  color: #fff;
  opacity: 0.82;
  transition: color 0.18s, opacity 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #D0A13C;
  opacity: 1;
}
.footer-contact-short {
  color: #bbb;
  font-size: 0.98rem;
  margin-bottom: 8px;
  text-align: center;
}
.footer-brand-logo img {
  height: 32px;
  width: auto;
  filter: grayscale(1) brightness(1.2);
  opacity: 0.85;
}

@media (max-width: 600px) {
  footer {
    padding: 24px 0 10px 0;
  }
  .footer-menu {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }
}

/* =====================
   COOKIE CONSENT BANNER
===================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #232323;
  color: #fff;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  box-shadow: 0 -2px 24px rgba(30,30,30,0.13);
  gap: 24px;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.35s, transform 0.35s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 20px;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin-left: 0;
}
.cookie-banner .accept {
  background: #1A3365;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #D0A13C;
  color: #181818;
}
.cookie-banner .reject {
  background: #fff;
  color: #1A3365;
  border: 1px solid #1A3365;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #D0A13C;
  color: #181818;
  border-color: #D0A13C;
}
.cookie-banner .settings {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #fff;
  color: #1A3365;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 10px;
    gap: 12px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
}

/* =====================
   COOKIE MODAL
===================== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(30,30,30,0.82);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #181818;
  border-radius: 18px;
  box-shadow: 0 8px 48px rgba(30,30,30,0.18);
  padding: 36px 32px 28px 32px;
  max-width: 420px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInModal 0.35s cubic-bezier(.4,0,.2,1);
  position: relative;
}
@keyframes fadeInModal {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1A3365;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: #232323;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #1A3365;
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-category input[disabled] {
  accent-color: #D0A13C;
  opacity: 0.7;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal .cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 20px;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-modal .save {
  background: #1A3365;
  color: #fff;
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: #D0A13C;
  color: #181818;
}
.cookie-modal .cancel {
  background: #fff;
  color: #1A3365;
  border: 1px solid #1A3365;
}
.cookie-modal .cancel:hover, .cookie-modal .cancel:focus {
  background: #D0A13C;
  color: #181818;
  border-color: #D0A13C;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #1A3365;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #D0A13C;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 18px 8px 14px 8px;
    max-width: 98vw;
  }
}

/* =====================
   MICRO-INTERACTIONS
===================== */
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
}
button:active, .cta-btn:active {
  transform: scale(0.97);
}

/* =====================
   MISCELLANEOUS
===================== */
::-webkit-scrollbar {
  width: 8px;
  background: #F7F7F7;
}
::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 4px;
}

/* =====================
   ACCESSIBILITY
===================== */
:focus {
  outline: 2px solid #D0A13C;
  outline-offset: 2px;
}

/* =====================
   PRINT
===================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body {
    background: #fff;
    color: #181818;
  }
}
