/* ===================================================
   Glacial Quest Tech – tech_futuristic style.css
   Author: Senior CSS Dev & UI Designer
   Brand: Glacial Quest Tech
   Theme: Tech Futuristic (gradient backgrounds, neon accents, modern fonts, sleek UI)
   =================================================== */
/* 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,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #1e232a 0%, #215278 100%);
  color: #eaf6fa;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.4s linear;
}

/* Custom Scrollbar for Tech Feel */
body::-webkit-scrollbar {
  width: 11px;
  background: #133b54;
}
body::-webkit-scrollbar-thumb {
  background: #49A4C4;
  border-radius: 6px;
  border: 2px solid #215278;
}

/* TYPOGRAPHY =========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.75rem; margin-bottom: 20px; background: linear-gradient(90deg,#49A4C4 30%,#8ecbff 100%); color: transparent; -webkit-background-clip: text; background-clip: text; }
h2 { font-size: 2rem;  margin-bottom: 16px; color: #49A4C4; }
h3 { font-size: 1.25rem; color: #F0F3F6; }
h4 { font-size: 1.125rem; color: #F0F3F6; }
h5, h6 { font-size: 1rem; color: #F0F3F6; }
p, ul, ol, li {
  color: #eaf6fa;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong, b { color: #AEE7F8; font-weight: bold; }
a { text-decoration: none; color: #49A4C4; transition: color .2s; }
a:hover, a:focus { color: #fff; }

/* CONTAINER & LAYOUT =================== */
.container {
  width: 100%;
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding-top: 12px;
  padding-bottom: 12px;
}
.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 16px;
  background: rgba(28,38,50, .93);
  box-shadow: 0 4px 48px 0 rgba(73,164,196,0.06);
}

/* FLEXBOX PATTERNS (MANDATORY) =================== */
.card-container, .feature-grid, .service-list, .package-list, .recommendations-list, .features-grid, .steps-list {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.card, .deal-item, .service-item, .recommendation-item, .feature-item, .step-item {
  margin-bottom: 20px; position: relative; flex: 1 1 280px;
}
.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;
}
.testimonials-wrapper {
  display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 20px;
}
.testimonial-card {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F0F3F6;
  color: #222;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(33,82,120,0.12);
  min-width: 260px;
  max-width: 380px;
  flex: 1 1 260px;
  font-size: 1rem;
}
.testimonial-card p { color: #222; font-size: 1.1rem; }
.testimonial-card span { color: #215278; font-size: 0.99rem; font-weight: 500; }
.testimonial-summary {
  background: #215278;
  color: #F0F3F6;
  border-radius: 12px;
  padding: 26px 28px;
  margin: 0 0 20px;
  min-width: 225px;
  display: flex; flex-direction: column; align-items: flex-start;
  box-shadow: 0 2px 24px 0 rgba(33,82,120,0.13);
  font-size: 1rem;
}

.benefit-list, .benefit-points ul, .expertise-highlights ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
  padding-left: 0;
  margin: 0 0 24px 0;
}
.benefit-list li, .benefit-points ul li, .expertise-highlights ul li {
  display: flex; align-items: center; gap: 12px;
  color: #eaf6fa;
  font-size: 1.04rem;
}
.benefit-list img, .benefit-points img, .expertise-highlights img { width: 28px; height: 28px; }
.deal-item, .service-item, .recommendation-item, .step-item, .feature-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px;
  background: rgba(33,82,120,0.18);
  border: 1px solid #344e65;
  border-radius: 12px;
  padding: 28px 26px 24px 26px;
  position: relative;
  box-shadow: 0 2px 24px 0 rgba(73,164,196,0.07);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.22s;
  margin-bottom: 20px;
}
.deal-item:hover, .service-item:hover, .recommendation-item:hover, .step-item:hover, .feature-item:hover {
  border-color: #49A4C4;
  box-shadow: 0 8px 32px 0 rgba(73,164,196,0.23);
  transform: translateY(-3px) scale(1.015);
}

.card {
  margin-bottom: 20px; position: relative;
}

