/* ---------------------------
   CSS RESET + NORMALIZE
---------------------------- */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F3F5F7;
  color: #14223C;
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
a {
  color: #F7B32B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #083256;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 1em;
}

button, .cta-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border: none;
  cursor: pointer;
  background: none;
}

input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #083256;
  margin-bottom: 18px;
}
h1 { font-size: 2.5rem; line-height: 1.2; letter-spacing: -1px; }
h2 { font-size: 2rem; line-height: 1.2; letter-spacing: -0.5px; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.17rem; }
h5 { font-size: 1rem; }
h6 { font-size: .875rem; }

p, li, td, th {
  font-size: 1rem;
  color: #26344A;
  margin-bottom: 0.75em;
}
strong {
  font-weight: 700;
  color: #F7B32B;
}

.table, table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
thead th {
  background: #083256;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 16px;
  text-align: left;
  font-size: 1.05rem;
}
tbody td {
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid #E2E6E8;
  font-size: 1rem;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* ---------------------------
   BRAND & CREATIVE COLORS
---------------------------- */
:root {
  --primary: #083256;
  --secondary: #E2E6E8;
  --accent: #F7B32B;
  --neutral-bg: #F3F5F7;
  --card-bg: #fff;
  --text-main: #14223C;
  --text-secondary: #26344A;
  --danger: #FF5757;
  --success: #1AC887;
}


/* ---------------------------
   LAYOUT CLASSES
---------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--card-bg);
  border-radius: 28px;
  box-shadow: 0 6px 32px -10px rgba(8,50,86,.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 16px -6px rgba(8,50,86,.10);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  min-width: 260px;
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px -6px #F7B32B88;
  transform: translateY(-4px) scale(1.015) rotate(-0.5deg);
  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: #faf6ee;
  color: #1e2c40;
  border-left: 8px solid var(--accent);
  border-radius: 16px;
  box-shadow: 0 4px 24px -10px #08325622;
  margin-bottom: 24px;
  min-width: 250px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card p {
  flex: 1;
  font-size: 1.12rem;
  line-height: 1.45;
  margin-bottom: 4px;
  color: #1e2c40;
}
.testimonial-card strong {
  font-weight: 700;
  font-size: 0.97rem;
  color: #083256;
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px -6px #F7B32B33;
  transform: translateY(-4px) scale(1.01) rotate(1deg);
}

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

/* ---------------------------
   HEADER & NAVIGATION
---------------------------- */
header {
  background: var(--primary);
  box-shadow: 0 6px 24px -8px #08325635;
  padding: 0;
  position: relative;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  padding: 0 20px;
  height: 72px;
}
header img {
  height: 48px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.2s, text-shadow 0.22s;
  padding: 4px 6px;
  letter-spacing: 0.04em;
}
nav a:hover,
nav a.active {
  color: #F7B32B;
  text-shadow: 0 2px 8px #F7B32B33;
  font-weight: 700;
}
.cta-btn {
  background: var(--accent);
  color: #083256;
  border-radius: 32px;
  padding: 12px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 3px 18px -7px #08325630;
  letter-spacing: 1px;
  margin-left: 18px;
  margin-right: 0;
  border: none;
  transition: background 0.18s, color 0.20s, box-shadow 0.18s, transform 0.14s;
  outline: none;
  display: inline-block;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #FDB600;
  color: #083256;
  box-shadow: 0 8px 32px -10px #F7B32Bdd;
  transform: translateY(-2px) scale(1.03) rotate(-1.5deg);
}

/* ---------------------------
   MOBILE BURGER MENU
---------------------------- */
.mobile-menu-toggle {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 101;
  background: #fff;
  color: #083256;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 2rem;
  box-shadow: 0 3px 16px -6px #F7B32B55;
  border: none;
  display: none;
  justify-content: center;
  align-items: center;
  transition: box-shadow 0.22s, background 0.16s, color 0.22s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  outline: 2px solid var(--accent);
  background: #FFE3A7;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #14223Cee;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(-110vw);
  transition: transform 0.35s cubic-bezier(.83,.08,.37,.92);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  color: #F7B32B;
  border: none;
  margin: 20px 28px 10px 0;
  outline: none;
  transition: color 0.22s;
}
.mobile-menu-close:focus {
  color: #FDB600;
  outline: 2px solid var(--accent);
  border-radius: 50%;
  background: #FFE3A7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
  padding: 0 36px;
  margin-top: 30px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.26rem;
  letter-spacing: 0.033em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 0 10px 0;
  width: 100%;
  text-align: right;
  transition: color 0.18s;
  border-bottom: 1px solid #ffffff22;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover {
  color: #F7B32B;
}

@media (max-width: 1024px) {
  nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 768px) {
  header .container {
    padding: 0 12px;
    height: 60px;
  }
  header img {
    height: 36px;
  }
  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
    font-size: 1.7rem;
    top: 12px;
    right: 12px;
  }
  .mobile-menu-close {
    margin: 14px 18px 6px 0;
    font-size: 1.8rem;
  }
  .mobile-nav {
    padding: 0 16px;
    margin-top: 14px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 16px;
  }
}

