html {
    scroll-behavior: smooth;
}

/* Color palette */
:root {
    --primary-color: #f2f0e6;      /* Slightly darker cream background */
    --text-color: #2a2a2a;         /* Deeper text color */
    --accent-color: #d35400;       /* Richer orange accent */
    --secondary-accent: #1e8449;   /* Deeper green */
    --neutral-light: #e8e5dc;      /* Darker neutral for sections - more contrast */
    --neutral-dark: #34495e;       /* Darker slate for headers/footers */
}

/* Hero section styles - outside main content */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/static/images/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
  text-align: center;
  padding: 4rem 0;  /* Removed horizontal padding */
  width: 100%;      /* Full width, no calculations needed */
  box-sizing: border-box;
}

.hero h1,
.hero h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero h1:after,
.hero h2:after {
  background: white;
}

.hero .subtitle {
  color: white;
  opacity: 0.9;
  font-size: 1.2rem;
}

.hero .button {
  background-color: var(--accent-color);
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-ctas .button {
  margin-top: 0;
}

.button--ghost {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: white;
}

.button--ghost:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: white;
  color: white;
}

/* Override hero button accent bg for ghost variant */
.hero .button--ghost {
  background-color: transparent;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem; /* Move horizontal padding here */
}

/* Base styles for all devices */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

input, select, textarea {
    font-size: 16px;
}

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

/* Responsive tables */
table {
    width: 100%;
    border-collapse: collapse;
}

.logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  height: 90px;
  max-width: 90%;
  transition: transform 0.3s ease;
}

.logo-container:hover .logo {
  transform: scale(1.04);
}

