/* ====================================================================
   McBride's RV Storage - Design for our premiums Website Stylesheet Future components
   
   Table of Contents:
   1. CSS Variables & Design Tokens
   2. Base Styles & Reset
   3. Typography
   4. Layout & Containers
   5. Components
      5.1 Buttons
      5.2 Cards
      5.3 Forms
      5.4 Navigation
      5.5 Icons & Badges
   6. Sections
      6.1 Header
      6.2 Hero
      6.3 Feature Sections
      6.4 Testimonials
      6.5 CTA Sections
      6.6 Footer
   7. Utilities
   8. Animations
   9. Media Queries
==================================================================== */

/* ====================================================================
   1. CSS Variables & Design Tokens
==================================================================== */
:root {
  /* Color System */
  --color-primary: #465A40;         /* Olive Green */
  --color-primary-dark: #2A3B28;    /* Deep Forest */
  --color-primary-light: #5A705A;   /* Light Olive */
  
  --color-secondary: #D89E45;       /* Mustard Gold */
  --color-secondary-dark: #BF8934;  /* Dark Gold */
  --color-secondary-light: #E3B66B; /* Light Gold */
  
  --color-accent: #AF5C39;          /* Terracotta */
  --color-accent-dark: #8F4A2E;     /* Dark Terracotta */
  --color-accent-light: #C47955;    /* Light Terracotta */
  
  --color-neutral: #6F4A38;         /* Nutmeg Brown */
  --color-neutral-dark: #5A3C2E;    /* Dark Brown */
  --color-neutral-light: #8A6450;   /* Light Brown */
  
  --color-light: #ECDFC8;           /* Parchment */
  --color-light-dark: #D8CAB2;      /* Dark Parchment */
  --color-light-lighter: #F5EFE2;   /* Light Parchment */
  
  --color-dark: #333333;            /* Charcoal */
  --color-platinum: #E5E5E0;        /* Light Neutral */
  
  /* Typography */
  --font-primary: 'Bitter', serif;
  --font-secondary: 'Work Sans', sans-serif;
  --font-accent: 'DM Serif Display', serif;
  
  /* Font Sizes */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-md: 1.125rem;   /* 18px */
  --text-lg: 1.25rem;    /* 20px */
  --text-xl: 1.5rem;     /* 24px */
  --text-2xl: 1.75rem;   /* 28px */
  --text-3xl: 2rem;      /* 32px */
  --text-4xl: 2.5rem;    /* 40px */
  --text-5xl: 3rem;      /* 48px */
  
  /* Spacing System */
  --space-3xs: 0.25rem;   /* 4px */
  --space-2xs: 0.5rem;    /* 8px */
  --space-xs: 0.75rem;    /* 12px */
  --space-sm: 1rem;       /* 16px */
  --space-md: 1.5rem;     /* 24px */
  --space-lg: 2rem;       /* 32px */
  --space-xl: 3rem;       /* 48px */
  --space-2xl: 4rem;      /* 64px */
  --space-3xl: 6rem;      /* 96px */
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-medium: 300ms ease;
  --transition-slow: 500ms ease;
  
  /* Z-index layers */
  --z-below: -1;
  --z-normal: 0;
  --z-above: 1;
  --z-header: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-max: 999;
  
  /* Container widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-max: 1440px;
}

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-light);
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-medium);
}

a:hover {
  color: var(--color-secondary);
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}

/* Paper texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/textures/paper-texture.png');
  /* Fallback if image doesn't load */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><rect width="200" height="200" fill="%23000000" fill-opacity="0.02"/><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="200" height="200" filter="url(%23noise)" opacity="0.4"/></svg>');
  opacity: 0.05;
  pointer-events: none;
  z-index: var(--z-below);
}

/* Visually hidden but accessible to screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ====================================================================
   3. Typography
==================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

h1 {
  font-size: var(--text-4xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-3xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-base);
}

p {
  margin-bottom: var(--space-md);
}

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

.accent-text {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-accent);
}

/* Section title with underline */
.section-title {
  display: inline-block;
  margin-bottom: var(--space-lg);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--color-secondary);
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-family: var(--font-secondary);
  font-size: var(--text-md);
  font-weight: 300;
  margin-top: -15px;
  margin-bottom: var(--space-md);
}