/* ---------------------------
   HERO, ARTISTIC EFFECTS & CTAs
---------------------------- */
main section:first-of-type {
  background: linear-gradient(99deg, #fff 72%, #F7B32B20 100%);
  position: relative;
  overflow: visible;
}
main section:first-of-type h1 {
  color: #083256;
  font-size: 2.5rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px #F7B32B22, 0 1px 0 #fff;
  margin-top: 8px;
}
main section:first-of-type .cta-btn {
  margin-top: 24px;
  font-size: 1.18rem;
  box-shadow: 0 4px 26px -8px #F7B32B77;
  background: linear-gradient(91deg, #F7B32B 75%, #FDB600 100%);
  border-radius: 48px;
  letter-spacing: 0.54px;
}

/* Artistic brush stroke accent underlines for h2 */
h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 10px;
}
h2:after {
  content: '';
  display: block;
  width: 62px;
  height: 8px;
  background: #F7B32B;
  border-radius: 7px;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.66;
  transform: skew(-14deg, 0) rotate(-3deg);
  z-index: -1;
}


/* ---------------------------
   SERVICE CARDS & ART BLOCKS
---------------------------- */
.service-card {
  background: linear-gradient(100deg,#ffffff 80%, #FFEDCF 100%);
  border-radius: 20px;
  box-shadow: 0 3px 16px -10px #F7B32B33;
  padding: 24px 20px;
  margin-bottom: 20px;
  min-width: 240px;
  position: relative;
  overflow: hidden;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: box-shadow 0.22s, transform 0.13s;
}
.service-card:hover {
  box-shadow: 0 10px 32px -7px #F7B32B99;
  transform: rotate(-1.5deg) scale(1.019) translateY(-5px);
  z-index: 2;
}
.service-card h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #F7B32B;
  letter-spacing: -0.4px;
  text-shadow: 0 2px 8px #F7B32B22;
}
.service-card .service-price {
  color: #083256;
  font-weight: 700;
  font-size: 1.12rem;
  display: inline-block;
  margin-top: 16px;
  background: #E2E6E8;
  border-radius: 16px;
  padding: 2px 14px;
  letter-spacing: 0.5px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.news-list article {
  border-left: 6px solid #F7B32B;
  background: #FFFBF0;
  border-radius: 12px;
  padding: 16px 22px;
  transition: box-shadow 0.15s;
}
.news-list article:hover {
  box-shadow: 0 6px 36px -8px #F7B32B33;
}
.news-list h2 {
  font-size: 1.14rem;
  color: #083256;
  padding-bottom: 6px;
}


/* ---------------------------
   TEXT-COMMON & LISTS
---------------------------- */
.text-section {
  margin-bottom: 12px;
  padding-bottom: 8px;
  font-size: 1.07rem;
  line-height: 1.72;
}
.text-section ul,
.text-section ol {
  margin-bottom: 14px;
  margin-top: 4px;
  padding-left: 22px;
}
.text-section li {
  margin-bottom: 6px;
  font-size: 1.01rem;
}

/* ---------------------------
   CONTACT & SOCIAL LINKS
---------------------------- */
.contact-details {
  margin-top: 8px;
  background: #E2E6E8;
  padding: 18px 22px;
  border-radius: 15px;
  font-size: 1rem;
  color: #083256;
  box-shadow: 0 1px 16px -10px #08325633;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 10px;
}
.social-links img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  transition: box-shadow 0.14s, transform 0.16s;
}
.social-links img:hover {
  box-shadow: 0 4px 20px -3px #F7B32B77;
  transform: scale(1.07) rotate(-4deg);
}

/* ---------------------------
   FOOTER
---------------------------- */
footer {
  background: var(--primary);
  color: #fff;
  border-top-right-radius: 44px;
  border-top-left-radius: 44px;
  padding: 32px 0 12px 0;
  margin-top: 42px;
  font-size: 1rem;
}
footer .container {
  gap: 26px;
  flex-direction: column;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: #F7B32B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.018em;
  transition: color 0.18s;
}
.footer-menu a:hover {
  color: #FDB600;
}
.footer-contact {
  margin-bottom: 18px;
  color: #fff;
  font-size: 1rem;
  background: #083256bb;
  border-radius: 13px;
  padding: 14px 24px;
  box-shadow: 0 1px 14px -6px #E2E6E899;
  font-family: 'Roboto', Arial, sans-serif;
}
footer p {
  color: #E2E6E8;
  font-size: 0.98rem;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .footer-menu {
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.99rem;
  }
  .footer-contact {
    padding: 10px 14px;
    margin-bottom: 8px;
    font-size: 0.97rem;
    border-radius: 8px;
  }
  footer .container {
    padding: 0 4px;
    border-radius: 0;
  }
  footer {
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    padding: 25px 0 8px 0;
  }
}

/* ---------------------------
   COOKIE CONSENT BANNER
---------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbea;
  color: #14223C;
  border-top: 5px solid #F7B32B;
  box-shadow: 0 -4px 32px -10px #F7B32B44;
  z-index: 9999;
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 1rem;
  opacity: 1;
  transition: transform .28s, opacity .19s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1;
  font-size: 1rem;
  color: #083256;
  margin-right: 14px;
}
.cookie-banner .cookie-action {
  display: flex;
  gap: 18px;
}
.cookie-banner button {
  padding: 9px 22px;
  border-radius: 32px;
  background: #E2E6E8;
  color: #083256;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
  margin-right: 0;
}
.cookie-banner button.cookie-accept {
  background: #F7B32B;
  color: #083256;
}
.cookie-banner button.cookie-accept:hover,
.cookie-banner button.cookie-accept:focus {
  background: #FDB600;
}
.cookie-banner button.cookie-reject {
  background: #fff;
  color: #FF5757;
  border: 2px solid #FF5757;
}
.cookie-banner button.cookie-reject:hover,
.cookie-banner button.cookie-reject:focus {
  background: #FF5757;
  color: #fff;
}
.cookie-banner button.cookie-settings {
  background: #E2E6E8;
  color: #083256;
  border: 2px solid #F7B32B;
}
.cookie-banner button.cookie-settings:hover,
.cookie-banner button.cookie-settings:focus {
  background: #F7B32B;
  color: #083256;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #14223Cb8;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .26s;
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 10px 54px -12px #08325666;
  padding: 38px 32px 28px 32px;
  min-width: 320px;
  max-width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal-content h2 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: #083256;
}
.cookie-category {
  background: #E2E6E8;
  border-radius: 13px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-category .toggle {
  margin-left: auto;
}
input[type=checkbox].toggle {
  width: 38px;
  height: 22px;
  appearance: none;
  background: #F7B32B88;
  border-radius: 22px;
  position: relative;
  outline: none;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.18s;
}
input[type=checkbox].toggle:checked {
  background: #F7B32B;
}
input[type=checkbox].toggle:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px -2px #08325622;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.14s;
}
input[type=checkbox].toggle:checked:before {
  left: 18px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 10px 30px;
  border-radius: 29px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  background: #E2E6E8;
  color: #083256;
  font-weight: 700;
  margin-right: 0;
  transition: background 0.16s, color 0.18s;
}
.cookie-modal-actions button.accept {
  background: #F7B32B;
  color: #083256;
}
.cookie-modal-actions button.accept:hover,
.cookie-modal-actions button.accept:focus {
  background: #FDB600;
}

/* Responsive for cookie banner / modal */
@media (max-width: 640px) {
  .cookie-banner {
    padding: 12px 8px 16px 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
  }
  .cookie-modal-content {
    padding: 18px 8px 11px 8px;
    min-width: 95vw;
    border-radius: 11px;
  }
}

/* ---------------------------
   RESPONSIVE LAYOUT
---------------------------- */
@media (max-width: 1024px) {
  .container {
    max-width: 95vw;
    padding: 0 8px;
  }
  .section {
    padding: 24px 5vw;
  }
  .content-wrapper,
  .content-grid,
  .card-container {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .feature-item {
    gap: 8px;
  }
}
@media (max-width: 640px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.22rem; }
  .section {
    margin-bottom: 22px;
    padding: 14px 2px;
    border-radius: 8px;
  }
  .testimonial-card {
    border-radius: 8px;
    padding: 12px 7px;
  }
  .card {
    border-radius: 8px;
    padding: 13px 8px;
  }
  .service-card {
    border-radius: 8px;
    padding: 13px 7px;
  }
}

@media (max-width: 900px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* ---------------------------
   MISC
---------------------------- */
::-webkit-scrollbar {
  width: 7px;
  background: #E2E6E8;
}
::-webkit-scrollbar-thumb {
  background: #F7B32B;
  border-radius: 3.5px;
  transition: background 0.22s;
}
::-webkit-scrollbar-thumb:hover {
  background: #FDB600;
}

::selection {
  background: #F7B32B44;
  color: #083256;
}

/* Smooth hover-underline for artistic effect */
nav a, .footer-menu a {
  position: relative;
}
nav a:after, .footer-menu a:after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 3px;
  background: #F7B32B;
  opacity: 0;
  border-radius: 4px;
  transform: scaleX(0);
  transition: opacity 0.15s, transform 0.17s;
}
nav a:hover:after, .footer-menu a:hover:after {
  opacity: 0.62;
  transform: scaleX(1);
}

/* Add faint dot or accent to cta-btn on focus for accessibility */
.cta-btn:focus {
  box-shadow: 0 0 0 2px #fff, 0 0 0 5px #F7B32B;
  outline: none;
}

/* Utility: visually-hidden for accessibility */
.visually-hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Ensure no grid, no column layout is used: ALL display:flex only! */

/* ---------------------------
   END OF STYLE.CSS
---------------------------- */
