/* ============================
   CSS RESET & NORMALIZE
============================ */
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 {
  line-height:1.5;
  -webkit-text-size-adjust:none;
  scroll-behavior: smooth;
}
body {
  min-height:100vh;
  background: #181715;
  color:#F3EFEB;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size:16px;
  font-weight:400;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {display:block;}
img {
  display:block;
  max-width:100%;
  height:auto;
}
ul,ol {
  margin-left: 1.5em;
}
a {
  color: #D6B290;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
  text-shadow: 0 0 3px #D6B290;
}
strong, b {
  font-weight:700;
}

/* ============================
   BRAND & THEME COLORS
============================ */
:root {
  --primary: #22201C;
  --secondary: #D6B290;
  --accent: #F3EFEB;
  --bg-dark: #181715;
  --bg-light: #24221E;
  --neon: #FFC86D;
  --neon-blue: #70E3FF;
  --danger: #ee5555;
  --shadow: 0 4px 24px 0 rgba(214,178,144,0.08),
    0 1.5px 4px 0 rgba(112,227,255,0.12);
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* ============================
   TYPOGRAPHY
============================ */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.95rem; }

p {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--accent);
}

ul,ol {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 1rem;
}
li{
  margin-bottom:8px;
}

/* ============================
   LAYOUT CONTAINERS & GENERAL SPACING
============================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  position:relative;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: var(--bg-light);
  margin-bottom: 20px;
  border-radius:18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position:relative;
  transition: transform 0.2s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 6px 32px 0 rgba(214,178,144,0.14), 0 2px 8px 0 rgba(112,227,255,0.22);
  z-index:1;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: #181715;
  border-radius: 18px;
  box-shadow: 0 4px 14px 1px rgba(34,32,28,0.07);
  padding: 26px 28px;
  margin-bottom: 20px;
  border: 1.5px solid var(--secondary);
  max-width: 700px;
  transition: box-shadow 0.18s, border-color 0.22s;
}
.testimonial-card:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 8px 24px 2px rgba(70,227,255,0.14), 0 2px 6px 0 rgba(214,178,144,0.10);
}
.testimonial-card p{
  color:#181715;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

/* ============================
   HEADER & NAVIGATION
============================ */
header {
  z-index: 10;
  background: #181715;
  box-shadow: 0 4px 20px 0 rgba(34,32,28,.04);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding-top: 10px;
  padding-bottom: 10px;
  position:relative;
}
header img {
  height: 48px;
  width:auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  padding: 10px 12px;
  border-radius: 6px;
  transition: color .18s, box-shadow .18s, background .18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--neon-blue);
  background: rgba(214,178,144,0.10);
  box-shadow: 0 0 4px var(--neon-blue);
}
.main-nav .cta-btn {
  background: var(--secondary);
  color: var(--primary);
  border:none;
  font-weight: 700;
  border-radius:8px;
  box-shadow: 0 2px 14px 0 rgba(214,178,144,0.12);
  padding: 10px 22px;
  margin-left: 18px;
  letter-spacing: 0.01em;
  transition: background .18s, color .18s, box-shadow .22s, transform .14s;
  position:relative;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: var(--neon-blue);
  color: #22201c;
  box-shadow: 0 4px 20px 0 var(--neon-blue);
  transform: scale(1.048);
}

/* ========== Mobile Nav (Burger) ========== */
.mobile-menu-toggle {
  display: none;
  background: var(--bg-dark);
  border: 2px solid var(--secondary);
  color: var(--secondary);
  border-radius: 6px;
  font-size: 2.1rem;
  padding: 5px 16px;
  margin-left: 18px;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
  z-index: 501;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--neon);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(91deg, #181715 88%, #22201c 100%);
  z-index: 502;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.68,.01,.53,.96);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 26px;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--neon-blue);
  border: none;
  font-size: 2.2rem;
  margin-left: 22px;
  cursor:pointer;
  padding: 8px 16px;
  z-index: 504;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--neon);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top:28px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  padding: 13px 28px;
  border-radius: 8px;
  transition: background .18s, color .18s;
  width: 100%;
  display: block;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: rgba(214,178,144,0.14);
  color: var(--neon);
}

/* Hide nav on mobile, show burger */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display:inline-block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display:none !important;
  }
}

/* ============================
   HERO SECTION
============================ */
.hero {
  background: linear-gradient(108deg, #22201C 62%, #181715 100%);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content:center;
  box-shadow: 0 10px 36px 0 rgba(214,178,144,0.09);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 18px;
  margin-top:40px;
  margin-bottom:36px;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--secondary);
  text-shadow: 0 0 12px rgba(112, 227, 255, 0.13), 0 1px 0 #181715;
}
.hero p {
  font-size: 1.18rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--neon-blue);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============================
   FEATURES