/* Light text for dark backgrounds */
.light {
  color: var(--color-light);
}

.light h1, .light h2, .light h3, .light h4, .light h5, .light h6 {
  color: var(--color-light);
}

.light .section-title::after {
  background-color: var(--color-secondary);
}

/* ====================================================================
   4. Layout & Containers
==================================================================== */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.section-padding {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.section-header {
  margin-bottom: var(--space-xl);
}

/* Background colors */
.bg-primary {
  background-color: var(--color-primary);
  color: var(--color-light);
}

.bg-secondary {
  background-color: var(--color-secondary);
  color: var(--color-dark);
}

.bg-accent {
  background-color: var(--color-accent);
  color: var(--color-light);
}

.bg-light {
  background-color: var(--color-light-lighter);
}

.bg-dark {
  background-color: var(--color-dark);
  color: var(--color-light);
}

/* Grid layouts */
.features-grid,
.options-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-lg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-xl);
}

/* Content grids */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

/* ====================================================================
   5. Components
==================================================================== */

/* 5.1 Buttons
   ------------------------------------------------------------------ */
.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  font-size: 0.9rem;
}

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-light);
  border: 2px solid var(--color-accent);
}

.btn-primary:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--color-primary);
  color: var(--color-light);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-light {
  background-color: var(--color-light);
  color: var(--color-primary);
  border: 2px solid var(--color-light);
}

.btn-light:hover {
  background-color: var(--color-light-dark);
  border-color: var(--color-light-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

.btn-outline:hover {
  background-color: var(--color-secondary);
  color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--color-light);
  border: 2px solid var(--color-light);
}

.btn-outline-light:hover {
  background-color: var(--color-light);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Text link with arrow */
.text-link {
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
}

.text-link i {
  margin-left: var(--space-2xs);
  transition: transform var(--transition-medium);
}

.text-link:hover {
  color: var(--color-secondary);
}

.text-link:hover i {
  transform: translateX(4px);
}

/* 5.2 Cards
   ------------------------------------------------------------------ */
/* Feature Cards */
.feature-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-light);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 2rem;
  border: 2px dashed var(--color-secondary);
}

.feature-title {
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.feature-text {
  margin-bottom: var(--space-md);
  color: var(--color-neutral);
  flex-grow: 1;
}

.feature-link {
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}

.feature-link i {
  margin-left: var(--space-2xs);
  transition: transform var(--transition-medium);
}

.feature-link:hover i {
  transform: translateX(4px);
}

/* Option Cards */
.option-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.option-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.option-image {
  position: relative;
  height: 240px;
}

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

.option-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background-color: var(--color-secondary);
  color: var(--color-dark);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.option-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.option-title {
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.option-features {
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.option-features li {
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: flex-start;
}

.option-features i {
  color: var(--color-secondary);
  margin-right: var(--space-xs);
  margin-top: 0.25em;
}

.option-actions {
  margin-top: auto;
}

/* Testimonial Card */
.testimonial-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
}

.quote-mark {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  color: var(--color-secondary);
  opacity: 0.3;
  font-size: 3rem;
}

.testimonial-quote {
  margin: 0;
  padding: 0 var(--space-md);
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: var(--space-lg);
  color: var(--color-neutral);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: var(--space-md);
  border: 2px solid var(--color-secondary);
}

.author-name {
  font-style: normal;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.author-detail {
  font-size: 0.875rem;
  color: var(--color-neutral);
}

/* 5.3 Forms
   ------------------------------------------------------------------ */
.form-group {
  margin-bottom: var(--space-md);
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--color-primary);
}

.form-control {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid var(--color-light-dark);
  border-radius: var(--radius-md);
  background-color: white;
  font-family: var(--font-secondary);
  color: var(--color-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(216, 158, 69, 0.2);
}

.form-control::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.form-help {
  display: block;
  margin-top: var(--space-2xs);
  font-size: var(--text-sm);
  color: var(--color-neutral);
}

/* Newsletter form */
.newsletter-form {
  margin-bottom: var(--space-sm);
}

.newsletter-form .form-group {
  display: flex;
  max-width: 100%;
  margin-bottom: var(--space-2xs);
}

.newsletter-form .form-control {
  padding: var(--space-sm);
  border: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  flex-grow: 1;
  min-width: 0;
}

.newsletter-form .btn {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.form-disclaimer {
  font-size: var(--text-xs);
  opacity: 0.8;
}

/* 5.4 Navigation
   ------------------------------------------------------------------ */
.nav-list {
  display: flex;
  gap: var(--space-lg);
}

.nav-link {
  color: var(--color-light);
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding-bottom: 5px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: width var(--transition-medium);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--color-light);
}

/* 5.5 Icons & Badges
   ------------------------------------------------------------------ */
.badge {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-dark);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  color: var(--color-light);
}

/* ====================================================================
   6. Sections
==================================================================== */

/* 6.1 Header
   ------------------------------------------------------------------ */
.site-header {
  background-color: var(--color-primary);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  padding: var(--space-sm) 0;
  transition: padding var(--transition-medium), background-color var(--transition-medium);
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--color-light);
  text-decoration: none;
}

.brand-emblem {
  width: 50px;
  height: 50px;
  background-color: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-sm);
  border: 2px solid var(--color-secondary);
}

