/* =============================
   Coral Home – tech_futuristic
   Modern Reset & Responsive Flex Layouts
============================= */

/* 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, 
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 {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #101923;
  color: #E8E8F2;
  min-height: 100vh;
  line-height: 1.6;
}
img, picture, video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #F2D7A0;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E2703A;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}

/* =============================
   Brand & Futuristic Variables
============================= */
:root {
  --color-primary: #28475C;
  --color-secondary: #F2D7A0;
  --color-accent: #B85027;
  --color-brand-dark: #101923;
  --color-brand-med: #192A37;
  --color-brand-light: #E8E8F2;
  --color-card: #18232F;
  --color-highlight: #E2703A;
  --color-white: #fff;
  --color-black: #000;
  --color-border: #203F53;
  --color-shadow: rgba(66,185,230,.12);
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --radius-card: 18px;
  --radius-button: 32px;
  --shadow-base: 0 2px 18px 0 rgba(66,185,230,0.08),0 1.5px 13px 0 rgba(40, 71, 92, 0.12);
  --transition: 0.24s cubic-bezier(.52,.06,.37,1.16);
}

/* =============================
   Layout Wrappers & Structure
============================= */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-brand-dark);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-base);
}

@media (min-width: 768px) {
  .section {
    padding: 60px 32px;
    margin-bottom: 80px;
  }
}

/* =============================
   TYPOGRAPHY
============================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: bold;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.15; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.375rem; line-height: 1.25; }
h4 { font-size: 1.125rem; }
p, li, blockquote, input, label {
  font-family: var(--font-body);
  color: #e8e8f2;
  font-size: 1rem;
}
strong { color: var(--color-secondary); font-weight: 700;}
blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-brand-light);
  border-left: 4px solid var(--color-highlight);
  padding-left: 18px;
  margin-bottom: 12px;
  font-style: italic;
}

@media (max-width: 576px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.05rem; }
  h4 { font-size: 1rem; }
  p, li { font-size: 0.98rem; }
}

/* =============================
   HEADER & MENU
============================= */
header {
  width: 100%;
  background: linear-gradient(90deg, #18232F 0%, #28475C 100%);
  box-shadow: 0 2px 24px 0 rgba(26, 45, 80, 0.08);
  position: relative;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
}
header img {
  height: 48px;
  width: auto;
}
nav.main-menu {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
}
.main-menu a {
  position: relative;
  color: var(--color-secondary);
  padding: 8px 10px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.main-menu a:hover, .main-menu a:focus {
  color: #fff;
  background: rgba(226,112,58,0.18);
}

.cta-button {
  background: var(--color-highlight);
  color: #fff;
  border-radius: var(--radius-button);
  padding: 12px 36px;
  font-size: 1.1rem;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  font-weight: 700;
  border: none;
  outline: none;
  box-shadow: 0 2px 16px 0 rgba(226,112,58,0.07);
  transition: background 0.18s, transform 0.13s;
  cursor: pointer;
  position: relative;
  z-index: 1;
  margin-left: 16px;
}
.cta-button:hover, .cta-button:focus {
  background: #B85027;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 24px 0 rgba(226,112,58,0.13);
}

/* Hide mobile menu button desktop */
.mobile-menu-toggle {
  display: none;
}

/* =============================
   MOBILE MENU
============================= */
@media (max-width: 992px) {
  nav.main-menu, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 16px;
    right: 24px;
    z-index: 120;
    background: var(--color-highlight);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 1.8rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(40, 71, 92, .16);
    transition: background var(--transition), color var(--transition);
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: var(--color-primary);
    color: var(--color-secondary);
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 90vw;
  max-width: 350px;
  background: linear-gradient(110deg, #18232F 0%, #28475C 100%);
  box-shadow: -6px 0 32px 0 rgba(40, 71, 92, 0.22);
  transform: translateX(105%);
  transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 150;
  padding: 32px 0 0 0;
  visibility: hidden;
}
.mobile-menu.menu-open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: transparent;
  color: var(--color-secondary);
  margin: 4px 24px 24px 0;
  cursor: pointer;
  border-radius: 32px;
  transition: background var(--transition), color var(--transition);
  border: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E2703A33;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-left: 36px;
  margin-top: 16px;
  font-family: var(--font-display);
}
.mobile-nav a {
  font-size: 1.2rem;
  padding: 11px 5px;
  color: var(--color-secondary);
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-highlight);
  background: rgba(242,215,160,.10);
}
@media (min-width: 993px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* =============================
   HERO SECTION
============================= */
.hero {
  background: linear-gradient(129deg, #28475C 40%, #192A37 98%);
  padding: 60px 0 40px;
  margin-bottom: 0;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 12px 36px -12px rgba(40,71,92,0.13);
}
.hero .container {
  justify-content: center;
  align-items: stretch;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
  gap: 28px;
}
.hero h1 {
  color: var(--color-secondary);
  text-shadow: 0 4px 36px #0001;
}
.hero p {
  max-width: 600px;
  color: #e8e8f2;
  margin-bottom: 20px;
}
.hero .cta-button {
  margin-top: 10px;
}
@media (max-width: 576px) {
  .hero {
    padding: 38px 0 22px;
    border-radius: 0 0 24px 24px;
  }
}

/* =============================
   FEATURES / OFFER CARDS
============================= */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 32px 0 0 0;
}
.feature-grid > div, .service-list > div {
  background: var(--color-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-base);
  padding: 28px 22px;
  flex: 1 1 270px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 1.5px solid #223C52;
  position: relative;
  z-index: 1;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.feature-grid > div:hover, .service-list > div:hover {
  box-shadow: 0 6px 32px 0 rgba(226,112,58,0.12);
  border-color: var(--color-accent);
  transform: translateY(-5px) scale(1.015);
}
.feature-grid img, .values-list img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 8px #E2703A66);
}

@media (max-width: 768px) {
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .service-list > div {
    min-width: auto;
    width: 100%;
  }
}

/* =============================
   CARDS & LISTS
============================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card);
  margin-bottom: 20px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-base);
  position: relative;
  flex: 1 1 240px;
  min-width: 200px;
  padding: 24px 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(176,80,39,0.17);
  transform: translateY(-4px) scale(1.01);
}
.values-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 14px;
}
.values-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.04rem;
  background: #1C2733;
  border-radius: 12px;
  padding: 18px 16px;
  color: #F2D7A0;
  margin-bottom: 8px;
}
.values-list img {
  width: 32px;
  height: 32px;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tips-list li {
  background: #1C2733;
  border-radius: 12px;
  padding: 16px 16px 12px 20px;
  margin-bottom: 7px;
}

/* =============================
   TESTIMONIALS
============================= */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 22px;
  background: linear-gradient(101deg, #fff 92%, #F2D7A0 100%);
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(40,71,92,0.08);
  border: 1.5px solid #E2703A44;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  color: #222F3F;
}
.testimonial-card blockquote {
  color: #222F3F;
  border-left: 4px solid #E2703A;
  margin-bottom: 8px;
  padding-left: 14px;
  font-size: 1.09rem;
}
.testimonial-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.99rem;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(242,215,160,0.17);
  transform: translateY(-2px) scale(1.015);
  border-color: var(--color-highlight);
}

/* =============================
   Q&A SECTION
============================= */
.qa-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.qa-item {
  background: #1C2733;
  border-radius: 14px;
  padding: 18px 18px 14px 18px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px 0 rgba(42,71,92,0.08);
}
.qa-item h3 {
  color: var(--color-highlight);
  margin-bottom: 10px;
}
.qa-item p {
  color: var(--color-brand-light);
}

/* =============================
   CONTACT DETAILS
============================= */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1.09rem;
}
.contact-details a {
  color: var(--color-highlight);
  font-weight: 500;
}

