/* WeWa RV Park - Styles */
/* Color palette: Natural wood tones + water blues */

:root {
  --color-wood-dark: #3d2914;
  --color-wood-medium: #6b4423;
  --color-wood-light: #a67c52;
  --color-cream: #faf6f0;
  --color-water-dark: #1a4a5e;
  --color-water-light: #4a8fa8;
  --color-accent: #c4540a;
  --color-text: #2c2416;
  --color-text-light: #5a4d3a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(196, 84, 10, 0.3);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-cream);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-wood-dark);
  margin: 0 0 1rem 0;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p { margin: 0 0 1.25rem 0; }

a {
  color: var(--color-water-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  -webkit-tap-highlight-color: rgba(196, 84, 10, 0.3);
}

a:hover,
a:active {
  color: var(--color-accent);
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  background: var(--color-wood-dark);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-logo {
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.site-logo:hover {
  color: var(--color-water-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.header-phone,
.header-directions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
  min-height: 44px;
}

.header-phone {
  background: var(--color-accent);
  color: white;
}

.header-phone:hover {
  background: #a84508;
  color: white;
}

.header-directions {
  background: var(--color-water-dark);
  color: white;
}

.header-directions:hover {
  background: var(--color-water-light);
  color: white;
}

.header-phone svg,
.header-directions svg {
  width: 20px;
  height: 20px;
}

/* Navigation */
.main-nav {
  background: var(--color-wood-medium);
  padding: 0.75rem 0;
}

.nav-container {
  position: relative;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin: 0 auto;
  position: relative;
  width: 44px;
  height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:active {
  opacity: 0.7;
}

.hamburger {
  display: block;
  position: relative;
  width: 28px;
  height: 3px;
  background: var(--color-cream);
  border-radius: 2px;
  transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 3px;
  background: var(--color-cream);
  border-radius: 2px;
  transition: transform 0.3s ease;
  left: 0;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger::after {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-list a {
  display: block;
  padding: 0.5rem 1.25rem;
  color: var(--color-cream);
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-list a:hover,
.nav-list a:active,
.nav-list a.active {
  background: rgba(255,255,255,0.15);
  color: white;
}

@media (hover: hover) {
  .nav-list a:hover {
    background: rgba(255,255,255,0.15);
  }
}

@media (hover: none) {
  .nav-list a:active {
    background: rgba(255,255,255,0.25);
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-water-dark) 0%, var(--color-wood-dark) 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
}

.hero-home {
  background: linear-gradient(rgba(26, 74, 94, 0.7), rgba(61, 41, 20, 0.8)), url('/images/hero-rv-park.jpg');
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
}

.hero-home h1,
.hero-home .hero-tagline {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 {
  color: white;
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: 1.4rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-accent);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-cta:hover {
  background: #a84508;
  color: white;
  transform: scale(1.03);
}

.hero-cta svg {
  width: 28px;
  height: 28px;
}

/* Pricing Banner */
.pricing-banner {
  background: var(--color-wood-light);
  color: white;
  padding: 1.5rem 0;
  text-align: center;
}

.pricing-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.pricing-item {
  text-align: center;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.pricing-period {
  font-size: 1rem;
  opacity: 0.9;
}

/* Content Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-water-light);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-left: 4px solid var(--color-water-light);
}

.feature-card h3 {
  color: var(--color-water-dark);
  margin-bottom: 0.75rem;
}

/* Amenities List */
.amenities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.amenities-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.amenities-list svg {
  width: 24px;
  height: 24px;
  color: var(--color-water-dark);
  flex-shrink: 0;
}

/* Location Info */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.location-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.location-distance {
  font-weight: 700;
  color: var(--color-accent);
  white-space: nowrap;
}

/* CTA Section */
.cta-section {
  background: var(--color-wood-dark);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-accent);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 8px;
  font-size: 1.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-phone:hover {
  background: #a84508;
  color: white;
  transform: scale(1.03);
}

/* About Page */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.about-photo {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.about-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-text-light);
  border-left: 4px solid var(--color-water-light);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

/* Trading Post Page */
.trading-hero {
  background: linear-gradient(135deg, var(--color-wood-medium) 0%, var(--color-wood-dark) 100%);
}

/* Gallery Page */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-placeholder {
  background: linear-gradient(135deg, var(--color-wood-light) 0%, var(--color-water-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
}

/* Mobile Directions Button */
.mobile-directions-fab {
  display: none;
}

@media (max-width: 768px) {
  .mobile-directions-fab {
    display: flex;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--color-water-dark);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .mobile-directions-fab:hover {
    background: var(--color-water-light);
    transform: scale(1.05);
  }

  .mobile-directions-fab svg {
    width: 28px;
    height: 28px;
  }
}

/* Footer */
.site-footer {
  background: var(--color-wood-dark);
  color: var(--color-cream);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--color-water-light);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--color-cream);
  opacity: 0.9;
}

.footer-phone {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-top: 0.5rem;
}

.footer-phone:hover {
  color: var(--color-water-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
  }

  body {
    line-height: 1.6;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 0.875rem;
  }

  h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }

  p {
    margin-bottom: 1.5rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  .hero {
    padding: 3.5rem 0;
  }

  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 2rem;
  }

  .hero-home {
    padding: 4.5rem 0;
    background-position: center center;
  }

  .site-header {
    padding: 0.875rem 0;
  }

  .header-inner {
    justify-content: center;
    text-align: center;
    gap: 0.875rem;
  }

  .site-logo {
    font-size: 1.4rem;
  }

  .header-actions {
    justify-content: center;
    width: 100%;
    gap: 0.625rem;
  }

  .header-phone,
  .header-directions {
    font-size: 1.05rem;
    padding: 0.75rem 1.125rem;
    flex: 1;
    justify-content: center;
    min-width: 150px;
    min-height: 48px;
    border-radius: 8px;
  }

  .header-phone svg,
  .header-directions svg {
    width: 22px;
    height: 22px;
  }

  .header-directions span {
    display: none;
  }

  .main-nav {
    padding: 0;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 0.75rem;
  }

  .hamburger {
    width: 30px;
    height: 3px;
  }

  .hamburger::before,
  .hamburger::after {
    width: 30px;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-wood-medium);
    padding: 0.75rem;
    gap: 0.5rem;
    z-index: 100;
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list a {
    padding: 1rem;
    font-size: 1.05rem;
    width: 100%;
    text-align: center;
    min-height: 48px;
    border-radius: 6px;
  }

  .pricing-banner {
    padding: 2rem 0;
  }

  .pricing-items {
    gap: 2.5rem;
    flex-direction: column;
  }

  .pricing-amount {
    font-size: 2rem;
  }

  .pricing-period {
    font-size: 1.1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .amenities-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .amenities-list li {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }

  .amenities-list svg {
    width: 26px;
    height: 26px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .location-item {
    font-size: 1.05rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .gallery-item {
    border-radius: 12px;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-photo {
    max-width: 100%;
    margin: 0 auto;
  }

  .about-quote {
    font-size: 1.15rem;
    padding-left: 1.25rem;
    margin: 2.5rem 0;
  }

  .hero-cta {
    font-size: 1.4rem;
    padding: 1rem 2rem;
    min-height: 52px;
    border-radius: 10px;
  }

  .hero-cta svg {
    width: 30px;
    height: 30px;
  }

  .cta-section {
    padding: 3.5rem 0;
  }

  .cta-section h2 {
    font-size: 1.9rem;
  }

  .cta-section p {
    font-size: 1.15rem;
  }

  .cta-phone {
    font-size: 1.5rem;
    padding: 1.125rem 2rem;
    min-height: 56px;
    border-radius: 10px;
  }

  .mobile-directions-fab {
    bottom: 24px;
    right: 20px;
    width: 64px;
    height: 64px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  }

  .mobile-directions-fab svg {
    width: 30px;
    height: 30px;
  }

  .site-footer {
    padding: 3.5rem 0 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 1.05rem;
  }

  .footer-phone {
    font-size: 1.6rem;
    margin-top: 0.75rem;
  }

  .footer-bottom {
    padding-top: 2rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  h1 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .container {
    padding: 0 1rem;
  }

  .site-logo {
    font-size: 1.25rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .hero-home {
    padding: 4rem 0;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .header-phone,
  .header-directions {
    font-size: 0.95rem;
    padding: 0.675rem 1rem;
    min-width: 130px;
  }

  .header-phone svg,
  .header-directions svg {
    width: 20px;
    height: 20px;
  }

  .nav-list a {
    padding: 0.875rem;
    font-size: 1rem;
  }

  .pricing-amount {
    font-size: 1.85rem;
  }

  .pricing-period {
    font-size: 1.05rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-cta {
    font-size: 1.3rem;
    padding: 0.875rem 1.75rem;
    min-height: 50px;
  }

  .hero-cta svg {
    width: 28px;
    height: 28px;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }

  .cta-section p {
    font-size: 1.1rem;
  }

  .cta-phone {
    font-size: 1.4rem;
    padding: 1rem 1.75rem;
    min-height: 52px;
  }

  .feature-card {
    padding: 1.75rem 1.25rem;
  }

  .amenities-list li {
    padding: 0.875rem 1rem;
  }

  .about-quote {
    font-size: 1.1rem;
    padding-left: 1rem;
  }

  .mobile-directions-fab {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 16px;
  }

  .mobile-directions-fab svg {
    width: 28px;
    height: 28px;
  }

  .footer-phone {
    font-size: 1.5rem;
  }
}

/* Booking Form Styles */
.booking-form {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--color-wood-dark);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.form-label .required {
  color: var(--color-accent);
  margin-left: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-cream);
  border: 2px solid var(--color-wood-light);
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-water-dark);
  box-shadow: 0 0 0 3px rgba(26, 74, 94, 0.1);
}

.form-input[aria-invalid="true"],
.form-select[aria-invalid="true"],
.form-textarea[aria-invalid="true"] {
  border-color: var(--color-accent);
}

.form-input[aria-invalid="true"]:focus,
.form-select[aria-invalid="true"]:focus,
.form-textarea[aria-invalid="true"]:focus {
  box-shadow: 0 0 0 3px rgba(196, 84, 10, 0.15);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231a4a5e'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  display: block;
  color: var(--color-accent);
  font-size: 0.875rem;
  margin-top: 0.375rem;
  font-weight: 500;
}

.form-hint {
  display: block;
  color: var(--color-text-light);
  font-size: 0.875rem;
  margin-top: 0.375rem;
}

.form-success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  border: 1px solid #c3e6cb;
  font-weight: 500;
}

.form-messages .form-error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  border: 1px solid #f5c6cb;
  font-weight: 500;
}

.form-submit {
  width: 100%;
  background: var(--color-accent);
  color: white;
  padding: 1.125rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-submit:hover:not(:disabled) {
  background: #a84508;
  transform: scale(1.02);
}

.form-submit:active:not(:disabled) {
  transform: scale(0.98);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.submit-loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form Phone Button */
.form-phone-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
  min-height: 44px;
  background: var(--color-accent);
  color: white;
}

.form-phone-button:hover {
  background: #a84508;
  color: white;
}

.form-phone-button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Form responsive styles */
@media (max-width: 768px) {
  .booking-form {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0.875rem;
  }

  .form-submit {
    font-size: 1.15rem;
    padding: 1rem 1.75rem;
    min-height: 52px;
  }

  .form-phone-text {
    display: none;
  }

  .form-phone-button {
    padding: 0.6rem;
    min-width: 44px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .booking-form {
    padding: 1.75rem 1.25rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-label {
    font-size: 0.95rem;
  }

  .form-submit {
    font-size: 1.1rem;
    padding: 0.875rem 1.5rem;
    min-height: 50px;
  }
}

/* Print styles for accessibility */
@media print {
  .site-header, .main-nav, .cta-section { display: none; }
  body { font-size: 12pt; }
}


