/* ---------------- NORMALIZE & RESET -------------------- */
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, menu, 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #F6F6F9;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

/* --------------- LUXURY PREMIUM FONT IMPORT --------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,500,700&display=swap');

:root {
  --luxury-primary: #003366;
  --luxury-secondary: #E30613;
  --luxury-accent: #F3F4F6;
  --luxury-gold: #AF8C3C;
  --luxury-gold-dark: #8b6c23;
  --luxury-dark: #191c23;
  --luxury-silver: #D7DBDF;
  --luxury-shadow: 0 4px 18px 0 rgba(33, 37, 41, 0.07);
  --section-spacing: 60px;
  --container-spacing: 20px;
  --radius: 14px;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--luxury-dark);
  background: var(--luxury-accent);
}

h1, h2, h3, h4 {
  color: var(--luxury-primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 16px;
}
h3 {
  font-size: 1.35rem;
  font-weight: 500;
}
h4 {
  font-size: 1.15rem;
  font-weight: 500;
}
p {
  font-size: 1rem;
  color: var(--luxury-dark);
  margin-bottom: 14px;
}
strong {
  color: var(--luxury-primary);
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* -----------------------------------------------------------
 LAYOUT SECTIONS
------------------------------------------------------------*/
.section,
.hero,
.features,
.about-preview,
.services-preview,
.news-preview,
.contact-cta,
.about,
.team,
.milestones,
.services,
.benefits,
.technology-overview,
.tech-benefits,
.news-list,
.career-hero,
.careers,
.culture,
.contact,
.office-info,
.privacy-policy,
.gdpr-policy,
.cookie-policy,
.terms,
.confirmation {
  margin-bottom: var(--section-spacing);
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--luxury-shadow);
}

.section:last-child,
.hero:last-child,
.features:last-child,
.about-preview:last-child,
.contact-cta:last-child,
.team:last-child,
.milestones:last-child,
.services:last-child,
.benefits:last-child,
.office-info:last-child,
.culture:last-child {
  margin-bottom: 0;
}

/* ---------------------- FLEX LAYOUTS --------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--radius);
  box-shadow: var(--luxury-shadow);
  background: #fff;
  position: relative;
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(33, 37, 41, 0.12);
}
.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: #f8f7fa;
  border-left: 4px solid var(--luxury-gold);
  border-radius: var(--radius);
  box-shadow: 0 3px 20px 0 rgba(33, 37, 41, 0.08);
  color: #191c23;
  margin-top: 18px;
  margin-bottom: 20px;
}
.testimonial-card p {
  font-size: 1.06rem;
  font-style: italic;
  margin-bottom: 0;
  color: #1a1e26;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: var(--luxury-dark);
  opacity: 0.78;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ------------------- HEADER & NAVIGATION ------------------ */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 6px 20px 0 rgba(33, 40, 51, 0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}
header nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: flex-start;
}
header nav a {
  color: var(--luxury-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 12px 16px;
  border-radius: 7px;
  transition: background 0.23s, color 0.23s;
}
header nav a:hover {
  background: var(--luxury-accent);
  color: var(--luxury-gold);
}
.cta-primary {
  background: linear-gradient(91deg, var(--luxury-gold) 60%, var(--luxury-secondary) 140%);
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 8px;
  padding: 13px 28px !important;
  box-shadow: 0 2px 8px 0 rgba(175,140,60, 0.14);
  display: inline-block;
  margin-left: 12px;
  border: none;
  transition: background 0.25s, color 0.25s, box-shadow 0.16s;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--luxury-gold-dark);
  color: #fff;
  box-shadow: 0 5px 26px 0 rgba(175,140,60, 0.20);
}
.cta-secondary {
  background: transparent;
  color: var(--luxury-gold);
  border: 2px solid var(--luxury-gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 28px !important;
  margin-left: 12px;
  transition: background 0.22s, color 0.19s;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--luxury-gold);
  color: #fff;
}

/* LOGO Sizing */
header nav a img {
  height: 39px;
  width: auto;
  margin-right: 16px;
  vertical-align: middle;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--luxury-gold);
  background: transparent;
  border: none;
  margin-left: auto;
  z-index: 1099;
  transition: color 0.20s;
}
.mobile-menu-toggle:hover {
  color: var(--luxury-secondary);
}

