/* DESIGN THEME: Colorful, Energetic */
/* FONTS: Montserrat (Headings, bold & clean) / Inter (Body, high legibility) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@700;800;900&display=swap');

:root {
  /* Dynamic Custom Variable Names - Avoiding forbidden titles */
  --artro-gradient-vibrant: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  --artro-brand-glow: #06b6d4;     /* Vibrant Teal */
  --artro-brand-flash: #f97316;    /* Warm Energetic Orange */
  --artro-slate-primary: #0f172a;  /* Dark Slate Primary */
  --artro-slate-light: #1e293b;    /* Lighter Slate for blocks */
  --artro-pure-white: #ffffff;
  --artro-light-bg: #f8fafc;
  --artro-border-color: #e2e8f0;
  --artro-text-dense: #1e293b;
  --artro-text-muted: #64748b;
  
  --artro-font-display: 'Montserrat', sans-serif;
  --artro-font-body: 'Inter', sans-serif;
  
  --artro-radius-style: 16px; /* Soft structure */
  --artro-padding-normal: 10dvh;
}

/* Base resets & styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body.artro-body-layout {
  font-family: var(--artro-font-body);
  background-color: var(--artro-light-bg);
  color: var(--artro-text-dense);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--artro-font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--artro-slate-primary);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Scroll-driven progress bar */
.artro-scroll-tracker {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--artro-brand-flash);
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  animation: artro-grow-bar linear;
  animation-timeline: scroll();
  z-index: 10000;
}
@keyframes artro-grow-bar {
  to { transform: scaleX(1); }
}

/* Scroll-reveal animations for sections */
@keyframes artro-fade-in-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.artro-reveal-section {
  animation: artro-fade-in-up linear both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

/* Header / Navigation styles (Preset C: Bright accent-color bg, white text, hamburger custom CSS) */
.artro-topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--artro-brand-glow);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.artro-brand-holder {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--artro-pure-white);
}

.artro-logo-vector {
  width: 32px;
  height: 32px;
}

.artro-brand-name {
  font-family: var(--artro-font-display);
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.artro-navigation-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.artro-nav-item {
  color: var(--artro-pure-white);
  font-family: var(--artro-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.artro-nav-item:hover {
  opacity: 0.85;
}

.artro-nav-item.artro-active-page::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--artro-brand-flash);
}

/* Mobile Hamburger Custom Core (Strictly No JS) */
.artro-trigger-burger {
  display: none;
}

.artro-burger-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.artro-burger-label span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--artro-pure-white);
  transition: all 0.3s ease-in-out;
}

/* Main Canvas Wrapper */
.artro-main-canvas {
  width: 100%;
  overflow: hidden;
}

/* Hero Panel (Preset C: Fullscreen gradient-bg *no bg.webp inside background*, giant transparent text, left-aligned layout, abstract CSS forms) */
.artro-prime-panel {
  min-height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 4rem 5%;
  overflow: hidden;
  color: var(--artro-pure-white);
}

.artro-giant-bg-number {
  position: absolute;
  right: 5%;
  bottom: -50px;
  font-size: 24rem;
  font-family: var(--artro-font-display);
  font-weight: 900;
  color: var(--artro-pure-white);
  opacity: 0.06;
  user-select: none;
  pointer-events: none;
}

.artro-prime-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.artro-prime-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.artro-prime-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: var(--artro-pure-white);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.artro-prime-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  opacity: 0.95;
  max-width: 650px;
  font-weight: 400;
}

.artro-hero-cta-wrapper {
  margin-top: 1rem;
}

/* Pill CTA Buttons */
.artro-action-pill-btn {
  display: inline-block;
  background-color: var(--artro-brand-flash);
  color: var(--artro-pure-white);
  font-family: var(--artro-font-display);
  font-weight: 800;
  text-transform: uppercase;
  padding: 1.1rem 2.8rem;
  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.artro-action-pill-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.6);
}

/* Abstract decorations - Preset C requirement */
.artro-abstract-decoration-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
}

.artro-geom-shape {
  position: absolute;
  background: var(--artro-pure-white);
  opacity: 0.15;
}

.artro-geom-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  top: 10%;
  left: 20%;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 80%);
}

.artro-geom-rect {
  width: 120px;
  height: 120px;
  border-radius: var(--artro-radius-style);
  bottom: 10%;
  right: 15%;
  transform: rotate(45deg);
}

.artro-geom-ring {
  width: 100px;
  height: 100px;
  border: 12px solid var(--artro-pure-white);
  border-radius: 50%;
  top: 40%;
  right: 40%;
}