.brand-emblem span {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-light);
  line-height: 1.1;
}

.brand-tagline {
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  color: var(--color-secondary);
  letter-spacing: 0.5px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.phone-link {
  display: flex;
  align-items: center;
  color: var(--color-light);
  font-weight: 500;
}

.phone-icon {
  margin-right: var(--space-xs);
  color: var(--color-secondary);
}

.mobile-toggle {
  display: none;
  color: var(--color-light);
  font-size: 1.5rem;
}

/* 6.2 Hero
   ------------------------------------------------------------------ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  margin-top: 0;
  overflow: hidden;
  color: var(--color-light);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-below);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(51,51,51,0.3), rgba(70,90,64,0.7));
  z-index: var(--z-normal);
}

.hero-content {
  position: relative;
  z-index: var(--z-above);
  max-width: 700px;
}

.hero-title {
  color: var(--color-light);
  margin-bottom: var(--space-md);
  font-size: clamp(2rem, 5vw, 3rem);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-light);
  font-size: 0.875rem;
  opacity: 0.8;
  transition: opacity var(--transition-medium);
  z-index: var(--z-above);
}

.hero-scroll-indicator:hover {
  opacity: 1;
}

.scroll-text {
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
}

.scroll-icon {
  animation: bounce 2s infinite;
}

/* Page Banner */
.page-banner {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 76px; /* Height of fixed header */
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-below);
  background-size: cover;
  background-position: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(51,51,51,0.4), rgba(70,90,64,0.7));
  z-index: var(--z-normal);
}

.banner-content {
  position: relative;
  z-index: var(--z-above);
  text-align: center;
  color: var(--color-light);
  width: 100%;
  padding: 0 var(--space-md);
}

.banner-title {
  color: var(--color-light);
  margin-bottom: var(--space-sm);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.banner-subtitle {
  font-size: clamp(0.875rem, 2vw, 1.25rem);
  font-weight: 300;
}

/* 6.3 Feature Sections
   ------------------------------------------------------------------ */
.features-section,
.storage-options-section,
.membership-section {
  position: relative;
  overflow: hidden;
}

/* 6.4 Testimonials
   ------------------------------------------------------------------ */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

/* 6.5 CTA Sections
   ------------------------------------------------------------------ */
.cta-section {
  position: relative;
  overflow: hidden;
}

/* 6.6 Footer
   ------------------------------------------------------------------ */
.site-footer {
  background-color: var(--color-primary);
  color: var(--color-light);
  position: relative;
}

.footer-top {
  padding: var(--space-xl) 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
}

.footer-tagline {
  margin-bottom: var(--space-md);
}

.footer-address {
  font-style: normal;
  margin-bottom: var(--space-md);
}

.footer-phone {
  color: var(--color-light);
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-light);
  transition: all var(--transition-medium);
}

