/* CSS RESET & NORMALIZATION */
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, main, 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 {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F3F4F6;
  color: #20415F;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
}
a {
  color: #20415F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D1A857;
  text-decoration: underline;
}
img {
  max-width: 100%;
  border: 0;
  display: block;
}
ul, ol {
  list-style-position: inside;
  margin-left: 1.2em;
  margin-bottom: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #20415F;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; line-height: 1.25; }
h3 { font-size: 1.25rem; line-height: 1.3; }
h4 { font-size: 1.1rem; line-height: 1.3; font-weight: 600; margin-bottom: 12px; }
.subtitle {
  color: #333E48;
  font-size: 1.2rem;
  margin-bottom: 28px;
}
p {
  margin-bottom: 16px;
}
strong { font-weight: bold; }

/* LAYOUT CONTAINERS & SPACING */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px 0 rgba(32,65,95,0.04);
  position: relative;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(32,65,95,0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  max-width: 1180px;
  margin: 0 auto;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
}
.main-nav li {
  margin: 0;
}
.main-nav a {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #20415F;
  padding: 8px 0;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #D1A857;
}
.nav-cta {
  background: #20415F;
  color: #fff !important;
  border-radius: 6px;
  padding: 10px 24px;
  box-shadow: 0 2px 8px 0 rgba(32,65,95,0.08);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 24px;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  border: 2px solid #20415F;
}
.nav-cta:hover, .nav-cta:focus {
  background: #D1A857;
  color: #20415F !important;
  border-color: #D1A857;
  box-shadow: 0 4px 16px 0 rgba(32,65,95,0.14);
}

/* HERO AREA */
section:first-of-type .container {
  padding-top: 38px;
  padding-bottom: 38px;
}
section:first-of-type h1 {
  color: #20415F;
  font-size: 2.5rem;
}
section:first-of-type .button {
  margin-top: 22px;
}

/* BUTTONS */
.button,
.button-secondary {
  display: inline-block;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 12px 32px;
  font-size: 1rem;
  line-height: 1.3;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: 0 2px 8px 0 rgba(32,65,95,0.10);
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  margin-right: 12px;
  margin-bottom: 8px;
}
.button {
  background: #20415F;
  color: #fff;
  border: 2px solid #20415F;
}
.button:hover, .button:focus {
  background: #D1A857;
  color: #20415F;
  border-color: #D1A857;
  box-shadow: 0 6px 18px 0 rgba(209,168,87,0.13);
}
.button-secondary {
  background: #fff;
  color: #20415F;
  border: 2px solid #20415F;
}
.button-secondary:hover, .button-secondary:focus {
  background: #D1A857;
  color: #20415F;
  border-color: #D1A857;
}

/* FLEX CONTAINERS & MANDATORY PATTERNS */
.feature-grid, .service-list, .offer-packages, .testimonials-slider, .testimonial-list, .client-categories, .event-types {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.feature-grid {
  gap: 24px;
  margin-top: 28px;
}
.feature-box {
  background: #F3F4F6;
  border: 1px solid #E1E6EB;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(32,65,95,0.04);
  padding: 28px 20px 22px 20px;
  flex: 1 1 210px;
  min-width: 220px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.18s;
}
.feature-box:hover, .feature-box:focus-within {
  box-shadow: 0 8px 32px 0 rgba(32,65,95,0.12);
  border-color: #D1A857;
}
.service-list {
  gap: 24px;
  margin-bottom: 36px;
}
.service-card {
  background: #fff;
  border: 1px solid #E1E6EB;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(32,65,95,0.05);
  flex: 1 1 250px;
  min-width: 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 6px 32px 0 rgba(32,65,95,0.14);
  border-color: #D1A857;
}
.service-card span {
  color: #20415F;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.service-card a {
  font-size: 1rem;
  color: #D1A857;
  font-weight: 600;
  text-decoration: underline;
  margin-top: auto;
  transition: color 0.13s;
}
.service-card a:hover { color: #20415F; }

/* OFFER PACKAGES */
.offer-packages {
  gap: 24px;
}
.offer-box {
  background: #F8FAFC;
  border: 1px solid #E1E6EB;
  border-radius: 10px;
  padding: 22px 18px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.16s, border 0.13s;
}
.offer-box h3 { font-size: 1.12rem; margin-bottom: 8px; }
.offer-box:hover {
  box-shadow: 0 6px 18px 0 rgba(32,65,95,0.10);
  border-color: #D1A857;
}

.menu-list {
  margin-bottom: 24px;
}
.menu-list li {
  margin-bottom: 8px;
  padding-left: 4px;
}

/* TEXT/IMAGE AND CONTENT SECTIONS */
.text-section {
  margin-bottom: 34px;
}
.text-section ul {
  margin-bottom: 10px;
}
.text-section p, .text-section ul, .text-section h2, .text-section h3 {
  max-width: 700px;
}
.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;
}
/* CARD-CONTAINERS pattern */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}

/* TESTIMONIALS */
.testimonials-slider, .testimonial-list {
  gap: 24px;
  margin-bottom: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 20px 20px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #E1E6EB;
  box-shadow: 0 2px 10px 0 rgba(32,65,95,0.06);
  min-width: 220px;
  max-width: 380px;
  margin-bottom: 20px;
  color: #20415F;
  font-size: 1.05rem;
}
.testimonial-card p {
  margin: 0 0 7px 0;
  color: #20415F;
  font-style: italic;
}
.testimonial-author {
  color: #333E48;
  font-weight: 600;
  font-size: 0.97rem;
}

/* CASE STUDY & CLIENTS */
.case-study {
  padding: 20px 18px;
  background: #F8FAFC;
  border-left: 4px solid #20415F;
  border-radius: 8px;
  margin: 24px 0 14px 0;
  box-shadow: 0 2px 8px 0 rgba(32,65,95,0.03);
}
.client-categories, .event-types {
  gap: 36px;
  margin-bottom: 20px;
}
.client-categories ul, .event-types ul {
  margin-bottom: 0;
}

/* FOOTER STYLES */
footer {
  background: #20415F;
  color: #fff;
  width: 100%;
  padding: 0;
}
footer section {
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin-bottom: 0;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 46px 0 0 0;
}
.footer-flex > div, .footer-nav, .footer-contact {
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 360px;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #D1A857;
  text-decoration: underline;
}
.footer-contact h4 {
  color: #D1A857;
  margin-bottom: 10px;
}
.footer-contact a {
  color: #D1A857;
  text-decoration: underline;
}
.footer-contact a:hover { color: #fff; }
footer img {
  margin-bottom: 18px;
  max-width: 74px;
}
footer p {
  color: #F8FAFC;
  font-size: 1rem;
  margin-bottom: 8px;
}
.copyright {
  border-top: 1px solid #354F6A;
  font-size: 0.92rem;
  color: #CED9E1;
  text-align: center;
  padding: 18px 0 10px 0;
  margin-top: 28px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #20415F;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 52;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #D1A857;
  color: #20415F;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #20415F;
  box-shadow: 0 2px 20px 0 rgba(32,65,95,0.32);
  z-index: 90;
  transition: transform 0.32s cubic-bezier(0.7, 0.3, 0.2, 1);
  will-change: transform;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  overflow-y: auto;
  transform: translateX(-110%);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 18px 22px 0 16px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.14s;
  z-index: 100;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #D1A857;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 6px;
  padding: 12px 32px 40px 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.17rem;
  padding: 12px 0;
  border-bottom: 1px solid #27496f;
  transition: color 0.13s, background 0.18s;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #D1A857;
  background: #213A54;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #20415F;
  z-index: 1300;
  box-shadow: 0 -2px 24px 0 rgba(32,65,95,0.11);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  border-top: 1px solid #E1E6EB;
  transition: transform 0.28s cubic-bezier(0.7, 0.3, 0.2, 1), opacity 0.28s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-title {
  color: #20415F;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  margin-bottom: 3px;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #20415F;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 9px 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin-bottom: 7px;
}
.cookie-banner button.cookie-reject {
  background: #E1E6EB;
  color: #20415F;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #D1A857;
  color: #20415F;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%) scale(1);
  background: #fff;
  color: #20415F;
  border-radius: 14px;
  max-width: 410px;
  width: 93vw;
  z-index: 1350;
  box-shadow: 0 10px 44px 0 rgba(32,65,95,0.17);
  padding: 28px 26px 18px 26px;
  display: flex;
  flex-direction: column;
  animation: fadeInModal 0.3s cubic-bezier(0.7, 0.3, 0.2, 1);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translate(-50%,-60%) scale(0.95); }
  to { opacity: 1; transform: translate(-50%,-52%) scale(1);}
}
.cookie-modal-title {
  font-size: 1.17rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 14px;
}
.cookie-modal-category {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-modal-category label {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.cookie-modal-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #20415F;
  border-radius: 4px;
}
.cookie-modal-category.essential label {
  color: #6A7A8B;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal button {
  background: #20415F;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 9px 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-modal button.cookie-cancel {
  background: #E1E6EB;
  color: #20415F;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #D1A857;
  color: #20415F;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 1200px) {
  .container { max-width: 98vw; }
  .footer-flex { gap: 20px; }
}
@media (max-width: 920px) {
  .main-nav ul { gap: 12px; }
  .service-list, .offer-packages, .feature-grid, .card-container, .testimonials-slider, .testimonial-list { gap: 16px; }
  .footer-flex { gap: 20px; }
  .feature-box, .service-card, .offer-box { min-width: 170px; max-width: 100%; }
}
@media (max-width: 860px) {
  .main-nav ul { display: none; }
  .nav-cta { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 780px) {
  .footer-flex { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer-flex > div, .footer-nav, .footer-contact { max-width: 100%; }
}
@media (max-width: 768px) {
  .container { padding: 0 9px; }
  .footer-flex { gap: 0px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  .service-list, .offer-packages, .feature-grid, .card-container, .testimonials-slider, .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid, .text-image-section { flex-direction: column; gap: 18px; }
  .main-nav { padding-left: 9px; padding-right: 9px; }
  footer img { max-width: 60px; }
  section { padding: 26px 8px; }
  .section { padding: 26px 8px; }
}
@media (max-width: 580px) {
  .main-nav { padding: 6px 0; }
  .container { padding: 0 0px; }
  .section { padding: 14px 0px; margin-bottom: 36px; }
  .footer-flex { padding-top: 13px; }
  footer section { padding: 0; }
  .content-wrapper { padding: 0 4px; }
}

/* ACCENT COLOR LINKS */
.button, .button-secondary {
  position: relative;
  overflow: hidden;
}
.button:after, .button-secondary:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: rgba(209, 168, 87, 0.17);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.7, 0.3, 0.2, 1), opacity 0.23s;
  z-index: 1;
}
.button:hover:after, .button-secondary:hover:after {
  width: 300px;
  height: 300px;
  opacity: .3;
}

/* FORM ELEMENTS (if any in future) */
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: 1px solid #CCD5DF;
  border-radius: 6px;
  padding: 11px 13px;
  margin-bottom: 16px;
  background: #F8FAFC;
  color: #20415F;
  width: 100%;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #20415F;
  outline: none;
}
::placeholder {
  color: #ADC2D4;
  opacity: 1;
  font-size: 0.98rem;
}

/* Utility spacing classes */
.mt-16 { margin-top: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.gap-16 { gap: 16px !important; }

/* SCROLLBAR COLOR FOR CORPORATE TONE */
body::-webkit-scrollbar {
  width: 14px;
  background: #E1E6EB;
}
body::-webkit-scrollbar-thumb {
  background: #20415F;
  border-radius: 7px;
}

/* HIGH CONTRAST for TESTIMONIALS */
section .testimonial-card, .testimonial-card {
  background: #fff;
  color: #20415F;
}

/* CARD hover shadow accent */
.card, .service-card, .offer-box, .feature-box {
  transition: box-shadow 0.17s, border 0.13s;
}
.card:hover, .service-card:hover, .offer-box:hover, .feature-box:hover {
  box-shadow: 0 8px 32px 0 rgba(32,65,95,0.12);
  border-color: #D1A857;
}

/* ANIMATIONS */
.button, .button-secondary {
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, border 0.14s;
}
.button:active, .button-secondary:active {
  transform: translateY(2px) scale(0.99);
  box-shadow: 0 2px 6px 0 rgba(32,65,95,0.14);
}

/* FOCUS STYLES */
a:focus-visible, .button:focus-visible, .button-secondary:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid #D1A857;
  outline-offset: 1.5px;
}

/* Hide visually but keep accessible */
.sr-only {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  top: auto;
  overflow: hidden;
}

/* === End of style.css?v2 === */
