/* 
* PvirateSwap - Board Game Shop in UK
* Main Stylesheet
* 2024
*/

/* ========== VARIABLES ========== */
:root {
  --primary-color: #4a2c82; /* Deep purple - primary brand color */
  --secondary-color: #ff6b35; /* Vibrant orange - for accents and calls to action */
  --tertiary-color: #00a5cf; /* Turquoise blue - for highlights and secondary accents */
  
  --text-dark: #222222; /* Near black for primary text */
  --text-medium: #555555; /* Medium gray for secondary text */
  --text-light: #ffffff; /* White for text on dark backgrounds */
  
  --bg-light: #ffffff; /* White for primary backgrounds */
  --bg-off-white: #f8f8f8; /* Off-white for secondary backgrounds */
  --bg-accent: #f0edf7; /* Very light purple for accent backgrounds */
  --bg-dark: #2c2144; /* Dark purple for footer and dark sections */
  
  --border-color: #e0e0e0; /* Light gray for borders */
  --shadow-color: rgba(0, 0, 0, 0.1); /* Shadow color for depth */
  
  --success-color: #28a745; /* Green for success messages */
  --error-color: #dc3545; /* Red for error messages */
  --warning-color: #ffc107; /* Yellow for warning messages */
  --info-color: #17a2b8; /* Blue for info messages */
  
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  
  --border-radius: 8px;
  --box-shadow: 0 4px 12px var(--shadow-color);
  --transition: all 0.3s ease;
  
  --container-width: 1200px;
  --header-height: 80px;
}

