/* === CSS RESET & BASE === */
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;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  background: #161b22;
  color: #e6eaf1;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(120deg, #1C252C 0%, #222F38 100%);
}

:root {
  --color-primary: #1C252C;
  --color-secondary: #94A4B3;
  --color-accent: #E9B86E;
  --color-bg: #161b22;
  --color-hero-gradient-1: #222F38;
  --color-hero-gradient-2: #2e3d4b;
  --color-card-bg: #232f38;
  --color-card-shadow: 0 2px 24px 0 rgba(90,110,130,0.18);
  --color-success: #51fe8a;
  --color-danger: #ff7272;
  --color-link: #E9B86E;
  --color-link-hover: #ffc770;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

@media (max-width:600px) {
  body { font-size: 15px; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: 2.75rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; color: #E9B86E; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
h5,h6 { font-size: 1rem; }
p, ul, ol, li {
  font-family: var(--font-body);
  color: #e6eaf1;
  letter-spacing: 0; 
  margin-bottom: 12px;
}
strong { color: #fff; font-weight: bold; }
a { color: var(--color-link); text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: var(--color-link-hover); text-decoration: underline; }
ul, ol { margin-bottom: 18px; }
ul li, ol li { margin-bottom: 10px; }

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* Hero Section */
.hero {
  background: linear-gradient(110deg, #232f38 0%, #262f38 100%);
  padding: 64px 0 56px 0;
  box-shadow: 0 4px 32px 0 rgba(36, 47, 60, 0.22);
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 640px;
  gap: 18px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(233,184,110,0.12);
}
.hero p {
  font-size: 1.22rem;
  color: #e6eaf1;
}

/* Main Navigation */
header {
  background: #1C252C;
  padding: 0;
  border-bottom: 1px solid #232f38;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  color: #dde7f5;
  font-weight: 500;
  font-size: 1.07rem;
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: rgba(233,184,110,0.13);
}
.main-nav .cta-btn {
  background: linear-gradient(90deg, #E9B86E 0%, #ffc25b 100%);
  color: #1C252C !important;
  padding: 10px 26px;
  border-radius: 24px;
  font-weight: bold;
  font-size: 1.06rem;
  margin-left: 14px;
  box-shadow: 0 1px 12px 0 rgba(233,184,110,0.22);
  border: none;
  letter-spacing: 0.04em;
  transition: box-shadow 0.2s, background 0.22s;
  position: relative;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: #f3be5f;
  color: #262f38 !important;
  box-shadow: 0 2px 16px 1px rgba(233,184,110,0.35);
}

/* Hamburger Menu Toggle */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #E9B86E;
  cursor: pointer;
  display: none;
  z-index: 120;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #262f38;
}

/* Mobile Menu (Menu Overlay) */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28,37,44,0.97);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.72,0.04,0.26,0.98);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 28px 0 0;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #E9B86E;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 9px;
  transition: background 0.2s;
}
.mobile-menu-close:active,
.mobile-menu-close:focus {
  background: #232f38;
}
.mobile-nav {
  margin: 0;
  padding: 30px 38px 0 38px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.32rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 11px 4px 11px 0;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E9B86E;
  background: #222f38;
}

@media (max-width: 980px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ==== FLEX SPACING & CONTENT LAYOUTS ==== */
.features-grid, .services-list, .values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.features-grid { justify-content: flex-start; }
.values-grid,
.services-list { justify-content: space-between; }
.feature, .service-item, .value {
  background: var(--color-card-bg);
  border-radius: 20px;
  box-shadow: var(--color-card-shadow);
  padding: 28px 24px;
  min-width: 240px;
  flex: 1 1 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.22s, transform 0.15s;
  margin-bottom: 20px;
  border: 1px solid rgba(148,164,179,0.08);
  position: relative;
}
.feature:hover, .service-item:hover, .value:hover {
  box-shadow: 0 4px 32px 0 rgba(233,184,110,0.19);
  transform: translateY(-2px) scale(1.02);
}
.feature img, .service-item img {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 2px 7px #E9B86E44);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border-radius: 18px;
  box-shadow: var(--color-card-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 20px 20px 20px 24px;
  min-width: 250px;
  flex: 1 1 320px;
  transition: box-shadow 0.22s;
}
.card:hover { box-shadow: 0 4px 24px 2px #E9B86E33; }
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  background: #f5f7fa;
  color: #232f38;
  border-radius: 18px;
  box-shadow: 0 1px 12px 0 #232f3833;
  margin-bottom: 20px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 570px;
  font-family: var(--font-body);
  font-size: 1.07rem;
  position: relative;
  border-left: 6px solid #E9B86E;
}
.testimonial-card p {
  color: #232f38;
  font-family: var(--font-body);
  font-size: 1.07rem;
  margin-bottom: 0;
}
.testimonial-card span { color: #E9B86E; font-weight: 600; font-size: 1.02rem; }
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.step-list, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.project-summary {
  background: var(--color-card-bg);
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 #232f3825;
  margin-bottom: 20px;
  padding: 20px 24px;
}
.project-summary h3 { margin-bottom: 7px; }

.text-section {
  margin-bottom: 20px;
}

.contact-details {
  background: var(--color-card-bg);
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 #E9B86E17;
  padding: 18px 24px;
  margin-bottom: 20px;
  color: #e6eaf1;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
  padding-left: 15px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(90deg, #E9B86E33 0%, #94A4B388 100%);
  border-radius: 26px;
  box-shadow: 0 4px 18px 0 #e9b86e0d;
  margin-top: 46px;
  margin-bottom: 60px;
}
.cta-banner .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.cta-banner h2 {
  color: #1C252C;
  margin-bottom: 10px;
}
.cta-banner p {
  color: #232f38;
  margin-bottom: 18px;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #E9B86E 0%, #f3be5f 100%);
  color: #1C252C !important;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.06rem;
  padding: 13px 34px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 16px 0 #e9b86e22;
  letter-spacing: 0.06em;
  margin-top: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.21s, color 0.18s, box-shadow 0.18s, transform 0.12s;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #ffc25b 0%, #e9b86e 100%);
  color: #1C252C;
  box-shadow: 0 4px 24px 2px #e9b86e3a;
  transform: translateY(-2px) scale(1.035);
}

/* ul/ol and FAQ styles */
.faq-list {
  padding-left: 14px;
  list-style: disc inside;
  color: #dde7f5;
}
.faq-list li {
  margin-bottom: 14px;
  font-size: 1.02rem;
  line-height: 1.6;
}

/* Footer Styles */
footer {
  background: #1C252C;
  padding: 0;
  border-top: 1px solid #232f38;
  box-shadow: 0 -2px 28px 0 #232f3812;
  margin-top: 70px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 38px 0 32px 0;
}
.brand-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.brand-footer img {
  width: 155px;
  height: auto;
}
.brand-footer span {
  color: #94A4B3;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: #E9B86E;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #ffc25b;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #94A4B3;
  font-size: 0.98rem;
}
.footer-contact a { color: #E9B86E; text-decoration: underline; }
.footer-contact a:hover, .footer-contact a:focus { color: #ffc25b; }

@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .features-grid, .values-grid, .services-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-main { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero { padding: 42px 0 32px 0; }
}

@media (max-width: 600px) {
  .section { padding: 25px 6px; margin-bottom: 32px; }
  .cta-banner { margin-top: 30px; margin-bottom: 30px; border-radius: 12px; }
  .testimonial-card { padding: 14px 10px; max-width: 100%; border-radius: 12px; }
}

@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #232f38;
  color: #e6eaf1;
  padding: 19px 12px 16px 12px;
  z-index: 3000;
  border-top: 3px solid #E9B86E;
  box-shadow: 0 -4px 28px 0 #1C252C66;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 1rem;
  animation: cookiebannerfadein 0.7s cubic-bezier(.6,.99,.67,1) both;
}
@keyframes cookiebannerfadein {
  0% { opacity: 0; transform: translateY(35px); }
  100% { opacity: 1; transform: none; }
}
.cookie-banner p { color: #e6eaf1; margin-bottom: 0; }
.cookie-banner .cookie-btn {
  background: linear-gradient(90deg, #E9B86E 0%, #f3be5f 100%);
  color: #1C252C;
  border: none;
  border-radius: 25px;
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 600;
  padding: 8px 18px;
  margin-right: 10px;
  box-shadow: 0 1px 8px 0 #e9b86e53;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: box-shadow 0.19s, background 0.15s, color 0.15s;
}
.cookie-banner .cookie-btn.reject {
  background: #262f38;
  color: #E9B86E;
  border: 1px solid #E9B86E;
  box-shadow: none;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #ffc25b;
  color: #1C252C;
}
.cookie-banner .cookie-settings {
  color: #E9B86E;
  background: none;
  border: none;
  font-size: 0.97rem;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s, background 0.13s;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  color: #ffc25b;
  background: #232f3860;
}

@media (max-width: 610px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 15px; font-size: 15px; }
}

/* Cookie Consent Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28,37,44,0.95);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.19s cubic-bezier(.42,.87,.54,1) both;
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #232f38;
  border-radius: 20px;
  box-shadow: 0 4px 24px 1px #E9B86E40;
  padding: 42px 36px 36px 36px;
  max-width: 430px;
  width: 96vw;
  color: #e6eaf1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalrise 0.27s cubic-bezier(.36,1.09,.45,1.11) both;
}
@keyframes modalrise {
  from { opacity: 0; transform: translateY(44px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.cookie-modal h2 {
  font-size: 1.37rem;
  color: #E9B86E;
  margin-bottom: 18px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 1.08rem;
  color: #e9b86e;
  font-family: var(--font-display);
}
.cookie-modal input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #E9B86E;
  margin-left: 18px;
}
.cookie-modal .cookie-category {
  background: #222f38;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 10px;
  font-size: 0.99rem;
  color: #dde7f5;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border: 1.5px solid #E9B86E22;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 20px;
  display: flex;
  gap: 14px;
}
.cookie-modal .cookie-btn {
  min-width: 90px;
  padding: 8px 0;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: none;
  color: #E9B86E;
  font-size: 1.7rem;
  cursor: pointer;
  z-index: 1;
  padding: 2px 8px;
  border-radius: 7px;
  transition: background 0.2s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  background: #232f3890;
}

@media (max-width: 530px) {
  .cookie-modal { padding: 21px 5vw 17px 7vw; }
}

/* Animations for menu and modal */
.mobile-menu { will-change: transform; }
.mobile-menu.open { box-shadow: 0 6px 44px 4px #161b22d3; }

/* --- Misc/Elevation --- */
section, .section {
  box-shadow: 0 2px 18px 0 #23305111;
  border-radius: 24px;
  background: #232f38;
}
section:first-of-type, .hero { box-shadow: none; }

@media (max-width:600px) {
  section, .section { border-radius: 10px; }
}

/* --- Buttons and Microinteractions --- */
button, .cta-btn {
  outline: none;
  border: none;
}
button:focus, .cta-btn:focus {
  outline: 2px solid #E9B86E;
  outline-offset: 1.5px;
}

/* --- Custom Scrollbar for Theme --- */
::-webkit-scrollbar { width: 12px; background: #232f38; border-radius:8px; }
::-webkit-scrollbar-thumb { background: #1C252C; border-radius:8px; }
::-webkit-scrollbar-thumb:hover { background: #E9B86E; }

/* --- Selection Color --- */
::selection { background: #E9B86E; color: #1C252C; }

/* --- Accessibility: High Contrast on Testimonial Text --- */
.testimonial-card a {
  color: #232f38;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.18s;
}
.testimonial-card a:hover, .testimonial-card a:focus {
  color: #E9B86E;
}

/* --- Misc Spacing --- */
.content-wrapper > *:not(:last-child) { margin-bottom: 7px; }

/* --- Address + Table Styles (infos) --- */
address { font-style: normal; color: #E9B86E; margin-bottom: 10px; }
table { width: 100%; border-spacing: 0; }
th, td { padding: 12px; }
th { background: #232f38; color: #E9B86E; font-family: var(--font-display); }
td { background: #161b22; color: #dde7f5; }

/* ==== END CSS ==== */
