/* Infospotview CSS - Professional Business Styling */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #fefefe;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Arial", "Helvetica", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a365d;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

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

a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #b8941f;
  text-decoration: underline;
}

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background-color: #1a365d;
  color: #fefefe;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
  color: #d4af37;
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

.tagline {
  font-size: 0.9rem;
  color: #e2e8f0;
  margin: 0;
  max-width: 300px;
}

/* Navigation */
.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #e2e8f0;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #d4af37;
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #d4af37;
  transition: width 0.3s ease;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #e2e8f0;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.8), rgba(26, 54, 93, 0.6));
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  color: #fefefe;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #fefefe;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #e2e8f0;
}

.cta-button {
  display: inline-block;
  background-color: #d4af37;
  color: #1a365d;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #b8941f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  text-decoration: none;
  color: #1a365d;
}

/* Section Styles */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #1a365d;
}

.page-header {
  text-align: center;
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

/* Main Content */
.main-content {
  padding: 2rem 0;
}

/* Grid Layouts */
.features-grid,
.testimonials-grid,
.goals-grid,
.values-grid,
.receive-grid,
.contact-grid,
.stats-grid,
.types-grid,
.stories-grid,
.methodology-steps,
.resources-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.goals-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.values-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.receive-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.types-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.stories-grid {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.methodology-steps {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.resources-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Card Styles */
.feature-card,
.testimonial-card,
.goal-card,
.value-item,
.receive-card,
.contact-item,
.stat-card,
.type-card,
.story-card,
.team-member,
.resource-category {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.testimonial-card:hover,
.goal-card:hover,
.value-item:hover,
.receive-card:hover,
.stat-card:hover,
.type-card:hover,
.story-card:hover,
.team-member:hover {
  transform: translateY(-5px);
}

.feature-icon,
.receive-icon,
.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  border-radius: 50%;
}

.feature-icon img,
.receive-icon img,
.category-icon img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.goal-number {
  font-size: 2rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 1rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4af37;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-description {
  color: #6c757d;
  font-size: 0.9rem;
}

.type-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

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

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

.story-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

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

.story-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.story-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.story-info h4 {
  color: #1a365d;
  margin-bottom: 0.25rem;
}

.story-location {
  color: #6c757d;
  font-size: 0.9rem;
}

.story-metrics {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.metric {
  text-align: center;
}

.metric-value {
  font-weight: 700;
  color: #d4af37;
  display: block;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.8rem;
  color: #6c757d;
}

.step-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #d4af37;
  color: #1a365d;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-title {
  color: #1a365d;
  margin: 1rem 0;
}

.member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid #d4af37;
}

.member-name {
  color: #1a365d;
  margin-bottom: 0.5rem;
}

.member-role {
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Infographic Section */
.infographic {
  background-color: #f8f9fa;
  padding: 4rem 0;
}

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

.flow-diagram {
  margin: 2rem 0;
}

.flow-diagram img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.infographic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.info-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1rem;
}

/* Map Section */
.map-section {
  padding: 4rem 0;
  background-color: #1a365d;
  color: #fefefe;
}

.map-section .section-title {
  color: #fefefe;
}

.map-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.europe-map {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-info h3 {
  color: #d4af37;
  margin-bottom: 1rem;
}

/* Audience Section */
.audience-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.audience-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #1a365d, #2c5282);
  color: #fefefe;
  border-radius: 10px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #d4af37;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.audience-description ul {
  list-style: none;
  padding-left: 0;
}

.audience-description li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.audience-description li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

/* Form Styles */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-note {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  color: #856404;
  padding: 1rem;
  border-radius: 5px;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a365d;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
}

.submit-button {
  background-color: #1a365d;
  color: #fefefe;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background-color: #2c5282;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26, 54, 93, 0.3);
}

/* Legal Content */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

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

.legal-section h2 {
  color: #1a365d;
  margin-bottom: 1.5rem;
}

.legal-section h3 {
  color: #2c5282;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-section ul {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

.contact-details {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 1rem;
}

/* Cookie Table */
.cookie-table {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
  background-color: #1a365d;
  color: #fefefe;
  font-weight: 600;
}

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

/* Browser Instructions */
.browser-instructions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.browser-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 5px;
  border-left: 4px solid #d4af37;
}

.browser-item h4 {
  color: #1a365d;
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background-color: #1a365d;
  color: #e2e8f0;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

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

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-nav a {
  color: #e2e8f0;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #d4af37;
}

.footer-info {
  text-align: right;
}

.disclaimer {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.contact-info {
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a365d;
  color: #fefefe;
  padding: 1rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.cookie-accept {
  background-color: #d4af37;
  color: #1a365d;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.cookie-accept:hover {
  background-color: #b8941f;
}

/* Additional Styles for New Content Sections */

/* Market Statistics Section */
.market-stats {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 4rem 0;
  margin: 3rem 0;
}

/* Franchise Types Section */
.franchise-types {
  padding: 4rem 0;
}

/* Success Stories Section */
.success-stories {
  background-color: #f8f9fa;
  padding: 4rem 0;
}

/* Market Trends Section */
.market-trends {
  padding: 4rem 0;
}

.trends-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.trend-chart {
  text-align: center;
  margin-bottom: 2rem;
}

.trend-chart img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.trends-list {
  list-style: none;
  padding: 0;
}

.trends-list li {
  padding: 1rem;
  margin-bottom: 1rem;
  background: #ffffff;
  border-left: 4px solid #d4af37;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.trend-title {
  font-weight: 600;
  color: #1a365d;
  margin-bottom: 0.5rem;
}

.trend-icon {
  width: 60px;
  height: 60px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.trend-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Team Section */
.team-section {
  background-color: #f8f9fa;
  padding: 4rem 0;
}

/* Resources Section */
.resources-section {
  background-color: #f8f9fa;
  padding: 4rem 0;
}

.resource-list {
  list-style: none;
  padding: 0;
}

.resource-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.resource-list li:last-child {
  border-bottom: none;
}

.resource-list a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
}

.resource-list a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a365d;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-list.show {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .content-grid,
  .map-container,
  .audience-content,
  .trends-content,
  .audience-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }

  .audience-stats {
    flex-direction: row;
    justify-content: space-around;
  }

  .stat-item {
    flex: 1;
    margin: 0 0.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .types-grid,
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .story-metrics {
    flex-direction: column;
    gap: 1rem;
  }

  .methodology-steps {
    grid-template-columns: 1fr;
  }

  .testimonial-photo {
    width: 60px;
    height: 60px;
  }

  .type-image,
  .story-image {
    height: 150px;
  }

  .feature-icon,
  .receive-icon,
  .category-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon img,
  .receive-icon img,
  .category-icon img {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 60vh;
    min-height: 400px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .form-container {
    padding: 2rem 1rem;
  }

  .audience-stats {
    flex-direction: column;
  }

  .stat-item {
    margin: 0;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-balance {
  text-wrap: balance;
}

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