/* ---------------- MOBILE MENU ------------------ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 28px 0 rgba(33,37,41,0.14);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 34px 32px 20px 24px;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.81,.21,.42,.87);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--luxury-gold);
  background: transparent;
  border: none;
  align-self: flex-end;
  margin-bottom: 20px;
  margin-right: -8px;
  transition: color 0.19s;
}
.mobile-menu-close:hover {
  color: var(--luxury-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: var(--luxury-primary);
  padding: 12px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.2s, color 0.16s;
}
.mobile-nav a:hover {
  background: var(--luxury-accent);
  color: var(--luxury-gold);
}

@media (max-width: 990px) {
  header nav {
    gap: 14px;
    padding: 0 12px 0 8px;
  }
  header nav a {
    font-size: 0.99rem;
    padding: 11px 10px;
  }
  .cta-primary, .cta-secondary {
    padding: 10px 20px !important;
  }
}
@media (max-width: 840px) {
  header nav {
    flex-wrap: wrap;
    min-height: 62px;
    gap: 8px;
    justify-content: flex-start;
  }
  .cta-primary, .cta-secondary {
    margin-left: 4px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 22px;
    top: 16px;
    background: transparent;
  }
}

/* ------------------- HERO (Index, Career) ---------------- */
.hero, .career-hero {
  background: linear-gradient(92deg, #fff 60%, #f9f6ed 120%);
  box-shadow: 0 7px 22px 0 rgba(175,140,60, 0.02);
  border-top: 6px solid var(--luxury-gold);
  display: flex;
}
.hero h1, .career-hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--luxury-primary);
  font-size: 2.65rem;
}

/* -------------- LISTS, FEATURES, CARDS ------------------- */
.features ul, .services-preview ul,
.about-preview ul, .team ul, .milestones ul,
.services ul, .benefits ul, .news-list ul,
.careers ul, .culture ul, .tech-benefits ul,
.technology-overview ul,
.text-section ul
{
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
  margin-top: 8px;
}
.features ul li,
.services-preview ul li,
.team ul li,
.milestones ul li,
.services ul li,
.benefits-grid li,
.benefits ul li,
.careers ul li,
.culture ul li,
.tech-benefits ul li,
.technology-overview ul li,
.news-list ul li,
.text-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 7px 0 7px 0;
  font-size: 1.07rem;
  color: #1a1e26;
  border-bottom: 1px solid #f2ecde;
  margin-bottom: 2px;
}
.features ul li:last-child,
.services-preview ul li:last-child,
.team ul li:last-child, .milestones ul li:last-child,
.services ul li:last-child,
.benefits ul li:last-child, .benefits-grid li:last-child,
.careers ul li:last-child, .culture ul li:last-child,
.tech-benefits ul li:last-child,
.technology-overview ul li:last-child,
.news-list ul li:last-child,
.text-section ul li:last-child {
  border-bottom: none;
}
.features ul li img {
  width: 32px;
  margin-right: 8px;
  flex-shrink: 0;
  border-radius: 7px;
}

/* ---------------- BUTTONS & LINKS ---------------------- */
a, button {
  transition: color 0.20s, background 0.22s, box-shadow 0.22s;
}
a:active, button:active {
  opacity: 0.82;
}

/* ---------------- CATEGORY FILTERS --------------------- */
.category-filters {
  display: flex;
  gap: 15px;
  margin-bottom: 26px;
}
.filter {
  display: inline-block;
  background: #f3f3f3;
  color: var(--luxury-primary);
  padding: 8px 22px;
  font-size: 1rem;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  border: 1.5px solid transparent;
  font-weight: 500;
  transition: background 0.18s, border 0.18s, color 0.18s;
}
.filter.active, .filter:hover {
  background: var(--luxury-gold);
  color: #fff;
  border: 1.5px solid var(--luxury-gold);
}

/* ---------------- FOOTER ------------------------------- */
footer {
  background: var(--luxury-primary);
  color: #fff;
  padding: 36px 0 14px 0;
  margin-top: 36px;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial;
  font-weight: 600;
  opacity: 0.86;
  margin-right: 8px;
  transition: opacity 0.2s, color 0.2s;
}
footer nav a:hover {
  opacity: 1;
  color: var(--luxury-gold);
}
footer address,
footer small {
  color: #e0e7f4;
  opacity: 0.86;
  font-size: 1rem;
  font-style: normal;
}
footer address img {
  width: 18px;
  margin: 0 5px -4px 5px;
  vertical-align: middle;
}
footer small {
  display: block;
  margin-top: 8px;
}