============================ */
.features {
  background:var(--bg-light);
  border-radius: 18px;
  margin-top: 40px;
  box-shadow: var(--shadow);
}
.features .feature-grid {
  display:flex;
  flex-wrap:wrap;
  gap:36px;
  justify-content: flex-start;
  margin-top: 20px;
}
.feature {
  background: #181715;
  color: var(--accent);
  border-radius: 16px;
  flex: 1 1 280px;
  min-width: 250px;
  max-width: 344px;
  padding: 34px 26px 26px 26px;
  transition: box-shadow .18s, border-color .18s;
  box-shadow: 0 2px 14px 1px rgba(70,227,255,0.10);
  border: 1.5px solid rgba(214,178,144,0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 6px 20px 0 var(--neon-blue);
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 4px var(--neon-blue));
}
.feature h3 {
  color: var(--secondary);
  font-size: 1.18rem;
  letter-spacing:0.01em;
}
.feature p {
  margin-bottom:0;
  color: var(--accent);
  font-size: 1rem;
}

/* ============================
  CTA BUTTON STYLING
============================ */
.cta-btn, .cta-section .cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing:0.01em;
  padding: 13px 34px;
  background: linear-gradient(90deg, var(--secondary) 80%, var(--neon-blue) 100%);
  color: var(--primary);
  border:none;
  border-radius:10px;
  box-shadow: 0 2px 22px 0 rgba(112,227,255,0.13);
  margin-top:12px;
  margin-bottom: 15px;
  transition: background .22s, color .18s, transform .14s, box-shadow .18s;
  cursor:pointer;
  position:relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(96deg, var(--neon) 60%, var(--secondary) 100%);
  color: #181715!important;
  box-shadow: 0 6px 18px var(--neon-blue);
  transform: scale(1.045) translateY(-3px);
}

/* ============================
   ABOUT, PREVIEW, ETC. SECTIONS
============================ */
.about-preview,
.process-preview,
.testimonials-preview,
.contact-preview,
.cta-section,
.about,.approach,.usp,
.services,.service-details,
.location-section,
.thank-you,
.privacy-policy, .gdpr, .cookie-policy, .terms,
.contact-section {
  background:var(--bg-light);
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-top: 36px;
}

.about-preview a,
.process-preview a,
.testimonials-preview a,
.contact-preview a,
.service-preview a {
  font-weight:700;
  font-size:1.12rem;
  color: var(--neon-blue);
  text-decoration: underline;
  letter-spacing:0.01em;
  transition: color .16s;
}
.about-preview a:hover,
.process-preview a:hover,
.testimonials-preview a:hover,
.contact-preview a:hover,
.service-preview a:hover {
  color:var(--secondary);
}
.about-preview h2, .process-preview h2,
.testimonials-preview h2, .contact-preview h2 {
  color: var(--neon);
}

.trust-signals {
  display: flex;
  gap: 30px;
  margin-top: 14px;
  margin-bottom:2px;
  font-weight:700;
  color: var(--neon-blue);
  font-size: 1rem;
}

/* ============================
   FORMS & CONTACT DETAILS
============================ */
.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  color:var(--accent);
  margin-bottom: 0;
}
.contact-info img {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 3px var(--neon));
}
.contact-info a {
  color:var(--secondary);
  font-weight:600;
  font-size:1rem;
}
.contact-info a:hover {
  color:var(--neon-blue);
}

/* ============================
   FOOTER
============================ */
footer {
  background: #181715;
  color: var(--accent);
  padding-top:34px;
  padding-bottom:18px;
  margin-top:40px;
  border-top: 2px solid var(--secondary);
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav, .footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a,
.footer-links a {
  color: var(--accent);
  font-size: 0.98rem;
  opacity:0.87;
  letter-spacing:0.04em;
  padding: 4px 0;
  border-radius: 3px;
  transition: color .17s, background .16s;
}
.footer-nav a:hover,
.footer-links a:hover {
  color: var(--secondary);
  background: rgba(214,178,144,0.08);
}
.footer-contact {
  font-size:0.98rem;
  color:var(--accent);
  display:flex;
  flex-direction:column;
  gap:6px;
}
.footer-contact img {
  width:18px;
  height:18px;
  margin-right: 7px;
  vertical-align:middle;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 18px;
  font-size: 0.94rem;
  opacity:.63;
}

/* ===========================
   SPECIAL PAGES (THANK YOU, ETC)
============================= */
.thank-you h1 {
  color: var(--neon);
}

.thank-you .cta-btn {
  margin-top: 24px;
}

/* ===========================
   RESPONSIVE DESIGN
============================= */
@media (max-width: 1200px) {
  .container { max-width: 96vw; }
}

@media (max-width: 992px) {
  .container { max-width: 100vw; padding: 0 10px; }
  .footer-wrapper { gap: 20px; }
}
@media (max-width:768px){
  header .container {
    flex-direction: row;
    gap: 0;
  }
  .content-wrapper {
    padding: 0;
    gap: 18px;
  }
  .section, section {
    padding: 28px 7px;
    margin-bottom: 34px;
  }
  .features .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 22px;
  }
  .testimonial-card {
    padding: 16px 13px;
  }
  .footer-wrapper {
    flex-direction:column;
    gap:18px;
  }
  .hero h1{font-size:2rem;}
  h2{font-size:1.4rem;}
}
@media (max-width:495px){
  .hero .container {
    margin-top: 12px;
  }
  .hero h1{font-size:1.45rem;}
}
@media (max-width:470px){
  .mobile-nav a{font-size:1rem;padding:11px 15px;}
}
@media (max-width:400px){
  .testimonial-card { padding:10px 4px; }
}

