/*
blueprint4d1 - Simplified CSS
Clean, minimal design for soccer recruiting consulting business
*/

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

html, body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: #ffffff;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  color: #4a90e2;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 600;
  color: #1a1a1a;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 1em;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header-area {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
}

.header-area .main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 20px;
}

.header-area .logo {
  display: flex;
  align-items: center;
  height: 50px;
}

.header-area .logo img {
  height: 50px;
  width: auto;
  display: block;
}

.header-area .nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-area .nav li {
  list-style: none;
}

.header-area .nav li a {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  padding: 8px 0;
  position: relative;
}

.header-area .nav li a:hover {
  color: #3b82f6;
}

.header-area .nav li a.active {
  color: #3b82f6;
}

.header-area .nav li:nth-last-child(3) a {
  background-color: #3b82f6;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
}

.header-area .nav li:nth-last-child(3) a:hover {
  background-color: #2563eb;
  color: #fff;
}

.header-area .nav li a[href*="linkedin"]:hover {
  color: #0077b5;
}

.header-area .nav li a[href*="instagram"]:hover {
  color: #E4405F;
}

.menu-trigger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h6 {
  font-size: 14px;
  font-weight: 600;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.section-heading h4 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.section-heading p {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
  margin: 0 auto;
}

.line-dec {
  width: 60px;
  height: 3px;
  background-color: #3b82f6;
  margin: 20px auto;
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  background-color: #fff;
  text-align: center;
}

.hero-section h1 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-section .subheadline {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: #3b82f6;
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #2563eb;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background-color: transparent;
  color: #3b82f6;
  border: 2px solid #3b82f6;
  border-radius: 6px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #3b82f6;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

/* Content Sections */
.content-section {
  padding: 80px 0;
}

.content-section h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.content-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 20px;
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 60px 0;
}

.two-column img {
  border-radius: 8px;
}

/* Cards */
.card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  border-color: #d1d5db;
}

.card h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.card p {
  color: #4a4a4a;
  margin-bottom: 0;
}

/* Players Grid */
.players-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.player-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.player-card:hover {
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
  border-color: #3b82f6;
}

.player-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
  text-align: center;
  transition: color 0.3s ease;
}

.player-card:hover h4 {
  color: #3b82f6;
}

.player-card .player-background {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  transition: color 0.3s ease;
}

.player-card:hover .player-background {
  color: #3b82f6;
}

.player-card .player-support {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 0;
  flex-grow: 1;
  text-align: center;
}

/* Testimonial Cards */
.testimonial-card {
  background: #fafafa;
  border: none;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.testimonial-card .author {
  font-weight: 600;
  color: #1a1a1a;
  font-style: normal;
}

/* FAQ Items */
.faq-item {
  border-bottom: 1px solid #e8e8e8;
  padding: 0;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #3b82f6;
}

.faq-question h4 {
  font-size: 18px;
  margin: 0;
  color: #1a1a1a;
  flex: 1;
  padding-right: 20px;
  transition: color 0.3s ease;
}

.faq-question:hover h4 {
  color: #3b82f6;
}

.faq-arrow {
  color: #3b82f6;
  font-size: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-arrow i {
  transition: transform 0.3s ease;
}

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

.faq-answer p {
  color: #4a4a4a;
  padding-bottom: 25px;
  margin: 0;
  line-height: 1.8;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 60px;
  width: 2px;
  height: calc(100% + 20px);
  background-color: #e8e8e8;
}

.timeline-number {
  width: 40px;
  height: 40px;
  background-color: #3b82f6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.timeline-content h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.timeline-content p {
  color: #4a4a4a;
}

/* Package Cards */
.package-card {
  background: #ffffff;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.package-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.12);
  transform: translateY(-2px);
}

.package-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.package-card .subtitle {
  color: #4a4a4a;
  margin-bottom: 20px;
  font-size: 16px;
}

.package-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #3b82f6;
  margin: 20px 0;
}

.package-card ul {
  text-align: left;
  margin: 30px 0;
}

.package-card ul li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  color: #4a4a4a;
}

.package-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 700;
}

/* Video/Reel Section */
.reel-section {
  text-align: center;
  padding: 80px 0;
}

.reel-placeholder {
  background: #f5f5f5;
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 80px 20px;
  margin: 40px 0;
  color: #999;
}

.reel-placeholder::before {
  content: '▶';
  display: block;
  font-size: 48px;
  margin-bottom: 20px;
  color: #ccc;
}

/* CTA Section */
.cta-section {
  background: #f9f9f9;
  padding: 80px 0;
  text-align: center;
}

.cta-section h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #2a2a2a;
}

.cta-section p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 0 30px;
  text-align: center;
}

footer .brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

footer .brand img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

footer p {
  color: #aaa;
  margin-bottom: 10px;
}

footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

footer .social-icons a {
  width: 40px;
  height: 40px;
  background: #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

footer .social-icons a:hover {
  background: #3b82f6;
  color: #fff;
  transform: translateY(-2px);
}

/* Calendar Placeholder */
.calendar-placeholder {
  background: #f9f9f9;
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 100px 20px;
  text-align: center;
  margin: 40px 0;
  color: #666;
}

.calendar-placeholder h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #2a2a2a;
}

/* Responsive Design */
@media (max-width: 991px) {
  .menu-trigger {
    display: block;
  }

  .header-area .nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }

  .header-area .nav.active {
    display: flex;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .players-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .hero-section h1 {
    font-size: 36px;
  }

  .section-heading h2,
  .section-heading h4 {
    font-size: 28px;
  }

  .timeline-item {
    flex-direction: column;
    gap: 20px;
  }

  .timeline-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 80px 0 60px;
  }

  .hero-section h1 {
    font-size: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 60px 0;
  }

  .package-card {
    margin-bottom: 30px;
  }

  .players-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