/* Typography improvements */
h1, h2, h3, h4, h5, h6 {
  font-family: "Georgia", serif;
  line-height: 1.3;
  color: var(--neutral-dark);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

h1:after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: var(--accent-color);
  margin: 0.5rem auto 0;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

/* Decorative underline for h2 - wider version */
h2:after {
  content: "";
  display: block;
  width: 120px;  /* Doubled from 60px to 120px */
  height: 3px;
  background: var(--accent-color);
  margin: 0.5rem auto 0;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.subtitle {
  font-size: 1.2rem;
  color: var(--neutral-dark);
  margin-bottom: 2rem;
}

/* Text emphasis classes */
.highlight {
  color: var(--accent-color);
  font-weight: 600;
}

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

.text-large {
  font-size: 1.25rem;
}

/* Ensure good spacing in lists */
ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Icon styling */
.fas, .far {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

h3 .fas, h3 .far {
  font-size: 0.9em;
}

.service-areas .fas {
  font-size: 0.8em;
}

@media (max-width: 767px) {
    table, thead, tbody, th, td, tr {
	display: block;
    }

    thead tr {
	position: absolute;
	top: -9999px;
	left: -9999px;
    }

    tr {
	margin-bottom: 1rem;
	border: 1px solid #ddd;
    }

    td {
	border: none;
	position: relative;
	padding-left: 50%;
    }

    td:before {
	position: absolute;
	left: 6px;
	width: 45%;
	padding-right: 10px;
	white-space: nowrap;
	content: attr(data-label);
	font-weight: bold;
    }

    .logo {
	height: 65px;
    }
}

/* Navigation styles */
.main-nav a.active {
    color: var(--accent-color);
    background-color: rgba(211, 84, 0, 0.1);
}

.main-nav a.active::after {
    width: 100%;
    background-color: var(--accent-color);
}

.main-nav {
    margin-top: 0;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.main-nav li {
    margin: 0 1rem;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    display: inline-block;
    position: relative;
    border-radius: 4px;
    letter-spacing: 0.03em;
    transition: color 0.2s ease, background-color 0.2s ease;
}

/* Navigation hover */
.main-nav a:hover {
    color: var(--accent-color);
    background-color: rgba(211, 84, 0, 0.06);
}

/* Underline animation effect */
.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--text-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    background-color: var(--accent-color);
    width: 100%;
}

/* Hamburger toggle button — hidden on desktop */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle-bar {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animate bars into X when open */
.nav-toggle.open .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive navigation for smaller screen */
@media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .main-nav.open {
        max-height: 300px;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .main-nav li {
        margin: 0.5rem 0;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
}

header {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

main {
  padding: 0; /* Change from 2rem to 0 */
  text-align: center;
}


/* How It Works section */
.how-it-works {
  padding: 4rem 2rem;
  background-color: var(--neutral-light);
}

.how-it-works h2 {
  margin-bottom: 2.5rem;
}

.steps {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
}

.step-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.step:hover .step-icon {
  transform: scale(1.2);
}

.step h3 {
  margin-bottom: 0.5rem;
  color: var(--neutral-dark);
}

/* Why Choose Us section */
.why-us {
  padding: 4rem 2rem;
  background-color: var(--neutral-light);
}

.why-us h2 {
  margin-bottom: 2.5rem;
}

.reasons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.reason {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
}

.reason > i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.reason:hover > i {
  transform: scale(1.2);
}

.reason h3 {
  margin-bottom: 0.5rem;
  color: var(--neutral-dark);
}

a.button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    color: white;
    background-color: var(--neutral-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}

a.button:hover {
    background-color: var(--accent-color);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
    transform: translateY(-2px);
}

/* Footer styles */
footer {
    background-color: var(--neutral-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 1.5rem;
    text-align: center;
}

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

.footer-brand {
    font-weight: bold;
    margin-bottom: 0.4rem;
}

.footer-contact-line {
    margin-bottom: 0.3rem;
}

.footer-contact-line a,
.footer-area {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-contact-line a:hover {
    color: white;
    text-decoration: underline;
}

.footer-contact-line i,
.footer-area i {
    color: var(--accent-color);
    margin-right: 0.3rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0.5rem;
    text-decoration: none;
}

/* Footer link hover */
.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Shared section styles */
.section-title {
    margin-top: 2rem;
}

/* Inner page banner — same image/overlay as the homepage hero, shorter height.
   About / Services / Contact use this; homepage uses the full .hero instead. */
.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/static/images/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    padding: 3rem 2rem;
}

.page-banner h1 {
    color: white;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.page-banner h1:after {
    background: white;
}

/* Inner page content wrapper — provides horizontal padding and modest top gap
   below the page banner */
.page-content {
    padding: 2rem 2rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Services Page Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem auto;
    max-width: 960px;
}

.service-item {
    background-color: var(--neutral-light);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.14), inset 0 3px 0 var(--accent-color);
}

.service-item h3 {
    color: var(--neutral-dark);
    margin-top: 0;
    margin-bottom: 1rem;
}

.cta {
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
    font-weight: 500;
}

/* Testimonials Page Styles */
.testimonials {
    max-width: 800px;
    margin: 2rem auto;
}

.testimonial {
    background-color: var(--neutral-light);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
}

.testimonial p::before {
    content: """";
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    left: -1rem;
    top: -1rem;
}

.testimonial cite {
    display: block;
    text-align: right;
    font-weight: 500;
    color: var(--neutral-dark);
}

/* Contact form notice banners */
.form-notice {
    padding: 0.85rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.form-notice--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-notice--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-notice a {
    color: inherit;
    font-weight: 600;
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-info {
    background-color: var(--neutral-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
}

.contact-info h3, .contact-form h3 {
    color: var(--neutral-dark);
    margin-top: 0;
    margin-bottom: 1rem;
}

.service-areas {
    list-style-type: none;
    padding: 0;
}

.service-areas li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.service-areas li:last-child {
    border-bottom: none;
}

.contact-form {
    background-color: var(--neutral-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: left;
}

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

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--neutral-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 4px;
    background-color: white;
    color: var(--text-color);
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

.required {
    color: var(--accent-color);
}

button.button {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    color: white;
    background-color: var(--neutral-dark);
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}

button.button:hover {
    background-color: var(--accent-color);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
    transform: translateY(-2px);
}

/* About Page Styles */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.about-content .intro-text {
    font-size: 1.15rem;
    color: var(--neutral-dark);
    margin-bottom: 0.5rem;
}

.about-content .intro-text i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.about-content .last-updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.about-content ul {
    list-style: none;
    padding-left: 0;
}

.about-content li {
    margin-bottom: 0.5rem;
}

.about-content li i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    width: 1.2em;
    text-align: center;
}

.about-section h3 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.about-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    overflow: hidden; /* clearfix for floated founder photo */
}

.about-section:last-child {
    border-bottom: none;
}

.about-section h3 {
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.founder-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    float: left;
    margin: 0 1.5rem 1rem 0;
}

@media (max-width: 480px) {
    .founder-photo {
        float: none;
        display: block;
        margin: 0 auto 1.25rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-grid,
    .contact-container {
	grid-template-columns: 1fr;
    }

    .testimonial {
	padding: 1.25rem;
    }

    .about-section {
	margin-bottom: 2rem;
	padding-bottom: 1rem;
    }
}

/* tablet styles (768px to 1024px) */
@media (max-width: 1024px) {
    header h1 {
	font-size: 2rem;
    }

    .main-nav ul {
	gap: 0.8rem;
    }
}

/* Mobile styles (up to 767px) */
@media (max-width: 767px) {
    body {
	font-size: 16px;
    }

    header h1 {
	font-size: 1.75rem;
    }

    h1 {
	font-size: 1.75rem;
    }

    h2 {
	font-size: 1.5rem;
    }

    p {
	font-size: 1rem;
	line-height: 1.4;
    }

    a.button {
	padding: 0.6rem 1.2rem;
	font-size: 0.9rem;
    }

    /* Existing mobile nav styles */
    .main-nav ul {
	flex-direction: column;
	align-items: center;
    }

    .main-nav li {
	margin: 0.5rem 0;
    }
}

/* Services Preview (homepage) */
.services-preview {
  padding: 4rem 2rem;
  background-color: var(--primary-color);
}

.services-preview h2 {
  margin-bottom: 2.5rem;
}

.preview-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.preview-item {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  background-color: var(--neutral-light);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12), inset 0 3px 0 var(--accent-color);
}

.preview-item > i {
  font-size: 1.75rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
}

.preview-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--neutral-dark);
}

.preview-item p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.75rem;
}

.preview-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-dark);
  font-family: "Georgia", serif;
  border-top: 2px solid var(--accent-color);
  padding-top: 0.5rem;
  margin-top: auto;
}

.preview-price-unit {
  font-size: 0.85rem;
  font-weight: 400;
  color: #777;
}

/* Service icon sizing */
.service-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
  margin-right: 0;
}

/* Price anchors to bottom of card */
.service-item p {
  flex: 1;
}

/* Price display */
.service-price {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 2px solid var(--accent-color);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--neutral-dark);
  font-family: "Georgia", serif;
}

.service-price-unit {
  font-size: 1rem;
  font-weight: 400;
  color: #777;
}

.service-price-note {
  font-size: 0.85rem;
  color: #777;
  margin-top: 0.25rem;
}

/* Add-ons section */
.addons-section {
  margin: 3rem 0 2rem;
}

.addons-table {
  max-width: 600px;
  margin: 1rem auto;
}

.addons-table th,
.addons-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.addons-table thead th {
  background-color: var(--neutral-dark);
  color: white;
}

.addons-table tbody tr:nth-child(even) td {
  background-color: var(--neutral-light);
}

.addons-table tbody tr:last-child td {
  border-bottom: none;
}

.addons-note {
  font-size: 0.85rem;
  color: #777;
  margin-top: 1rem;
  text-align: center;
}

/* Testimonial pull quote — homepage highlight band */
.testimonial-highlight {
  background-color: var(--neutral-dark);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-highlight::before {
  content: "\201C";
  font-family: "Georgia", serif;
  font-size: 12rem;
  line-height: 1;
  color: var(--accent-color);
  opacity: 0.18;
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.testimonial-highlight blockquote {
  max-width: 700px;
  margin: 0 auto 1.75rem;
  padding: 0;
  position: relative;
}

.testimonial-highlight blockquote p {
  font-family: "Georgia", serif;
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.6;
  color: white;
  margin-bottom: 1.25rem;
}

.testimonial-highlight blockquote cite {
  display: block;
  font-size: 0.95rem;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 600;
}

.testimonial-highlight .button--ghost {
  border-color: rgba(255,255,255,0.5);
  margin-top: 0;
}

.testimonial-highlight .button--ghost:hover {
  border-color: white;
}

@media (max-width: 767px) {
  .testimonial-highlight blockquote p {
    font-size: 1.15rem;
  }
}

/* 404 page */
.not-found {
  padding: 5rem 2rem;
}

.not-found-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Keyboard focus styles — visible focus rings for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 3px;
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 0;
  border-color: var(--accent-color);
}

/* Payment methods section */
.payment-section {
  margin: 3rem 0 2rem;
}

.payment-methods {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.payment-method {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  background-color: var(--neutral-light);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.payment-method h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.payment-method p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.payment-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
  margin-right: 0;
}

.zelle-qr {
  width: 140px;
  height: 140px;
  margin-top: 0.75rem;
}

/* Booking policy */
.policy-section {
  margin: 2.5rem 0 1.5rem;
}

.policy-section h2 {
  margin-bottom: 1rem;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-list li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #444;
}

.policy-list li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color, #2e7d32);
}

/* Travel surcharge note */
.travel-note {
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  margin: 1.5rem 0;
}

/* Scroll fade-in animation (class added by effects.js) */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Disable parallax on mobile — background-attachment: fixed is broken on iOS */
@media (max-width: 768px) {
  .hero,
  .page-banner {
    background-attachment: scroll;
  }
}

/* Small phones (up to 480px) */
@media (max-width: 480px) {
    header h1 {
	font-size: 1.5rem;
    }

    footer {
	padding: 1rem;
    }

    .footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
    }
}
