/* True Dental Consulting - Exact Match to Original */

/* ========== CSS Variables (Warm Gray Theme) ========== */
:root {
  /* Warm Gray theme colors - no blue tones */
  --bg-primary: #FAFAFA;
  --bg-secondary: #F0F0F0;
  --bg-tertiary: #E5E5E5;
  --gradient-start: #FAFAFA;
  --gradient-mid: #F5F5F5;
  --gradient-end: #EFEFEF;
  --text-primary: #2D2D2D;
  --text-secondary: #555555;
  --text-muted: #888888;
  --accent: #6B6B6B;
  --shadow: rgba(0, 0, 0, 0.08);
  --glow: rgba(255, 255, 255, 0.8);

  /* Gray gradient HSL values - no blue tones */
  --white-hsl: 0, 0%, 98%;
  --black-hsl: 0, 0%, 18%;
  --accent-hsl: 0, 0%, 45%;
  --lightAccent-hsl: 0, 0%, 88%;
  --darkAccent-hsl: 0, 0%, 55%;

  /* Computed colors */
  --color-white: hsl(var(--white-hsl));
  --color-black: hsl(var(--black-hsl));
  --color-accent: hsl(var(--accent-hsl));
  --color-light-accent: hsl(var(--lightAccent-hsl));
  --color-dark-accent: hsl(var(--darkAccent-hsl));

  /* Fonts */
  --font-heading: 'Marcellus', serif;
  --font-body: 'PT Serif', serif;
}

/* ========== Reset & Base Styles ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* ========== Animated Gradient Background ========== */
.animated-bg {
  background: linear-gradient(-45deg,
    hsl(var(--lightAccent-hsl)),
    hsl(var(--accent-hsl)),
    hsl(var(--darkAccent-hsl)),
    hsl(var(--lightAccent-hsl)));
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ========== Announcement Bar ========== */
.announcement-bar {
  background: var(--bg-secondary);
  color: var(--text-primary);
  text-align: center;
  padding: 0.5rem 2.5rem;
  font-size: 0.85rem;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  font-family: var(--font-body);
  transition: transform 0.3s ease, margin-top 0.3s ease;
}

.announcement-bar.dismissed {
  display: none;
}

.announcement-bar a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announcement-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.announcement-close:hover {
  opacity: 1;
}

/* ========== Header & Navigation ========== */
.header {
  position: relative;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 405px;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(180deg, #E8ECF1 0%, #C5D1DC 50%, #A8B8C8 100%);
  z-index: 0;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: #FFFFFF;
  z-index: 0;
}

/* Wave curve separator - positioned lower to be under nav/logo */
.header-wave {
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 1;
  pointer-events: none;
}

/* ========== Index Page Header (preserves original curve position) ========== */
.header-index {
  position: relative;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 405px;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  overflow: hidden;
}

.header-wave svg {
  width: 100%;
  height: 60%;
  display: block;
}

.header-about {
  position: relative;
  left: 0;
  right: 0;
  z-index: 0;
  height: 241px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  overflow: hidden;
}

/* Gradient curve background for about page */
.header-curve-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 93%;
  z-index: 1;
  pointer-events: none;
}

.header-curve-gradient svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* White curve shape below */
.header-curve-white {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  z-index: 2;
  pointer-events: none;
}

.header-curve-white svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Index page specific curve styling - separate from about/contact pages */
.header-index-curve-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 65%;
  z-index: 2;
  pointer-events: none;
}

.header-index-curve-gradient svg {
  width: 100%;
  height: 100%;
  display: block;
}

.header-index-curve-white {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.header-index-curve-white svg {
  width: 100%;
  height: 100%;
  display: block;
}

.header.banner-dismissed,
.header-index.banner-dismissed {
  top: 0;
}

.header.scrolled {
  background: var(--bg-primary);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px var(--shadow);
}

.header.scrolled::before,
.header.scrolled::after {
  display: none;
}

.header-index.scrolled {
  background: var(--bg-primary);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px var(--shadow);
}

.header-about.scrolled {
  background: var(--bg-primary);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px var(--shadow);
}

.header-about.scrolled .header-curve-gradient,
.header-about.scrolled .header-curve-white {
  display: none;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}

/* Logo centered */
.header-logo-centered {
  position: absolute;
  left: 50%;
  top: 119px;
  transform: translate(-50%, -50%);
   z-index: 5 !important;
}

.header-logo-centered img {
  height: 239px;
  width: 239px;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
 
}

/* Navigation on the left, vertically centered with logo */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: absolute;
  left: 2rem;
  top: 119px;
  transform: translateY(-50%);
  z-index: 5;
}