.social-link:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.footer-heading {
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
  color: var(--color-light);
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-xs);
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-secondary);
}

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  color: var(--color-light);
  transition: all var(--transition-medium);
}

.footer-links a:hover {
  color: var(--color-secondary);
  padding-left: var(--space-xs);
}

.footer-bottom {
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.copyright {
  font-size: 0.875rem;
}

.legal-links {
  display: flex;
  gap: var(--space-md);
  font-size: 0.875rem;
}

.legal-links a {
  color: var(--color-light);
  opacity: 0.8;
  transition: opacity var(--transition-medium);
}

.legal-links a:hover {
  opacity: 1;
  color: var(--color-secondary);
}

/* ====================================================================
   7. Utilities
==================================================================== */

/* Spacing utilities */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.pt-sm { padding-top: var(--space-sm); }
.pt-md { padding-top: var(--space-md); }
.pt-lg { padding-top: var(--space-lg); }
.pt-xl { padding-top: var(--space-xl); }

.pb-sm { padding-bottom: var(--space-sm); }
.pb-md { padding-bottom: var(--space-md); }
.pb-lg { padding-bottom: var(--space-lg); }
.pb-xl { padding-bottom: var(--space-xl); }

/* Flex utilities */
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* Display utilities */
.d-none { display: none; }
.d-block { display: block; }

/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-light { color: var(--color-light); }
.text-dark { color: var(--color-dark); }

.fw-light { font-weight: 300; }
.fw-normal { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-bold { font-weight: 700; }

/* Background utilities */
.bg-paper { background-color: var(--color-light-lighter); }
.bg-white { background-color: white; }

/* Border utilities */
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: 50%; }

/* Shadow utilities */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* ====================================================================
   8. Animations
==================================================================== */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.slide-up {
  animation: slideUp 0.5s ease forwards;
}

/* ====================================================================
   9. Media Queries
==================================================================== */

/* Small devices (640px and up) */
@media (min-width: 640px) {
  .features-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-actions {
    flex-direction: row;
  }
}

/* Medium devices (768px and up) */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-grid {
    grid-template-columns: 3fr 2fr;
  }
}

/* Large devices (1024px and up) */
@media (min-width: 1024px) {
  .features-grid,
  .options-grid,
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .mobile-toggle {
    display: none;
  }
  
  .main-nav {
    display: flex;
  }
}

/* XL devices (1280px and up) */
@media (min-width: 1280px) {
  .container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }
}

/* Mobile and tablet (max-width 1023px) */
@media (max-width: 1023px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
  }
  
  .main-nav.active {
    display: block;
  }
  
  .nav-list {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .header-actions .phone-link {
    display: none;
  }
}

/* Extra Small devices (phones, 360px and down) */
@media (max-width: 360px) {
  html {
    font-size: 87.5%; /* 14px base size */
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .brand-name {
    font-size: 1rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ====================================================================
   10. Component-Specific Styles for Future Componentization
==================================================================== */

/* These classes provide specific styling for components to make future 
   componentization easier. Each component can be extracted with its
   specific styles while maintaining the design system variables. */

/* Header Component */
.c-header {
  /* Component-specific styles */
}

/* Hero Component */
.c-hero {
  /* Component-specific styles */
}

/* Feature Card Component */
.c-feature-card {
  /* Component-specific styles */
}

/* Option Card Component */
.c-option-card {
  /* Component-specific styles */
}

/* Testimonial Component */
.c-testimonial {
  /* Component-specific styles */
}

/* Form Component */
.c-form {
  /* Component-specific styles */
}

/* Footer Component */
.c-footer {
  /* Component-specific styles */
}

/* Add additional component-specific styles as needed */

  



/* Storage Tabs Navigation */
.storage-tabs {
  background-color: var(--color-light-lighter);
  border-bottom: 1px solid var(--color-light-dark);
}

.section-padding-sm {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}

.tabs-container {
  display: flex;
  overflow-x: auto;
  gap: var(--space-sm);
}

.tab-link {
  padding: var(--space-sm) var(--space-md);
  color: var(--color-neutral);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition-medium);
}

.tab-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-secondary);
  transition: width var(--transition-medium);
}