/* ========== RESET & BASE STYLES ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

button, .btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

button:hover, .btn:hover {
  background-color: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

input, select, textarea {
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  width: 100%;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(74, 44, 130, 0.2);
}

/* ========== LAYOUT ========== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

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

/* ========== HEADER ========== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

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

.logo img {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
}

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

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a.active {
  color: var(--primary-color);
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-dark);
  transition: var(--transition);
}

/* ========== HERO SECTION ========== */
.hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/1.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-weight: 400;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* ========== FEATURED POSTS ========== */
.featured {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.featured h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.featured-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.post-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.post-image {
  height: 220px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.post-content p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.read-more {
  color: var(--secondary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.read-more:hover {
  color: var(--primary-color);
}

/* ========== COUNTDOWN SECTION ========== */
.countdown {
  padding: 4rem 0;
  background-color: var(--bg-accent);
  text-align: center;
}

.countdown h2 {
  margin-bottom: 2rem;
}

#countdown-timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-block span {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 1rem;
  min-width: 100px;
  box-shadow: var(--box-shadow);
}

.time-block p {
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0;
}

.countdown-info {
  font-size: 1.2rem;
  font-weight: 500;
}

/* ========== STORE INFO ========== */
.store-info {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.store-info h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-off-white);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

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

.feature i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature h3 {
  margin-bottom: 1rem;
}

.feature p {
  color: var(--text-medium);
  margin-bottom: 0;
}

/* ========== BLOG PAGE ========== */
.page-banner {
  padding: 8rem 0 4rem;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/2.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  text-align: center;
}

.page-banner h1 {
  color: var(--text-light);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-banner p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.blog-section {
  padding: 5rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 3rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.blog-image {
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-medium);
  font-size: 0.9rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
}

.blog-meta i {
  margin-right: 0.5rem;
}

.blog-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-content p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.blog-content .read-more {
  margin-top: auto;
  align-self: flex-start;
}

.read-more i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.read-more:hover i {
  transform: translateX(3px);
}

/* ========== BLOG POST PAGE ========== */
.blog-post {
  padding: 8rem 0 3rem;
}

.post-header {
  margin-bottom: 3rem;
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-medium);
  font-size: 1rem;
}

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

.post-meta i {
  margin-right: 0.5rem;
}

.post-header h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

.post-featured-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

.post-featured-image img {
  width: 100%;
  height: auto;
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.post-content h2 {
  font-size: 2rem;
  margin: 3rem 0 1.5rem;
}

.post-content h3 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1.25rem;
}

.post-content h4 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
}

.post-content ul, .post-content ol {
  margin-bottom: 2rem;
}

.post-content li {
  margin-bottom: 0.75rem;
}

.game-recommendation {
  background-color: var(--bg-accent);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.game-recommendation h3 {
  margin-top: 0;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 3rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.post-tags span {
  font-weight: 600;
  color: var(--text-dark);
}

.post-tags a {
  display: inline-block;
  background-color: var(--bg-accent);
  color: var(--primary-color);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.post-tags a:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.post-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.post-share span {
  font-weight: 600;
  color: var(--text-dark);
}

.social-share {
  display: flex;
  gap: 0.75rem;
}

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-accent);
  color: var(--primary-color);
  transition: var(--transition);
}

.social-share a:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin: 4rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.nav-previous, .nav-next {
  max-width: 45%;
}

.nav-previous a, .nav-next a {
  display: flex;
  flex-direction: column;
}

.nav-subtitle {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.nav-title {
  font-weight: 600;
  color: var(--primary-color);
  transition: var(--transition);
}

.nav-previous a:hover .nav-title, 
.nav-next a:hover .nav-title {
  color: var(--secondary-color);
}

/* ========== RELATED POSTS ========== */
.related-posts {
  padding: 3rem 0 5rem;
  background-color: var(--bg-off-white);
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.related-post {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.related-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.related-image {
  height: 200px;
  overflow: hidden;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.related-post h3 {
  padding: 1.5rem;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.related-post h3 a {
  color: var(--text-dark);
  transition: var(--transition);
}

.related-post h3 a:hover {
  color: var(--primary-color);
}

/* ========== NEWSLETTER ========== */
.newsletter {
  padding: 4rem 0;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
}

.newsletter h2 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  gap: 1rem;
}

.newsletter-form input {
  flex-grow: 1;
  border: none;
  border-radius: var(--border-radius);
}

.newsletter-form .btn {
  background-color: var(--secondary-color);
  flex-shrink: 0;
}

.newsletter-form .btn:hover {
  background-color: var(--tertiary-color);
}

/* ========== ABOUT PAGE ========== */
.about-story {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-content h2 {
  margin-bottom: 2rem;
}

.about-content p {
  margin-bottom: 1.5rem;
}

.mission-values {
  padding: 5rem 0;
  background-color: var(--bg-off-white);
}

.mission-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.mission-content, .values-content {
  background-color: var(--bg-light);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.mission-content h2, .values-content h2 {
  margin-bottom: 2rem;
}

.mission-content p {
  margin-bottom: 1.5rem;
}

.mission-content ul {
  margin-bottom: 0;
}

.mission-content li {
  margin-bottom: 0.75rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

.value-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.value-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.team-section {
  padding: 5rem 0;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
}

.team-member {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.member-info {
  padding: 2rem;
}

.member-info h3 {
  margin-bottom: 0.5rem;
}

.member-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  margin-bottom: 1.5rem;
}

.member-favorites {
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 0;
}

.journey-section {
  padding: 5rem 0;
  background-color: var(--bg-off-white);
}

.journey-section h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: var(--primary-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--secondary-color);
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-date {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% - 40px);
  text-align: right;
  padding-right: 20px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.timeline-content {
  margin-left: calc(50% + 40px);
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: calc(50% - 40px);
}

.timeline-content h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.timeline-content p {
  margin-bottom: 0;
}

.testimonials {
  padding: 5rem 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  position: relative;
  margin-bottom: 0;
}

.testimonial-content p::before {
  content: '\201C';
  font-size: 3rem;
  position: absolute;
  left: -1rem;
  top: -1.5rem;
  color: var(--primary-color);
  opacity: 0.3;
}

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

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.25rem;
}

.author-info p {
  margin-bottom: 0;
  color: var(--text-medium);
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/3.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* ========== CONTACT PAGE ========== */
.contact-info {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-details h2 {
  margin-bottom: 2rem;
}

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

.contact-methods {
  display: grid;
  gap: 2rem;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
}

.method-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--bg-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.method-details h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.method-details p {
  margin-bottom: 0.25rem;
}

.detail-note {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.method-details .social-icons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.method-details .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-accent);
  color: var(--primary-color);
  transition: var(--transition);
}

.method-details .social-icons a:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.contact-form-container {
  background-color: var(--bg-light);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
  margin-bottom: 2rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

.checkbox-group input {
  width: auto;
  margin-top: 0.3rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

.map-section {
  padding: 5rem 0;
  background-color: var(--bg-off-white);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.faq-section {
  padding: 5rem 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background-color: var(--bg-off-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.faq-toggle {
  flex-shrink: 0;
  transition: var(--transition);
}

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

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
  border-top: 1px solid var(--border-color);
}

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

.faq-answer p {
  margin-bottom: 0;
}

/* ========== POLICY PAGES ========== */
.policy-content {
  padding: 5rem 0;
}

.policy-introduction {
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.policy-section {
  margin-bottom: 4rem;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.policy-section h3 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.policy-section ul, .policy-section ol {
  margin-bottom: 2rem;
}

.policy-section li {
  margin-bottom: 0.75rem;
}

.toc {
  background-color: var(--bg-off-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  columns: 2;
}

.contact-details {
  background-color: var(--bg-off-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.refund-steps {
  background-color: var(--bg-accent);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.refund-steps ol {
  margin-bottom: 0;
}

/* ========== MODAL ========== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--bg-light);
  padding: 3rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--text-medium);
  cursor: pointer;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--primary-color);
}

.thank-you-message {
  text-align: center;
}

.thank-you-message i {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.thank-you-message h2 {
  margin-bottom: 1rem;
}

.thank-you-message p {
  margin-bottom: 2rem;
}

.btn-modal-close {
  background-color: var(--primary-color);
}

.modal.active {
  display: flex;
}

/* ========== COOKIE CONSENT ========== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-light);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  z-index: 1000;
  display: none;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cookie-consent h3 {
  margin-bottom: 0.75rem;
}

.cookie-consent p {
  margin-bottom: 1.5rem;
}

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

.btn-accept {
  background-color: var(--success-color);
}

.btn-customize {
  background-color: var(--primary-color);
}

.btn-decline {
  background-color: var(--text-medium);
}

.cookie-more-info {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ========== FOOTER ========== */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 1.5rem;
}

.footer-links h3, .footer-contact h3 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

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

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

.footer-contact p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact i {
  margin-right: 1rem;
  margin-top: 0.25rem;
  color: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin-bottom: 0;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  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(--text-light);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1200px) {
  .featured-posts, .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .about-grid, .mission-container, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .timeline-date {
    position: relative;
    width: 100%;
    text-align: left;
    padding-left: 70px;
    left: auto;
  }
  
  .timeline-content {
    width: 100%;
    margin-left: 0;
    padding-left: 70px;
  }
}

@media (max-width: 768px) {
  nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-light);
    transition: var(--transition);
    z-index: 1000;
    padding: 2rem;
    overflow-y: auto;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 1rem 0;
  }
  
  nav ul li a {
    display: block;
    font-size: 1.2rem;
    padding: 0.5rem 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  #countdown-timer {
    gap: 1rem;
  }
  
  .time-block span {
    font-size: 2rem;
    min-width: 70px;
  }
  
  .features, .values-grid {
    grid-template-columns: 1fr;
  }
  
  .post-header h1 {
    font-size: 2.2rem;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 2rem;
  }
  
  .nav-previous, .nav-next {
    max-width: 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .featured-posts, .blog-grid, .team-grid, .testimonial-slider, .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: 7rem 0 4rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 1.3rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .toc {
    columns: 1;
  }
}