.header-title {
  position: absolute;
  padding-top: 175px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  z-index: 2;
}

.header-title h1 {
  color: var(--text-primary);
  font-size: clamp(4rem, 5vw, 6rem);
  text-shadow: 0 2px 10px var(--glow), 0 4px 20px var(--shadow);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
  margin: 0;
  font-weight: bold;
}

.header-title-logo img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.6));
}

.header-nav-item a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-primary);
  padding: 0.5rem 0;
  position: relative;
  filter: drop-shadow(1px 1px 4px var(--shadow));
}

.header-nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
}

.header-nav-item a:hover::after,
.header-nav-item.active a::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
  order: 3;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* ========== Main Content ========== */
main {
  padding-top: 0;
  transition: padding-top 0.3s ease;
}

main.banner-dismissed {
  padding-top: 0;
}

/* ========== Hero Section (Home Page) ========== */
.hero {
  min-height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 5rem;
  background: transparent;
  position: relative;
  margin-bottom: -60px;
  z-index: 10;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 2;
}

.hero h1 {
  color: var(--text-primary);
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-shadow: 0 2px 10px var(--shadow);
  margin-bottom: 1.5rem;
  white-space: nowrap;
}

/* ========== Full Bleed Section Backgrounds ========== */
.page-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  padding: 6rem 2rem;
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% calc(100% - 50px),
    50% calc(100% - 10px),
    0% calc(100% - 50px)
  );
  margin-bottom: -50px;
}

/* First section overlaps with hero to eliminate white space */
.hero + .page-section {
  margin-top: -100px;
  padding-top: 10rem;
}

.page-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.section-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.page-section h1 {
  color: var(--bg-primary);
  font-size: clamp(2rem, 5vw, 4rem);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.page-section h1 a {
  color: var(--bg-primary);
}

/* Section Chevron */
.section-chevron {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  z-index: 2;
  pointer-events: none;
}

.section-chevron svg {
  width: 100%;
  height: 100%;
  display: block;
}

.section-chevron path {
  stroke: var(--text-muted);
}

/* Wave divider */
.wave-divider {
  position: relative;
  height: 100px;
  overflow: hidden;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 1rem 3rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  text-align: center;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: normal;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
}

.btn-outline:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  opacity: 1;
}

.btn-send {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
  padding: 1rem 2rem;
  text-transform: uppercase;
  font-weight: bold;
}

.btn-send:hover {
  opacity: 0.9;
}

.btn-submit {
  background: var(--bg-primary);
  color: var(--text-primary);
  border-color: var(--bg-primary);
  padding: 1rem 2rem;
}

.btn-submit:hover {
  background: transparent;
  color: var(--text-primary);
}

/* ========== Content Section (About Page) ========== */
.content-section {
  padding: 4rem 2rem;
  min-height: auto;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Fluid Engine Grid Layout */
.fluid-engine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.content-block {
  margin-bottom: 2rem;
}

.content-block h1 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.content-block h2 {
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.content-block p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Image block */
.image-block {
  width: 100%;
}

.image-block img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.image-portrait {
  max-width: 100%;
}

/* ========== Contact Form Styles ========== */
.form-section-wrapper {
  background: var(--bg-secondary);
  padding: 4rem 2rem;
  margin-top: 4rem;
}

.form-section {
  max-width: 700px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h1,
.contact-header h3 {
  color: var(--text-primary);
  font-size: clamp(2rem, 5vw, 3rem);
}

.contact-intro {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.contact-intro p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
}

.form-label .required {
  font-size: 0.8rem;
  opacity: 0.8;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--accent);
  border-radius: 50px;
  outline: none;
  transition: all 0.3s ease;
  background: var(--bg-primary);
  color: var(--text-primary);
}

.form-textarea {
  border-radius: 20px;
  min-height: 120px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--text-secondary);
  box-shadow: 0 0 0 3px var(--shadow);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

/* Checkbox */
.form-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--text-primary);
}

.form-checkbox-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Contact info display */
.contact-info {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--text-muted);
}