/* HEADER & NAVIGATION ======================== */
header {
  width: 100%; background: rgba(20,32,48,0.98); border-bottom: 2px solid #215278;
  position: relative; z-index: 1000;
  box-shadow: 0 0 30px 0 rgba(33,82,120,.10);
}
header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 20px; padding-bottom: 20px; }
header a img { height: 45px; width: auto; }

.main-nav {
  display: flex; flex-wrap: wrap; gap: 22px; align-items: center;
}
.main-nav a {
  color: #eaf6fa; font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus { color: #fff; background: #49A4C4; }

.cta-primary {
  background: linear-gradient(to right, #49A4C4 0%, #215278 100%);
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 12px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  margin-left: 24px;
  cursor: pointer;
  box-shadow: 0 4px 24px 0 rgba(73,164,196, 0.18);
  transition: background 0.2s, box-shadow 0.2s, transform 0.14s;
  text-shadow: 0 0 6px #16446e50;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(to right, #215278 0%, #49A4C4 100%);
  box-shadow: 0 6px 32px 0 rgba(73,164,196,.2), 0 0 24px 4px #49A4C4BB;
  transform: translateY(-1px) scale(1.018);
}
.cta-secondary {
  margin-top: 18px;
  background: transparent;
  border: 2px solid #49A4C4;
  color: #49A4C4;
  border-radius: 28px;
  padding: 11px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.27s, color 0.22s, box-shadow 0.18s, border-color 0.18s;
  outline: none;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #49A4C4;
  color: #fff;
  border-color: #49A4C4;
  box-shadow: 0 4px 24px 0 #49A4C433;
}

/* Mobile Burger Menu ========================== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px; top: 28px;
  font-size: 2rem;
  color: #49A4C4;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 9992;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #49A4C4;
  color: #fff;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,37,56,0.97);
  box-shadow: -2px 0 40px 0 #21527887;
  flex-direction: column;
  padding: 0;
  z-index: 9999;
  justify-content: flex-start;
  align-items: flex-end;
  transition: transform 0.35s cubic-bezier(.77,.2,.05,1.0), opacity .25s;
  transform: translateX(100%);
  opacity: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
  animation: slideInRight 0.4s cubic-bezier(.77,.2,.05,1.0);
}
@keyframes slideInRight {
  0% { transform: translateX(100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #49A4C4;
  margin: 32px 36px 12px 0;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  padding: 36px 32px;
  width: 100vw;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.14rem;
  font-weight: 600;
  background: none;
  padding: 12px 0 10px 0;
  border-radius: 0;
  letter-spacing: 0.06em;
  transition: color 0.16s;
  width: 100%;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #49A4C4;
  background: none;
}

/* HERO + GENERAL MAIN UI ======================== */
main section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
main .container {
  padding-top: 0; padding-bottom: 0;
}

.feature-grid, .features-grid {
  display: flex; flex-wrap: wrap; gap: 24px;
  margin: 26px 0 0 0;
}
.feature-item {
  flex: 1 1 240px;
  align-items: flex-start;
  background: rgba(33,82,120,0.13);
  min-width: 220px;
  max-width: 350px;
}
.feature-item img { width: 40px; height: 40px; filter: drop-shadow(0 0 6px #49A4C466); }
.feature-item h3 { font-size: 1.17rem; color: #AEE7F8; }
.feature-item p { color: #eaf6fa; font-size: 1rem; }

.service-list, .package-list, .recommendations-list, .steps-list {
  gap: 24px;
  margin-top: 22px;
}
.service-item, .deal-item, .recommendation-item, .step-item {
  min-width: 220px; max-width: 370px;
}
.service-item strong,
.deal-item strong,
.recommendation-item strong { color: #49A4C4; }

/* TABLES / COMPARISON ======================== */
.comparison-table {
  display: flex; flex-direction: column; gap: 10px; width: 100%; margin-bottom: 24px;
}
.comparison-row {
  display: flex; flex-direction: row; align-items: center; gap: 20px;
  background: rgba(49,106,156,.10);
  color: #f0f3f6;
  border-radius: 8px;
  padding: 13px 10px 13px 22px;
  font-size: 0.94rem;
  font-weight: 600;
}
.comparison-row:first-child {
  background: #215278;
  color: #AEE7F8;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.comparison-row > div {
  min-width: 90px;
  flex: 1;
  word-break: break-word;
  text-align: left;
}
.updated-info {
  color: #7ad8ff; font-size: 0.98rem; margin-bottom: 16px;
}

/* TEAM, BIOS, EXPERTISE ======================= */
.team-bios {
  display: flex; flex-wrap: wrap; gap: 22px; margin-bottom: 24px;
}
.team-member {
  background: rgba(49,106,156,0.11);
  padding: 17px 18px;
  border-radius: 10px;
  border: 1px solid #344e65;
  min-width: 190px;
  max-width: 340px;
  flex: 1 1 180px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 1rem;
  color: #eaf6fa;
}
.expertise-highlights ul { color: #AEE7F8; font-size: 1rem; }

/* FAQ ACCORDION ============================ */
.faq-accordion {
  display: flex; flex-direction: column; gap: 22px;
  margin-top: 14px;
}
.faq-item {
  background: rgba(49,106,156,0.13);
  border: 1px solid #344e65;
  border-radius: 12px;
  padding: 26px 22px 20px 22px;
  transition: box-shadow 0.22s, border-color 0.18s;
  box-shadow: 0 2px 24px 0 rgba(49,164,196,0.07);
}
.faq-item h3 { font-size: 1.09rem; color: #AEE7F8; margin-bottom: 8px; }
.faq-item p { color: #eaf6fa; }
.faq-item:hover, .faq-item:focus-within { border-color: #49A4C4; box-shadow: 0 7px 21px 0 #49A4C433; }

/* PRICING INFO ============================= */
.pricing-info {
  margin-top: 20px;
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start;
}

/* FOOTER =============================== */
footer {
  background: linear-gradient(90deg, #215278 0%, #215278 80%, #49A4C4 100%);
  color: #eaf6fa;
  padding: 38px 0 22px 0;
  border-top: 2px solid #215278;
  margin-top: 42px;
}
.footer-nav {
  display: flex; gap: 30px;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.footer-nav a {
  color: #AEE7F8;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #fff; }
.footer-branding {
  display: flex; align-items: center; gap: 16px; justify-content: center;
}
.footer-branding img { height: 36px; width: auto; }
.footer-branding span { color: #F0F3F6;
  letter-spacing: 0.01em; font-size: .98rem; }

/* COOKIE CONSENT BANNER ========================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #215278 75%, #49A4C4 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px;
  z-index: 99998;
  box-shadow: 0 -3px 30px 0 #21527844;
  animation: cookieSlideUp 0.4s cubic-bezier(.86,.21,.34,.81);
  font-size: 1rem;
}
@keyframes cookieSlideUp {
  0% {transform: translateY(100%); opacity: 0; }
  100% {transform: translateY(0); opacity: 1; }
}
.cookie-banner-message { max-width: 68vw; }
.cookie-banner-buttons { display: flex; gap: 14px; }
.cookie-btn {
  padding: 8px 23px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  border-radius: 24px;
  border: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
  outline: none;
}
.cookie-btn.accept {
  background: #49A4C4;
  color: #fff;
  box-shadow: 0 0 12px 0 #49A4C488;
  border: 2px solid #49A4C4;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: #215278; color: #fff; }
.cookie-btn.reject {
  background: #fff;
  color: #215278;
  border: 2px solid #49A4C4;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus { background: #AEE7F8; }
.cookie-btn.settings {
  background: transparent;
  color: #AEE7F8;
  border: 2px solid #AEE7F8;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus { background: #AEE7F822; }

/* Cookie Modal ================================ */
.cookie-modal-backdrop {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(16,32,43,0.6);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
}
.cookie-modal {
  background: #fff;
  color: #215278;
  border-radius: 22px;
  max-width: 420px;
  width: 96vw;
  padding: 36px 32px 30px 32px;
  position: relative;
  box-shadow: 0 8px 44px 0 #21527855;
  display: flex; flex-direction: column; gap: 18px;
  animation: cookieModalPop 0.25s cubic-bezier(.68,-0.6,.32,1.6);
}
@keyframes cookieModalPop {
  0% { transform: scale(.85) translateY(50px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #215278;
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.cookie-modal ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.cookie-category {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1.05rem; font-weight: 500; padding: 12px 0;
  border-bottom: 1px solid #AEE7F866;
}
.cookie-category:last-child { border: none; }
.cookie-category input[type=checkbox] {
  accent-color: #49A4C4;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 2px solid #49A4C4;
  background: #fff;
  cursor: pointer;
}
.cookie-modal-actions { display: flex; justify-content: flex-end; gap: 13px; margin-top: 18px; }
.cookie-modal .cookie-btn { font-size: 1rem; }
.cookie-modal .cookie-btn.cancel, .cookie-modal .cookie-btn.cancel:focus { background: #fff; color: #215278; border: 2px solid #49A4C4; }
.cookie-modal .cookie-btn.save, .cookie-modal .cookie-btn.save:focus { background: #49A4C4; color: #fff; }
.cookie-modal .cookie-btn.save:hover { background: #215278; }

/* GENERAL UI ============================= */
::-moz-selection { background: #49A4C4; color: #fff; }
::selection { background: #49A4C4; color: #fff; }
hr {
  border: none; border-top: 1.5px solid #344e65; margin: 24px 0;
}
img, svg { max-width: 100%; height: auto; display: block; }

/* SPACING UTILITIES (for card/sections) ========= */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-30 { margin-top: 30px !important; }

/* Z-INDEX MANAGER ============================ */
header { z-index: 1000; }
.cookie-banner { z-index: 99998; }
.cookie-modal-backdrop { z-index: 99999; }
.mobile-menu { z-index: 9999; }

/* ANIMATIONS & MICRO-INTERACTIONS ============ */
.card, .deal-item, .service-item, .recommendation-item, .step-item, .feature-item, .faq-item, .testimonial-card {
  transition: box-shadow 0.19s, border-color 0.20s, transform 0.14s;
}
.card:hover, .deal-item:hover, .service-item:hover, .recommendation-item:hover, .feature-item:hover, .faq-item:hover, .testimonial-card:hover {
  box-shadow: 0 6px 32px 0 #49A4C426;
  border-color: #49A4C4;
  transform: translateY(-2.5px) scale(1.013);
}

button, .cta-primary, .cta-secondary {
  transition: background 0.22s, color 0.19s, box-shadow 0.22s, transform 0.18s;
}

/* MOBILE / RESPONSIVE ========================= */
@media (max-width: 1120px) {
  .container { max-width: 98vw; padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 910px) {
  .feature-grid, .features-grid, .card-container, .service-list, .package-list, .recommendations-list, .steps-list {
    gap: 18px;
  }
  .team-bios {
    gap: 17px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.36rem; }
  main section, .section { padding: 30px 10px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .cta-primary { margin-left: 0; }
  header .container { flex-direction: row; gap: 5px; padding-top: 17px; padding-bottom: 17px; }
  .feature-grid, .features-grid, .service-list, .package-list, .recommendations-list, .steps-list, .testimonials-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .content-grid, .team-bios { flex-direction: column; gap: 18px; }
  .testimonial-card, .deal-item, .service-item, .recommendation-item, .feature-item, .step-item, .team-member {
    max-width: 100%; min-width: 0; margin-right: 0; margin-left: 0;
  }
  .card { margin-bottom: 18px; }
  .testimonial-summary { min-width: 0; padding: 16px 15px; font-size: 0.98rem; }
  .text-image-section { flex-direction: column; gap: 16px; }
  .cookie-banner-message { max-width: 94vw; }
}
@media (max-width: 520px) {
  html { font-size: 14px; }
  h1 { font-size: 1.19rem; }
  h2 { font-size: 1rem; }
  .testimonial-card, .deal-item, .service-item, .recommendation-item, .feature-item, .step-item, .team-member { padding: 17px 8px 14px 10px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 13px; padding: 13px 9px; }
  .cookie-modal { padding: 18px 6px 16px 6px; font-size: 0.98rem; }
}

/* ACCESSIBILITY: Focus Ring */
:focus-visible {
  outline: 2.5px solid #AEE7F8;
  outline-offset: 2px;
}

/* END */