/* ---------------- COOKIE BANNER ------------------------ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100vw;
  left: 0;
  background: #fff5e0;
  box-shadow: 0 -5px 28px #e7e0d6;
  border-top: 3px solid var(--luxury-gold);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  justify-content: center;
  padding: 24px 12px 18px 12px;
  transition: transform 0.30s cubic-bezier(.86,.22,.36,1.17), opacity 0.26s;
  opacity: 1;
}
.cookie-banner[hidden] {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-content {
  max-width: 600px;
  flex: 1 1 0%;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner button,
.cookie-banner .cookie-settings {
  font-family: 'Montserrat', Arial;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  padding: 11px 20px;
  margin: 0 3px;
  transition: background 0.13s, color 0.13s;
  box-shadow: 0 1.5px 6px #ddcfae40;
}
.cookie-banner .accept-btn {
  background: var(--luxury-gold);
  color: #fff;
}
.cookie-banner .accept-btn:hover {
  background: var(--luxury-gold-dark);
}
.cookie-banner .reject-btn {
  background: #fff;
  color: var(--luxury-gold);
  border: 2px solid var(--luxury-gold);
}
.cookie-banner .reject-btn:hover {
  background: #ffd;
  color: #af8c3c;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: var(--luxury-primary);
  border: 2px solid var(--luxury-primary);
}
.cookie-banner .cookie-settings:hover {
  background: var(--luxury-primary);
  color: #fff;
}

/* ------------- COOKIE PREFERENCES MODAL ----------------- */
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,28,35,0.38);
  z-index: 2200;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.18s;
}
.cookie-modal-overlay[hidden] {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 11px;
  max-width: 360px;
  width: 98vw;
  padding: 38px 24px 30px 24px;
  box-shadow: 0 8px 42px 0 rgba(50,36,15,0.08);
  z-index: 2250;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: fadeIn .26s cubic-bezier(.81,.21,.42,.87);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal h3 {
  font-size: 1.34rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--luxury-gold);
}
.cookie-category {
  margin-bottom: 13px;
}
.cookie-toggle {
  appearance: none;
  height: 1.5em;
  width: 2.8em;
  background: #ece4d6;
  border-radius: 14px;
  position: relative;
  outline: none;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: var(--luxury-gold);
}
.cookie-toggle::after {
  content: '';
  display: block;
  width: 1.1em;
  height: 1.1em;
  background: #fff;
  border-radius: 14px;
  position: absolute;
  left: 0.2em; top: 0.2em;
  transition: left 0.16s;
  box-shadow: 0 1px 5px #cdbc98;
}
.cookie-toggle:checked::after {
  left: 1.4em;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal .close-modal {
  background: #fff;
  color: var(--luxury-primary);
  border: 2px solid var(--luxury-primary);
  border-radius: 7px;
  padding: 9px 18px;
  font-family: 'Montserrat', Arial;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.cookie-modal .close-modal:hover {
  background: var(--luxury-primary);
  color: #fff;
}

/* ------------- FORM FIELD RESETS (for future-proofing) ---------- */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 7px;
  outline: none;
  padding: 11px 15px;
  border: 1.5px solid #e6e6ef;
  transition: border 0.21s;
  background: #f9f7fa;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--luxury-gold);
}
label {
  font-family: 'Montserrat', Arial;
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--luxury-primary);
  margin-bottom: 7px;
}

/* ------------- MISCELLANEOUS: CARDS, SHADOWS ------------------ */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 3px 20px 0 rgba(33, 37, 41, 0.08);
  padding: 26px;
  transition: box-shadow 0.19s;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.card em {
  color: var(--luxury-gold);
}