.tab-link:hover {
  color: var(--color-primary);
}

.tab-link.active {
  color: var(--color-primary);
}

.tab-link.active::after {
  width: 100%;
}

/* Tab Content Display */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Features Box */
.features-box {
  background-color: var(--color-light-lighter);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-light-dark);
}

.features-title {
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  letter-spacing: 0.5px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-sm);
}

.features-list li {
  display: flex;
  align-items: flex-start;
}

.features-list i {
  color: var(--color-secondary);
  margin-right: var(--space-xs);
  margin-top: 0.25em;
}

/* Option Badge Colors */
.option-badge.standard {
  background-color: var(--color-primary);
}

.option-badge.premium {
  background-color: var(--color-accent);
}

.option-badge.deluxe {
  background-color: var(--color-secondary);
}

.option-price {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin: var(--space-md) 0;
}

/* Amenities Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.amenity-item {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
}

.amenity-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-light);
  font-size: 1.75rem;
  border: 2px dashed var(--color-secondary);
}

.amenity-title {
  color: var(--color-light);
  margin-bottom: var(--space-sm);
}

.amenity-text {
  color: var(--color-light-dark);
  font-size: 0.9375rem;
}

/* Facility Map Section */
.facility-map-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .facility-map-container {
    grid-template-columns: 3fr 1fr;
  }
}

.map-legend {
  background-color: var(--color-light-lighter);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-light-dark);
}

.legend-list {
  margin-top: var(--space-sm);
}

.legend-list li {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-xs);
}

.legend-marker {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  margin-right: var(--space-sm);
}

.legend-marker.available {
  background-color: #3BAF6B;
}

.legend-marker.reserved {
  background-color: #E63946;
}

.legend-marker.premium {
  background-color: var(--color-accent);
}

.legend-marker.deluxe {
  background-color: var(--color-secondary);
}

.map-note {
  font-size: 0.875rem;
  color: var(--color-neutral);
  font-style: italic;
}




/* ====== AMENITIES PAGE SPECIFIC STYLES ====== */

/* Amenities Grid */
.amenities-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.amenity-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .amenity-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
  
  .amenity-card:nth-child(even) {
    direction: rtl;
  }
  
  .amenity-card:nth-child(even) .amenity-content {
    direction: ltr;
  }
}

.amenity-image {
  height: 300px;
  overflow: hidden;
}

.amenity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.amenity-card:hover .amenity-image img {
  transform: scale(1.05);
}

.amenity-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
}

.amenity-title {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.amenity-description {
  margin-bottom: var(--space-md);
  color: var(--color-neutral);
}

.amenity-features {
  margin-top: auto;
}

.amenity-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-xs);
}

.amenity-features i {
  color: var(--color-secondary);
  margin-right: var(--space-xs);
  margin-top: 0.25em;
  flex-shrink: 0;
}

/* Security Section */
.security-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

@media (min-width: 640px) {
  .security-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .security-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.security-feature {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: transform var(--transition-medium);
}

.security-feature:hover {
  transform: translateY(-5px);
}

.security-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
  font-size: 1.75rem;
  border: 2px dashed var(--color-secondary);
}