.contact-info p {
  font-size: 1.1rem;
  color: var(--text-primary);
}

/* Form status messages */
.form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.form-status[data-status="success"] {
  color: #1f7a4d;
}

.form-status[data-status="error"] {
  color: #9d2f2f;
}

/* ========== Contact Page Layout ========== */
.contact-page-section {
  padding: 4rem 2rem;
  min-height: auto;
}

.contact-page-section.contact-info-section {
  padding-top: 0;
}

/* Form wrapper for contact page */
.contact-page-section .form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Contact page specific form styles for dark text on animated bg */
.contact-page-section .form-label {
  color: var(--text-primary);
}

.contact-page-section .form-input,
.contact-page-section .form-textarea {
  border: 1px solid var(--text-muted);
  color: var(--text-primary);
  background: var(--bg-primary);
}

.contact-page-section .form-input:focus,
.contact-page-section .form-textarea:focus {
  border-color: var(--text-primary);
  background: var(--bg-primary);
}

.contact-page-section .form-input::placeholder,
.contact-page-section .form-textarea::placeholder {
  color: var(--text-muted);
}

.contact-page-section .form-checkbox-label {
  color: var(--text-secondary);
}

.contact-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact-left h1 {
  color: var(--text-primary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 2rem;
}

.contact-left p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-right .form-input,
.contact-right .form-textarea {
  border-color: var(--accent);
  color: var(--text-primary);
}

.contact-right .form-input:focus,
.contact-right .form-textarea:focus {
  border-color: var(--text-secondary);
}

.contact-right .form-label {
  color: var(--text-primary);
}

.contact-right .form-checkbox-label {
  color: var(--text-secondary);
}

/* ========== Info Grid ========== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 4rem auto 0;
  text-align: center;
}

.info-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.info-item p {
  font-size: 1rem;
  color: var(--text-secondary);
}

.info-item a {
  color: var(--text-primary);
  text-decoration: underline;
}

/* ========== Footer ========== */
.footer {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  padding: 3rem 2rem 6rem;
  text-align: center;
  position: relative;
  z-index: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer a {
  color: var(--text-primary);
  text-decoration: underline;
}

/* ========== Mobile Menu Overlay ========== */
.mobile-menu {
  position: fixed;
  top: 320px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-secondary);
  z-index: 1003;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
}

/* ========== Cookie Banner ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 1rem 2rem;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

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

.cookie-btn {
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--text-primary);
  background: transparent;
  color: var(--text-primary);
}

.cookie-btn:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.cookie-btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.cookie-btn-primary:hover {
  background: transparent;
  color: var(--text-primary);
}

/* Cookie Preferences link */
.cookie-preferences {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1003;
}

.cookie-preferences a {
  font-size: 0.75rem;
  color: var(--text-primary);
  text-decoration: underline;
  background: var(--bg-secondary);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: inline-block;
}

/* ========== Responsive Design ========== */
@media (max-width: 767px) {
  .header {
    height: 300px;
  }

  .header::before {
    height: 60%;
  }

  .header::after {
    height: 45%;
  }

  .header-curve-gradient {
    height: 70%;
  }

  .header-curve-white {
    height: 45%;
  }

  .header-wave {
    height: 80px;
  }

  .header-index {
    height: 300px;
  }

  .header-title h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    white-space: normal;
    padding: 0 1rem;
    font-weight: bold;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
  }

  .header-nav {
    display: none;
  }

  .header-inner {
    align-items: center;
    justify-content: center;
  }

  .header-logo-centered {
    position: relative;
    left: auto;
    top: -50px;
    transform: none;
    margin-bottom: 0;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .header-logo-centered img {
    height: 175px;
    width: 175px;
  }
  
  .hero {
    min-height: 40vh;
    padding: 3rem 1.5rem;
  }
  
  .hero h1 {
    font-size: clamp(4rem, 12vw, 6rem);
  }
  
  .page-section {
    min-height: 40vh;
    background-attachment: scroll;
    padding: 3rem 1.5rem;
  }
  
  .page-section h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  
  .content-section {
    padding: 3rem 1.5rem;
  }
  
  .fluid-engine,
  .contact-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-page-section {
    padding: 3rem 1.5rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .cookie-banner p {
    min-width: auto;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

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

/* ========== Utility Classes ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--text-primary);
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
