/* CoachForExecs main stylesheet */
:root {
  --primary-color: #0066cc;
  --secondary-color: #333333;
  --accent-color: #ff9900;
  --text-color: #333333;
  --background-color: #ffffff;
  --container-width: 1280px;
  --spacing-unit: 1rem;
  --header-height: 80px;
}

/* Global Styles */
body {
  font-family: "Instrument Sans", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
}

/* Typography */
h1, .h1-heading {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.subheading {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
}

.paragraph-lg {
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Navigation */
.nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: var(--background-color);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--spacing-unit);
}

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

.nav-menu-list-item {
  margin: 0 1rem;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Navigation Styles */
.nav-logo {
  text-decoration: none;
}

.nav-logo .paragraph-lg {
  color: var(--text-color);
}

.inverse-nav .nav-logo .paragraph-lg {
  color: var(--background-color);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.inverse-section {
  background-color: var(--secondary-color);
  color: var(--background-color);
}

/* Grid Layout */
.grid-layout {
  display: grid;
  gap: 2rem;
}

.desktop-3-column {
  grid-template-columns: repeat(3, 1fr);
}

/* Buttons */
.button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-weight: 500;
}

.button:hover {
  background-color: #0052a3;
}

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

.secondary-button:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Pricing Cards */
.pricing-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.pricing-features-list li {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features-list li::before {
  content: "•";
  color: var(--text-color);
  margin-right: 0.75rem;
}

/* Responsive Design */
@media (max-width: 991px) {
  .desktop-3-column {
    grid-template-columns: repeat(2, 1fr);
  }
  
  h1, .h1-heading {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .desktop-3-column {
    grid-template-columns: 1fr;
  }
  
  .nav-menu-list {
    display: none;
  }
  
  h1, .h1-heading {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
}

/* Header Image Styles */
.header-image-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

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

/* About Image Styles */
.about-image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

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

/* Responsive Image Adjustments */
@media screen and (max-width: 767px) {
  .header-image-container {
    height: 300px;
  }
  
  .about-image-container {
    height: 250px;
  }
}

/* Team Section Styles */
.team-section-header {
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-member {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member-info {
  text-align: center;
}

.team-member-title {
  color: var(--primary-color);
  font-weight: 500;
  margin: 0.5rem 0;
}

.team-member-bio {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 1rem 0 0 0;
}

/* Contact Form Styles */
.contact-section-header {
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-field-wrapper {
  margin: 0;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background-color: #fff;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
}

.checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.875rem;
  color: var(--text-color);
  line-height: 1.5;
}

.checkbox-label a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.contact-form .button {
  width: 100%;
  margin-top: 1rem;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
}

/* Privacy and Terms Pages */
.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.privacy-section,
.terms-section {
  margin-bottom: 3rem;
}

.privacy-content h1,
.terms-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.last-updated {
  color: #666;
  font-style: italic;
  margin-bottom: 2rem;
}

.privacy-content h2,
.terms-content h2 {
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
  color: var(--secondary-color);
}

.privacy-content h3,
.terms-content h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 1rem;
  color: var(--secondary-color);
}

.privacy-content p,
.terms-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.privacy-content ul,
.terms-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.privacy-content li,
.terms-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

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

/* Responsive Adjustments */
@media screen and (max-width: 767px) {
  .privacy-content,
  .terms-content {
    padding: 1rem;
  }

  .privacy-content h1,
  .terms-content h1 {
    font-size: 2rem;
  }

  .privacy-content h2,
  .terms-content h2 {
    font-size: 1.5rem;
  }

  .privacy-content h3,
  .terms-content h3 {
    font-size: 1.125rem;
  }
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    padding: 4rem 0 3rem;
    color: #fff;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.social-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.social-link:hover {
    opacity: 1;
    color: #3498db;
}

.social-link:hover::after {
    width: 100%;
}

.social-link i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Social Media Brand Colors on Hover */
.social-link[aria-label="Facebook"]:hover {
    color: #1877f2;
}

.social-link[aria-label="Facebook"]:hover::after {
    background-color: #1877f2;
}

.social-link[aria-label="Instagram"]:hover {
    color: #e4405f;
}

.social-link[aria-label="Instagram"]:hover::after {
    background-color: #e4405f;
}

.social-link[aria-label="Twitter"]:hover {
    color: #1da1f2;
}

.social-link[aria-label="Twitter"]:hover::after {
    background-color: #1da1f2;
}

.social-link[aria-label="YouTube"]:hover {
    color: #ff0000;
}

.social-link[aria-label="YouTube"]:hover::after {
    background-color: #ff0000;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .footer-social {
        gap: 2rem;
    }

    .social-link {
        font-size: 0.5rem;
        padding: 10px;
    }

    .social-link i {
        width: 28px;
        height: 28px;
    }
}

@media screen and (max-width: 767px) {
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding-top: 2rem;
    }

    .footer-social {
        justify-content: center;
        gap: 2.5rem;
    }

    .social-link {
        font-size: 1.75rem;
        padding: 12px;
    }

    .social-link i {
        width: 32px;
        height: 32px;
    }

    .social-link::after {
        height: 3px;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 479px) {
    .footer-social {
        gap: 2rem;
    }

    .social-link {
        font-size: 0.5rem;
        padding: 10px;
    }

    .social-link i {
        width: 28px;
        height: 28px;
    }

    .footer-bottom {
        gap: 1.5rem;
    }
}

/* Business Page Styles */
.business-content {
    padding: 120px 0 80px;
}

.business-header {
    margin-bottom: 80px;
}

.business-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.business-header .subheading {
    font-size: 1.5rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
}

.business-section {
    margin-bottom: 100px;
}

.business-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border: 2px solid #3498db;
    background: linear-gradient(to bottom right, #f8f9fa, #e8f4fd);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.service-card ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

.service-card ul li::before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.service-card .price {
    font-size: 1.25rem;
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.solution-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.solution-item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

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

.solution-item ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

.solution-item ul li::before {
    content: "✓";
    color: #27ae60;
    position: absolute;
    left: 0;
}

/* Industry Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.industry-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.industry-item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.industry-item p {
    color: #34495e;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(to bottom right, #f8f9fa, #e8f4fd);
    padding: 60px;
    border-radius: 12px;
    margin-bottom: 0;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 2rem;
}

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

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .business-header h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 767px) {
    .business-content {
        padding: 100px 0 60px;
    }

    .business-header {
        margin-bottom: 60px;
    }

    .business-header h1 {
        font-size: 2.5rem;
    }

    .business-header .subheading {
        font-size: 1.25rem;
    }

    .services-grid,
    .solutions-grid,
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .business-section {
        margin-bottom: 60px;
    }

    .business-section h2 {
        font-size: 2rem;
    }

    .service-card,
    .solution-item,
    .industry-item {
        padding: 25px;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media screen and (max-width: 479px) {
    .business-header h1 {
        font-size: 2rem;
    }

    .business-section h2 {
        font-size: 1.75rem;
    }
} 