.security-title {
  color: var(--color-light);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.security-text {
  color: var(--color-light-dark);
  font-size: 0.9375rem;
}

.security-note {
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
}

/* Featured Amenity Section */
.featured-amenity-container {
  max-width: 900px;
  margin: 0 auto;
}

.featured-content {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
}

.featured-image {
  height: 400px;
}

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

.featured-testimonial {
  padding: var(--space-xl);
  position: relative;
}

.quote-mark {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  color: var(--color-secondary);
  opacity: 0.3;
  font-size: 3rem;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: var(--space-lg);
  color: var(--color-neutral);
  padding: 0 var(--space-md);
}

.wash-bay-specs {
  margin-top: var(--space-xl);
}

.wash-bay-specs h3 {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .specs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.spec-item {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.spec-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-right: var(--space-md);
  flex-shrink: 0;
}

.spec-detail h4 {
  font-size: 1rem;
  margin-bottom: var(--space-2xs);
  color: var(--color-primary);
}

.spec-detail p {
  font-size: 0.9375rem;
  margin-bottom: 0;
  color: var(--color-neutral);
}

/* CTA buttons alignment fix */
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}


/* ====== ABOUT PAGE SPECIFIC STYLES ====== */

/* Story Section */
.story-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .story-content {
    grid-template-columns: 2fr 3fr;
  }
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-lg);
}

.image-caption {
  font-size: 0.875rem;
  color: var(--color-neutral);
  text-align: center;
  margin-top: var(--space-sm);
  font-style: italic;
}

.story-text p {
  margin-bottom: var(--space-md);
}

.story-quote {
  margin: var(--space-lg) 0;
  padding: var(--space-md) var(--space-lg);
  border-left: 3px solid var(--color-secondary);
  background-color: var(--color-light-lighter);
  position: relative;
}

.story-quote p {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-neutral);
  margin-bottom: var(--space-sm);
}

.story-quote footer {
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  color: var(--color-neutral);
}

/* Facility Highlights */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

@media (min-width: 640px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-item {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition-medium);
}

.highlight-item:hover {
  transform: translateY(-5px);
}

.highlight-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  background-color: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.75rem;
  border: 2px dashed var(--color-secondary);
}

.highlight-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.highlight-text {
  font-size: 0.9375rem;
  color: var(--color-neutral);
  margin-bottom: 0;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-medium);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-image {
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: var(--space-2xs);
  color: var(--color-primary);
}

.team-position {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.team-bio {
  font-size: 0.9375rem;
  color: var(--color-neutral);
  margin-bottom: 0;
}

/* Virtual Tour Section */
.virtual-tour-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: all var(--transition-medium);
  border: 2px solid white;
}

.play-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) scale(1.1);
}

.tour-description {
  max-width: 700px;
  margin: 0 auto;
}

/* CTA buttons alignment fix */
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}






/* ====== BLOG PAGE SPECIFIC STYLES ====== */

/* Blog Layout */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

@media (min-width: 992px) {
  .blog-layout {
    grid-template-columns: 7fr 3fr;
  }
}

/* Blog Main Content */
.blog-main {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.blog-subheading {
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-light-dark);
  margin-bottom: var(--space-lg);
}

.blog-subheading h2 {
  font-size: 1.75rem;
  margin-bottom: 0;
}

/* Featured Post */
.featured-post {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.featured-image {
  position: relative;
  height: 300px;
}

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

.post-category {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background-color: var(--color-secondary);
  color: var(--color-dark);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.featured-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
}

.post-title {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-neutral);
}

.post-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: var(--space-xs);
}

.post-date {
  display: flex;
  align-items: center;
}

.post-date i {
  margin-right: var(--space-2xs);
  color: var(--color-secondary);
}

.post-excerpt {
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

/* Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.post-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-medium);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-image {
  position: relative;
  height: 200px;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.post-card:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-content .post-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.post-content .post-meta {
  margin-bottom: var(--space-sm);
}

.post-content .post-excerpt {
  font-size: 0.9375rem;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pagination */
.pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

@media (min-width: 640px) {
  .pagination {
    flex-direction: row;
    justify-content: space-between;
  }
}

.current-page {
  font-size: 0.875rem;
  color: var(--color-neutral);
}

.page-numbers {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.page-number, .page-next, .page-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--color-neutral);
  font-weight: 600;
  transition: all var(--transition-medium);
}

.page-number.active {
  background-color: var(--color-primary);
  color: var(--color-light);
}