/* --------- RESPONSIVENESS --------- */
@media (max-width: 960px) {
  .container {
    max-width: 100%;
    padding: 0 13px;
  }
  .section, .hero, .about-preview, .team, .milestones, .about,
  .news-preview, .services-preview, .services, .benefits,
  .technology-overview, .tech-benefits, .news-list,
  .career-hero, .careers, .culture, .contact, .office-info,
  .privacy-policy, .gdpr-policy, .cookie-policy, .terms, .confirmation {
    padding: 32px 8px;
  }
}
@media (max-width: 768px) {
  .section, .hero, .about-preview, .team, .milestones, .about,
  .news-preview, .services-preview, .services, .benefits,
  .technology-overview, .tech-benefits, .news-list,
  .career-hero, .careers, .culture, .contact, .office-info,
  .privacy-policy, .gdpr-policy, .cookie-policy, .terms, .confirmation {
    padding: 22px 3px;
    margin-bottom: 28px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .features ul, .team ul, .news-list ul,
  .careers ul, .culture ul, .milestones ul, 
  .benefits ul, .tech-benefits ul, .technology-overview ul,
  .about-preview ul, .services-preview ul {
    gap: 11px;
    font-size: 1rem;
    padding-left: 0;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 13px;
    padding: 15px 6px;
  }
  .category-filters {
    gap: 8px;
    font-size: 0.97rem;
  }
}
@media (max-width: 560px) {
  h1 {
    font-size: 1.56rem;
  }
  h2 {
    font-size: 1.21rem;
  }
  h3 {
    font-size: 1.01rem;
  }
  .section, .hero, .about-preview, .team, .milestones, .about,
  .news-preview, .services-preview, .services, .benefits,
  .technology-overview, .tech-benefits, .news-list, .career-hero, .careers, .culture, .contact, .office-info,
  .privacy-policy, .gdpr-policy, .cookie-policy, .terms, .confirmation {
    padding: 12px 0px;
  }
  .container {
    padding: 0 5px;
  }
}

/* ----------- WHITE SPACE / CONSISTENT SPACING --------------- */
.section, .hero, .about-preview, .team, .milestones, .about, .news-preview, .services-preview, .services, .benefits, .technology-overview, .tech-benefits, .news-list, .career-hero, .careers, .culture, .contact, .office-info, .privacy-policy, .gdpr-policy, .cookie-policy, .terms, .confirmation {
  margin-bottom: 60px;
  margin-top: 0;
  padding-bottom: 40px;
}
.section > *, .hero > *, .about-preview > *, .team > *, .milestones > *, .about > *, .news-preview > *, .services-preview > *, .services > *, .benefits > *, .technology-overview > *, .tech-benefits > *, .news-list > *, .career-hero > *, .careers > *, .culture > *, .contact > *, .office-info > *, .privacy-policy > *, .gdpr-policy > *, .cookie-policy > *, .terms > *, .confirmation > * {
  margin-bottom: 24px;
}
.section > *:last-child, .hero > *:last-child, .about-preview > *:last-child, .team > *:last-child, .milestones > *:last-child, .about > *:last-child, .news-preview > *:last-child, .services-preview > *:last-child, .services > *:last-child, .benefits > *:last-child, .technology-overview > *:last-child, .tech-benefits > *:last-child, .news-list > *:last-child, .career-hero > *:last-child, .careers > *:last-child, .culture > *:last-child, .contact > *:last-child, .office-info > *:last-child, .privacy-policy > *:last-child, .gdpr-policy > *:last-child, .cookie-policy > *:last-child, .terms > *:last-child, .confirmation > *:last-child {
  margin-bottom: 0;
}

/* -------- SNACK: ENSURE MINIMUM CARD GAPS --------- */
.card, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}
.card:not(:last-child), .testimonial-card:not(:last-child), .feature-item:not(:last-child) {
  margin-bottom: 20px;
}
/* Prevent overlapping at all times */
.card-container, .content-grid, .text-image-section {
  gap: 20px;
}

/* ---------- VISUAL MICRO-INTERACTIONS ------------- */
a, button, .cta-primary, .cta-secondary, .filter, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-banner .cookie-settings {
  transition: 
    background 0.18s cubic-bezier(.81,.21,.42,.87),
    color 0.16s,
    opacity 0.16s,
    box-shadow 0.17s;
}

/* ------- HIDE SCROLLBAR ON MOBILE MENU ------- */
.mobile-menu::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

/* --------- UTILITY CLASSES ----------- */
.hide {
  display: none !important;
}

/* END LUXURY PREMIUM DESIGN */