/* Global Settings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #E4EDF4;
  color: #2D3E50;
  line-height: 1.6;
}

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

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

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #F28F3B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo a:hover {
  color: #e07c2d;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

nav ul li a {
  color: #E4EDF4;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: #33475b;
  color: #89CFF0;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  gap: 3rem;
  min-height: 70vh;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #1E2A38;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  background-color: #F28F3B;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(242, 143, 59, 0.3);
}

.btn:hover {
  background-color: #e07c2d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(242, 143, 59, 0.4);
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
  background-color: #F5F9FC;
  padding: 4rem 0;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #1E2A38;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Section Layout */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1E2A38;
}

.section p {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e0e6ed;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card h3 {
  font-size: 1.4rem;
  color: #1E2A38;
  margin-bottom: 1rem;
  font-weight: 600;
}

.card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  text-align: left;
}

.card ul {
  list-style: none;
  text-align: left;
  margin-top: 1rem;
}

.card ul li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}

.card ul li:before {
  content: "✓";
  color: #F28F3B;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.colorful .card {
  background: linear-gradient(135deg, #FFF3EB 0%, #F5F9FC 100%);
  border-left: 4px solid #F28F3B;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #F28F3B;
  margin: 1rem 0;
}

/* Pricing specific styles */
.pricing .cards {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pricing .card {
  position: relative;
  overflow: hidden;
}

.pricing .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F28F3B, #89CFF0);
}

/* Form Styles */
form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

form label {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1E2A38;
}

form input,
form textarea {
  padding: 1rem;
  border: 2px solid #e0e6ed;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #F28F3B;
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

form button {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #F28F3B;
  border: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

form button:hover {
  background-color: #e07c2d;
  transform: translateY(-2px);
}

/* Testimonials */
.testimonials .card {
  text-align: center;
}

.testimonials blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonials blockquote:before {
  content: '"';
  font-size: 2rem;
  color: #F28F3B;
}

.testimonials blockquote:after {
  content: '"';
  font-size: 2rem;
  color: #F28F3B;
}

/* Footer */
footer {
  background-color: #1E2A38;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 4rem;
  color: #E4EDF4;
}

.footer-contact {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #F28F3B;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #89CFF0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    justify-content: center;
    gap: 1rem;
  }
  
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  
  .section {
    padding: 2rem 1rem;
  }
  
  .section h2 {
    font-size: 2rem;
  }
  
  .cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 1rem;
  }
  
  .logo a {
    font-size: 1.4rem;
  }
  
  nav ul {
    gap: 0.5rem;
  }
  
  nav ul li a {
    padding: 6px 8px;
    font-size: 0.9rem;
  }
  
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
}

/* Utility Classes */
.alt-bg {
  background-color: #F5F9FC;
}

.button {
  display: inline-block;
  background: #F28F3B;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.button:hover {
  background: #e07c2d;
  transform: translateY(-2px);
}

/* Calendly iframe styling */
iframe {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Video Library Styles */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.video-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #F28F3B, #89CFF0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.video-content {
  padding: 1.5rem;
}

.video-content h3 {
  color: #1E2A38;
  margin-bottom: 0.5rem;
}

.video-content p {
  color: #666;
  font-size: 0.9rem;
  text-align: left;
}

.premium-badge {
  background: linear-gradient(45deg, #F28F3B, #e07c2d);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}