.page-number:hover:not(.active), .page-next:hover, .page-prev:hover {
  background-color: var(--color-light-dark);
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.sidebar-widget {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.widget-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-xs);
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-secondary);
}

/* Categories List */
.category-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}


/* Contact Page Specific Styles */

/* Hero Section */
.contact-hero {
  background-image: linear-gradient(rgba(51, 51, 51, 0.6), rgba(51, 51, 51, 0.6)), url('../img/contact/contact-hero-bg.jpg');
  background-position: center center;
  min-height: 400px;
}

/* Contact Information Section */
.contact-methods {
  margin-top: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.contact-icon {
  background-color: #465A40;
  color: #ECDFC8;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.contact-details h3 {
  color: #465A40;
  margin-bottom: 0.5rem;
  font-family: 'Bitter', serif;
  font-weight: 600;
  font-size: 1.25rem;
}

.contact-details p {
  margin-bottom: 0.5rem;
}

.contact-details a {
  color: #AF5C39;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #D89E45;
  text-decoration: underline;
}

.hours-note {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: #6F4A38;
}

.btn-sm {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  margin-top: 0.75rem;
}

.social-connect {
  margin-top: 3rem;
}

.social-connect h3 {
  color: #465A40;
  margin-bottom: 1rem;
  font-family: 'Bitter', serif;
  font-weight: 600;
}

.social-links.large {
  display: flex;
  gap: 1.5rem;
}

.social-links.large a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #465A40;
  color: #ECDFC8;
  border-radius: 50%;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.social-links.large a:hover {
  background-color: #D89E45;
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-container {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(111, 74, 56, 0.1);
}

.form-title {
  color: #465A40;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: 'Bitter', serif;
  font-weight: 600;
}

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

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333333;
  font-weight: 500;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ECDFC8;
  border-radius: 4px;
  background-color: #fff;
  color: #333333;
  font-family: 'Work Sans', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #D89E45;
  box-shadow: 0 0 0 3px rgba(216, 158, 69, 0.2);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.btn-full {
  width: 100%;
}

/* Map Section */
.map-container {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tour Options Section */
.tour-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tour-option-card {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(111, 74, 56, 0.1);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-option-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(111, 74, 56, 0.15);
}

.tour-option-card.featured {
  border: 2px solid #D89E45;
  transform: scale(1.05);
  z-index: 2;
}

.tour-option-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.featured-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #D89E45;
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.tour-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #465A40;
  color: #ECDFC8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
}

.tour-option-card h3 {
  color: #465A40;
  margin-bottom: 1rem;
  font-family: 'Bitter', serif;
  font-weight: 600;
}

.tour-features {
  list-style-type: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.tour-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.tour-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #D89E45;
}

.tour-note {
  margin-top: 3rem;
  font-size: 0.95rem;
  color: #6F4A38;
}

/* FAQ Section */
.faq-container {
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #ECDFC8;
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem;
  background-color: #fff;
  color: #465A40;
  font-weight: 600;
  font-family: 'Bitter', serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f9f6f0;
}

.faq-toggle {
  color: #D89E45;
  font-size: 1rem;
}

.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.25rem 1.25rem;
  max-height: 500px;
}

.faq-item.active .faq-question {
  background-color: #f9f6f0;
}

.faq-item.active .faq-toggle i {
  transform: rotate(45deg);
}

.more-questions {
  margin-top: 3rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .two-column-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
  }
  
  .tour-options {
      grid-template-columns: 1fr;
      max-width: 450px;
      margin-left: auto;
      margin-right: auto;
  }
  
  .tour-option-card.featured {
      transform: scale(1);
  }
  
  .tour-option-card.featured:hover {
      transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .form-row {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .contact-method {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  
  .contact-icon {
      margin-right: 0;
      margin-bottom: 1rem;
  }
  
  .social-links.large {
      justify-content: center;
  }
}

@media (max-width: 576px) {
  .contact-form-container {
      padding: 1.5rem;
  }
  
  .map-container {
      height: 350px;
  }
}