/* Stack text & images vertically on mobile */
@media (max-width:768px){
  .text-image-section {
    flex-direction:column;
    gap:18px;
  }
}

/* ===========================
   SHADOWS, MODERN & FUTURISTIC ACCENTS
============================= */
/* Neon Accent Glow */
.neon-accent {
  color: var(--neon-blue)!important;
  text-shadow: 0 0 12px var(--neon-blue);
}

/* Gradient Bars as Section Underlines */
.gradient-bar {
  width: 48px;
  height: 5px;
  border-radius: 5px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--neon) 60%, var(--neon-blue) 100%);
}

/* ===========================
   TRANSITIONS & MICRO-ANIMATIONS
============================= */
main a, button, .cta-btn {
  transition: all 0.17s cubic-bezier(.68,.01,.53,.96);
}
.card, .feature, .testimonial-card {
  transition: box-shadow .18s, border-color .18s, transform .14s;
}
.cta-btn:active { transform: scale(.99); }

/* =============================
   COOKIE CONSENT BANNER & MODAL
============================= */
.cookie-banner {
  position: fixed;
  bottom:0;
  left:0;
  width:100vw;
  background:rgba(22,20,17,0.97);
  color:var(--accent);
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 22px 16px 22px 18px;
  box-shadow: 0 0 20px 2px rgba(70,227,255,0.13);
  z-index: 9999;
  transition: transform 0.28s cubic-bezier(.37,1.34,.55,1.16);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner__text {
  flex:1 1 65%;
  font-size:1rem;
}
.cookie-banner__actions {
  display:flex;
  gap: 14px;
}
.cookie-btn {
  background: var(--secondary);
  color: var(--primary);
  border:none;
  border-radius:7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 7px 22px;
  box-shadow: 0 2px 8px 0 rgba(214,178,144,0.11);
  cursor:pointer;
  transition: background .15s, color .12s;
}
.cookie-btn.accept {
  background: var(--neon-blue);
  color: #181715;
}
.cookie-btn.reject {
  background: #ee5555;
  color:#fff;
}
.cookie-btn.settings {
  background: var(--secondary);
  color: #22201C;
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(1.09) contrast(1.09);
  box-shadow: 0 4px 18px var(--neon-blue);
}

/* Cookie modal (preferences) */
.cookie-modal {
  position:fixed;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%) scale(1);
  min-width: 320px;
  max-width: 98vw;
  background: #21201b;
  color:var(--accent);
  z-index: 10001;
  padding: 32px 24px 18px 24px;
  border-radius:18px;
  box-shadow: 0 16px 32px rgba(34,32,28,0.16), 0 2px 6px rgba(70,227,255,0.13);
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 1;
  pointer-events: auto;
  transition:opacity .22s, transform .34s;
}
.cookie-modal.hide {
  opacity:0;
  pointer-events:none;
  transform:translate(-50%,-48%) scale(0.98);
}
.cookie-modal__header {
  display: flex;
  align-items:center;
  justify-content: space-between;
  gap: 22px;
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight:700;
  font-size:1.28rem;
}
.cookie-modal__close {
  background: none;
  border: none;
  color: var(--neon-blue);
  font-size:1.8rem;
  cursor:pointer;
  padding:0;
  line-height:1;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items:center;
  gap:14px;
  margin-bottom:5.5px;
}
.cookie-category label {
  color:var(--accent);
  font-size:1rem;
  font-weight:600;
}
.cookie-toggle {
  width: 38px;
  height: 20px;
  border-radius: 10px;
  background: #35332b;
  position:relative;
  transition: background .12s;
  cursor:pointer;
  margin-left: 6px;
  border: 1px solid #48453b;
}
.cookie-toggle[aria-checked='true']{
  background: var(--neon-blue);
  border: 1px solid var(--neon-blue);
}
.cookie-toggle::after {
  content: '';
  display: block;
  width:16px;height:16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top:1.5px;left:2px;
  transition: left .18s;
}
.cookie-toggle[aria-checked='true']::after {
  left:18px;
}
.cookie-category .category-desc {
  color:#b3b1a8;
  font-size:0.95rem;
  margin-left:6px;
}

@media (max-width:568px){
  .cookie-banner{flex-direction:column;align-items:stretch;gap:7px;}
  .cookie-banner__actions{justify-content:flex-end;}
  .cookie-modal{min-width:94vw;padding:18px 3.5vw;gap:11px;}
  .cookie-modal__title{font-size:1.01rem;}
}

/* ===========================
   SCROLLBARS & SELECTION
============================= */
::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-thumb {
  background: #44423c;
  border-radius: 6px;
  border: 2px solid #21201c;
}
::selection {
  background: var(--neon);
  color: var(--primary);
}

/* ===========================
 ACCESSIBILITY    
============================= */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, .mobile-menu-toggle:focus {
  outline: 2px dashed var(--neon-blue);
  outline-offset: 2px;
  z-index: 1002;
}

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