/* =============================
   CTA SECTION
============================= */
.cta-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 576px) {
  .cta-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* =============================
   FOOTER
============================= */
footer {
  width: 100%;
  background: linear-gradient(90deg,#192A37 0%,#1C2733 100%);
  padding: 32px 0 16px;
  border-radius: 44px 44px 0 0;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
footer img {
  width: 46px;
  height: auto;
  margin-right: 18px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 0.97rem;
}
.footer-menu a {
  color: var(--color-secondary);
  padding: 6px 7px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #B8502730;
  color: #fff;
}
footer p {
  font-size: 0.98rem;
  color: #F2D7A0;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .footer-menu {
    gap: 20px;
  }
}

/* =============================
   FLEXBOX LAYOUT PATTERN CLASSES
============================= */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
.section { margin-bottom: 60px; padding: 40px 20px; }

@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 22px; }
  .content-grid { flex-direction: column; gap: 18px; }
  .card-container { flex-direction: column; }
}

/* =============================
   BUTTONS, LINKS, MICRO-INTERACTIONS
============================= */
button, .cta-button, .mobile-menu-toggle, .mobile-menu-close {
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.button, .cta-button {
  position: relative;
  overflow: hidden;
  outline: 0;
  border: none;
}
.button:after, .cta-button:after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, #F2D7A044 10%, transparent 75%);
  opacity: 0.7;
  transform: translate(-50%,-50%);
  transition: width 0.62s cubic-bezier(.52,.06,.37,1.16), height 0.62s cubic-bezier(.52,.06,.37,1.16);
  z-index: 0;
}
.button:active:after, .cta-button:active:after {
  width: 220px;
  height: 220px;
}

/* =============================
   NEON/TECH ACCENTS
============================= */
.cta-button, .main-menu a, .footer-menu a, .mobile-nav a {
  box-shadow: 0 1px 4px 0 #E2703A22, 0 0 9px 0 #28475C0c;
}
.cta-button {
  border: 1.5px solid #B85027bb;
}
.cta-button:hover, .cta-button:focus {
  border-color: #F2D7A0aa;
  box-shadow: 0 1px 7px 0 #E2703A55, 0 0 16px 0 #F2D7A033;
}