/* Content Panel (Preset C: Section with bg2.webp full width, clip-path diagonal edges top/bottom, text overlay transparent bg) */
.artro-angled-media-block {
  margin: 4rem 0;
  padding: var(--artro-padding-normal) 5%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.artro-angled-overlay {
  background: rgba(15, 23, 42, 0.85); /* Dark semi-transparent overlay */
  backdrop-filter: blur(8px);
  padding: 3.5rem 5%;
  border-radius: var(--artro-radius-style);
  max-width: 900px;
  width: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.artro-angled-text-card {
  text-align: center;
}

.artro-angled-heading {
  color: var(--artro-pure-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.artro-angled-body {
  color: #f1f5f9;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
}

/* Features Grid (Preset C: 3/4 column grid, big ordinal numbers instead of icons, zero border) */
.artro-pillar-grid-reveal {
  padding: var(--artro-padding-normal) 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.artro-grid-section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3.5rem;
  position: relative;
}

.artro-grid-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background-color: var(--artro-brand-flash);
  margin: 1rem auto 0;
  border-radius: 999px;
}

.artro-pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.artro-pillar-item {
  background-color: var(--artro-pure-white);
  padding: 2.5rem 2rem;
  border-radius: var(--artro-radius-style);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.artro-pillar-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.artro-pillar-huge-num {
  font-family: var(--artro-font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--artro-brand-flash);
  line-height: 1;
}

.artro-pillar-title {
  font-size: 1.3rem;
  color: var(--artro-slate-primary);
}

.artro-pillar-desc {
  font-size: 0.95rem;
  color: var(--artro-text-muted);
}

/* "How it works" (Preset C: Horizontal path, solid color connector line, alternating circles) */
.artro-flow-path-reveal {
  padding: var(--artro-padding-normal) 5%;
  background-color: var(--artro-light-bg);
  max-width: 1200px;
  margin: 0 auto;
}

.artro-flow-main-heading {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 4.5rem;
}

.artro-flow-line-container {
  position: relative;
}

/* Solid Connector line */
.artro-flow-connector-line {
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 4px;
  background-color: var(--artro-brand-glow);
  z-index: 1;
}

.artro-flow-step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.artro-flow-single-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.artro-flow-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--artro-font-display);
  font-size: 1.8rem;
  font-weight: 900;
  transition: transform 0.3s ease;
}

.artro-flow-badge:hover {
  transform: scale(1.1);
}

/* Alternating style elements */
.artro-badge-filled {
  background-color: var(--artro-brand-glow);
  color: var(--artro-pure-white);
  border: 4px solid var(--artro-pure-white);
  box-shadow: 0 5px 15px rgba(6, 182, 212, 0.4);
}

.artro-badge-outline {
  background-color: var(--artro-pure-white);
  color: var(--artro-brand-glow);
  border: 4px solid var(--artro-brand-glow);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.artro-flow-step-title {
  font-size: 1.25rem;
  color: var(--artro-slate-primary);
  margin-top: 0.5rem;
}

.artro-flow-step-text {
  font-size: 0.95rem;
  color: var(--artro-text-muted);
  max-width: 280px;
}

/* CTA Strip (Preset C: Dark background, bold heading left + pill button right - flex row) */
.artro-bottom-callout {
  padding: 6rem 5%;
  color: var(--artro-pure-white);
}

.artro-bottom-callout-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.artro-bottom-callout-heading {
  color: var(--artro-pure-white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  max-width: 750px;
}

.artro-bottom-callout-action-holder {
  flex-shrink: 0;
}

.artro-bottom-link-pill {
  display: inline-block;
  background-color: var(--artro-brand-flash);
  color: var(--artro-pure-white);
  font-family: var(--artro-font-display);
  font-weight: 800;
  text-transform: uppercase;
  padding: 1.2rem 3rem;
  border-radius: 999px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.artro-bottom-link-pill:hover {
  background-color: #ea580c;
  transform: scale(1.05);
}

/* EXPERT PAGE STYLES */
.artro-expert-header {
  padding: 6rem 5%;
  text-align: center;
  color: var(--artro-pure-white);
  position: relative;
  overflow: hidden;
}

.artro-expert-header-inner {
  max-width: 800px;
  margin: 0 auto;
}

.artro-expert-title-main {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--artro-pure-white);
  margin-bottom: 1.5rem;
}

.artro-expert-subtitle-main {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.9;
}

/* Preset C Specific: Direct CTA block below Hero */
.artro-direct-action-block {
  padding: 4rem 5% 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.artro-direct-card {
  background-color: var(--artro-pure-white);
  padding: 3rem;
  border-radius: var(--artro-radius-style);
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.artro-direct-heading {
  font-size: 1.8rem;
  color: var(--artro-slate-primary);
}

.artro-direct-text {
  font-size: 1.1rem;
  color: var(--artro-text-dense);
  max-width: 600px;
}

/* Preset C Specific: Content Row split */
.artro-expert-editorial-block {
  padding: var(--artro-padding-normal) 5%;
}

.artro-expert-editorial-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.artro-expert-editorial-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.artro-editorial-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.artro-editorial-para {
  color: var(--artro-text-dense);
  font-size: 1.05rem;
  line-height: 1.7;
}

.artro-expert-editorial-media {
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: var(--artro-radius-style);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Preset C Specific: horizontal stats row */
.artro-stats-strip {
  background-color: var(--artro-slate-primary);
  padding: 4rem 5%;
  color: var(--artro-pure-white);
}

.artro-stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.artro-stat-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.artro-stat-huge-num {
  font-family: var(--artro-font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--artro-brand-glow);
}

.artro-stat-label {
  font-size: 1rem;
  opacity: 0.85;
}

/* closing block bg3.webp */
.artro-expert-closing-block {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 5%;
}

.artro-expert-closing-overlay {
  display: flex;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.artro-closing-text-card {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  padding: 3.5rem;
  border-radius: var(--artro-radius-style);
  max-width: 650px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.artro-closing-heading {
  font-size: 1.8rem;
  color: var(--artro-slate-primary);
}

.artro-closing-paragraph {
  font-size: 1.05rem;
  color: var(--artro-text-dense);
}

.artro-action-pill-btn-alt {
  display: inline-block;
  background-color: var(--artro-brand-glow);
  color: var(--artro-pure-white);
  font-family: var(--artro-font-display);
  font-weight: 800;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
  transition: background-color 0.3s ease;
}

.artro-action-pill-btn-alt:hover {
  background-color: #0891b2;
}

/* RESERVATION PAGE STYLES (Preset C Layout: form left 60% / cards right 40%) */
.artro-reserve-split-section {
  padding: 4rem 5%;
}

.artro-reserve-split-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}

/* Left Form Container */
.artro-reserve-form-container {
  background-color: var(--artro-pure-white);
  padding: 3.5rem 3rem;
  border-radius: var(--artro-radius-style);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.artro-reserve-form-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.artro-reserve-form-subline {
  color: var(--artro-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

/* Form Styles */
.artro-reservation-interactive-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.artro-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.artro-form-label {
  font-family: var(--artro-font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--artro-slate-primary);
  letter-spacing: 0.02em;
}

.artro-form-input, .artro-form-textarea {
  font-family: var(--artro-font-body);
  font-size: 1rem;
  padding: 1rem;
  border: 2px solid var(--artro-border-color);
  border-radius: 8px;
  color: var(--artro-text-dense);
  outline: none;
  transition: border-color 0.3s ease;
}

.artro-form-input:focus, .artro-form-textarea:focus {
  border-color: var(--artro-brand-glow);
}

.artro-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.artro-form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.artro-form-checkbox-input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  cursor: pointer;
}

.artro-form-checkbox-label {
  font-size: 0.85rem;
  color: var(--artro-text-muted);
}

.artro-form-checkbox-label a {
  color: var(--artro-brand-glow);
  font-weight: 600;
}

.artro-form-submit-holder {
  margin-top: 1rem;
}

.artro-form-submit-pill-btn {
  width: 100%;
  padding: 1.1rem 2rem;
  background-color: var(--artro-brand-flash);
  color: var(--artro-pure-white);
  border: none;
  border-radius: 999px;
  font-family: var(--artro-font-display);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.artro-form-submit-pill-btn:hover {
  background-color: #ea580c;
  transform: translateY(-2px);
}

.artro-reserve-contact-info {
  margin-top: 2rem;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--artro-text-muted);
}

.artro-contact-email-link {
  color: var(--artro-brand-glow);
  font-weight: 600;
}

/* Sidebar Right 40% */
.artro-reserve-features-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.artro-sidebar-heading {
  font-size: 1.5rem;
}

.artro-sidebar-card {
  background-color: var(--artro-pure-white);
  padding: 1.8rem;
  border-radius: var(--artro-radius-style);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.artro-sidebar-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.artro-sidebar-card-icon {
  font-size: 1.5rem;
}

.artro-sidebar-card-title {
  font-size: 1.15rem;
}

.artro-sidebar-card-desc {
  font-size: 0.9rem;
  color: var(--artro-text-muted);
}

/* Sidebar bullets with custom color circles */
.artro-sidebar-bullets-box {
  background-color: var(--artro-slate-primary);
  color: var(--artro-pure-white);
  padding: 2.2rem;
  border-radius: var(--artro-radius-style);
}

.artro-bullets-title {
  color: var(--artro-pure-white);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.artro-bullets-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.artro-bullets-list li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.4;
}

.artro-bullet-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* FAQ Accordion bottom */
.artro-faq-bottom-reveal {
  background-color: var(--artro-pure-white);
  padding: var(--artro-padding-normal) 5%;
  margin-top: 4rem;
}

.artro-faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.artro-faq-section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.artro-faq-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.artro-faq-item {
  border-bottom: 2px solid var(--artro-border-color);
  padding-bottom: 1.5rem;
}

.artro-faq-question {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--artro-slate-primary);
}

.artro-faq-answer {
  font-size: 1rem;
  color: var(--artro-text-dense);
}

/* LEGAL PAGES STYLES */
.artro-legal-plain-canvas {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 5%;
  min-height: 100vh;
}

.artro-legal-heading {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.artro-legal-meta {
  font-size: 0.9rem;
  color: var(--artro-text-muted);
  margin-bottom: 3rem;
}

.artro-legal-section {
  margin-bottom: 3rem;
}

.artro-legal-section p {
  color: var(--artro-text-dense);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.artro-legal-subtitle {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  margin-top: 2rem;
}

/* THANK YOU STYLES */
.artro-thanks-visual-panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 5%;
}

.artro-thanks-blur-overlay {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 4rem;
  border-radius: var(--artro-radius-style);
  max-width: 700px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.artro-thanks-message-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.artro-thanks-icon-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--artro-brand-glow);
  color: var(--artro-pure-white);
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artro-thanks-main-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.artro-thanks-body-text {
  font-size: 1.05rem;
  color: var(--artro-text-dense);
  line-height: 1.6;
}

.artro-thanks-btn-holder {
  margin-top: 1rem;
}

.artro-thanks-return-btn {
  display: inline-block;
  background-color: var(--artro-slate-primary);
  color: var(--artro-pure-white);
  font-family: var(--artro-font-display);
  font-weight: 800;
  text-transform: uppercase;
  padding: 1.1rem 2.8rem;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
  transition: background-color 0.3s ease;
}

.artro-thanks-return-btn:hover {
  background-color: var(--artro-slate-light);
}

/* FOOTER SECTION */
.artro-footer-wrap {
  background-color: var(--artro-slate-primary);
  color: var(--artro-pure-white);
  padding: 5rem 5% 3rem;
  border-top: 5px solid var(--artro-brand-flash);
}

.artro-footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.artro-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.artro-footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.artro-footer-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.artro-footer-item:hover {
  color: var(--artro-pure-white);
}

.artro-footer-disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-bottom: 1.5rem;
}

.artro-footer-disclaimer p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.artro-footer-copy {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.artro-footer-copy p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* COOKIE BANNER STYLE */
.artro-cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--artro-slate-primary);
  color: var(--artro-pure-white);
  padding: 1.5rem 5%;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.artro-cookie-text {
  font-size: 0.95rem;
  max-width: 800px;
}

.artro-cookie-buttons {
  display: flex;
  gap: 1rem;
}

.artro-cookie-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--artro-radius-style);
  font-family: var(--artro-font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
}

.artro-cookie-accept {
  background-color: var(--artro-brand-flash);
  color: var(--artro-pure-white);
}

.artro-cookie-decline {
  background-color: transparent;
  color: var(--artro-pure-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* RESPONSIVE DESIGN BREAKPOINTS */
@media (max-width: 968px) {
  .artro-prime-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .artro-prime-content {
    align-items: center;
  }

  .artro-abstract-decoration-wrapper {
    display: none;
  }

  .artro-flow-step-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .artro-flow-connector-line {
    display: none;
  }

  .artro-bottom-callout-inner {
    flex-direction: column;
    text-align: center;
  }

  .artro-expert-editorial-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .artro-expert-editorial-media {
    height: 300px;
  }

  .artro-reserve-split-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Hamburger menu responsive styling */
  .artro-burger-label {
    display: flex;
  }

  .artro-navigation-links {
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    background-color: var(--artro-brand-glow);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  .artro-trigger-burger:checked ~ .artro-navigation-links {
    transform: translateX(0);
  }

  .artro-trigger-burger:checked ~ .artro-burger-label span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .artro-trigger-burger:checked ~ .artro-burger-label span:nth-child(2) {
    opacity: 0;
  }

  .artro-trigger-burger:checked ~ .artro-burger-label span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .artro-footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .artro-footer-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .artro-cookie-notice {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .artro-thanks-blur-overlay {
    padding: 2rem;
  }
}