/* Neon accent focus for inputs/buttons */
:focus-visible {
  outline: 2px solid #B85027;
  outline-offset: 1.5px;
}

/* =============================
   RESPONSIVENESS
============================= */
@media (max-width: 576px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 26px 6px;
    margin-bottom: 38px;
    border-radius: 10px;
  }
  .feature-grid > div, .service-list > div {
    padding: 20px 12px;
    border-radius: 10px;
  }
  .testimonial-card {
    padding: 12px 10px;
    border-radius: 10px;
  }
}

/* =============================
   COOKIE CONSENT BANNER
============================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(90deg,#1C2733 88%,#B85027 140%);
  color: #fff;
  padding: 18px 14px 14px 22px;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -6px 36px 0 #02020222;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  z-index: 1001;
  font-size: 1rem;
  animation: cookie-drop 0.58s cubic-bezier(.8,1.65,.32,1) 1;
}
@keyframes cookie-drop {
  from { bottom: -80px; opacity: 0; }
  to { bottom: 0; opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 60%;
  color: #fff;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner__button {
  padding: 10px 22px;
  border-radius: 26px;
  border: none;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 1px 4px #B8502720;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.13s;
}
.cookie-banner__button:hover, .cookie-banner__button:focus {
  background: var(--color-highlight);
}
.cookie-banner__button.cookie-settings {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner__button.cookie-settings:hover {
  background: #fff0cc;
  color: #B85027;
}
.cookie-banner__button.cookie-reject {
  background: #28475C;
  color: var(--color-secondary);
}
.cookie-banner__button.cookie-reject:hover {
  background: #101923;
  color: #fff;
}

@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 12px 5px 10px 10px;
  }
  .cookie-banner__actions {
    gap: 8px;
  }
}

/* =============================
   COOKIE CONSENT MODAL
============================= */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -53%) scale(0.95);
  background: #111a23;
  color: #fff;
  min-width: 340px;
  max-width: 95vw;
  width: 450px;
  border-radius: 18px;
  box-shadow: 0 8px 46px #0004;
  z-index: 1100;
  padding: 28px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s, transform 0.36s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -53%) scale(1);
}
.cookie-modal h3 {
  color: var(--color-accent);
  font-size: 1.22rem;
  margin-bottom: 10px;
}
.cookie-modal__close {
  position: absolute;
  right: 22px;
  top: 16px;
  font-size: 1.5rem;
  background: transparent;
  color: var(--color-secondary);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal__close:hover { background: #E2703A33; color: #fff; }
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.07rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-highlight);
  width: 18px;
  height: 18px;
}
.cookie-category--essential input[type="checkbox"] {
  accent-color: #ccc;
  cursor: not-allowed;
}
.cookie-modal__actions {
  display: flex;
  gap: 13px;
  margin-top: 12px;
}
.cookie-modal__actions button {
  padding: 9px 24px;
  border-radius: 24px;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  background: var(--color-highlight);
  color: #fff;
  box-shadow: 0 1px 4px #E2703A19;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-modal__actions button.cancel {
  background: #28475C;
  color: var(--color-secondary);
}
.cookie-modal__actions button.cancel:hover {
  background: #11202d;
  color: #fff;
}
.cookie-modal__actions button.save {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-modal__actions button.save:hover {
  background: #B85027;
  color: #fff;
}
@media (max-width: 480px) {
  .cookie-modal {
    min-width: 210px;
    width: 98vw;
    padding: 16px 6vw 16px 6vw;
  }
}

/* =============================
   DECORATIVE LINES/NEON GLOW
============================= */
.section:before {
  content: '';
  display: block;
  position: absolute;
  left: 24px;
  top: -16px;
  height: 3px;
  width: 80px;
  border-radius: 2px;
  background: linear-gradient(90deg,#E2703A88 30%,transparent 100%);
  z-index: 0;
}
@media (max-width: 768px) {
  .section:before { left: 12px; width: 45px; }
}

/* ============== EXTRAS ============== */
::-webkit-scrollbar {
  width: 9px;
  background: #101923;
}
::-webkit-scrollbar-thumb {
  background: #223C52;
  border-radius: 8px;
}

input, textarea, select {
  background: #18232F;
  color: #F2D7A0;
  border-radius: 8px;
  padding: 9px 12px;
  margin-bottom: 16px;
  border: 1px solid #223C52;
  transition: border-color 0.18s, background 0.18s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-highlight);
}

/* =============================
   Z-INDEX STACK MANAGEMENT
============================= */
header, .mobile-menu, .cookie-banner, .cookie-modal { z-index: 1000; }
.mobile-menu.menu-open { z-index: 1500; }
.cookie-modal.open { z-index: 1600; }

/* No grid properties or columns are used anywhere as requested. ALL is FLEXBOX ONLY. */