/* Additional styles for inner pages */

.page-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 50%, #f0ebe5 100%);
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(26, 77, 122, 0.15);
    transform: scale(1.05);
}

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

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

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.price .amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.price .grade-label {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
}

.price .period {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-desc {
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.75rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

.pricing-note {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.pricing-note p {
    color: var(--text-medium);
    margin: 0;
}

.pricing-note strong {
    color: var(--text-dark);
}

/* Service Details */
.services-detail {
    background: var(--bg-white);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 120px;
    /* Offset for anchor links to show the number above */
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-content {
    max-width: 800px;
}

.detail-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.detail-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.detail-content>p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.detail-features {
    list-style: none;
}

.detail-features li {
    padding: 0.75rem 0 0.75rem 2rem;
    color: var(--text-dark);
    position: relative;
    line-height: 1.7;
}

.detail-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.2rem;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* About Page */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

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

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    background: #2f5f8f;

    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.team-member h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-member .role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.team-member span.role {
    font-size: 1.1rem !important;
}

.team-member p {
    color: var(--text-medium);
    line-height: 1.7;
}

.team-grid-custom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.team-grid-custom .team-member {
    width: calc(50% - 1.5rem);
    max-width: 350px;
}

.team-grid-custom .team-member:nth-child(3),
.team-grid-custom .team-member:nth-child(4),
.team-grid-custom .team-member:nth-child(5) {
    width: calc(33.333% - 2rem);
    max-width: 340px;
}

.team-grid-custom .team-member {
    cursor: pointer;
    transition: var(--transition);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.team-grid-custom .team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

.team-grid-custom .team-member:active {
    transform: scale(0.97);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

/* Team Modal */
.team-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.team-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.team-modal-content {
    background-color: var(--bg-white);
    padding: 3.5rem 4rem;
    /* slightly more breathing room */
    border-radius: 20px;

    max-width: 900px;
    /* was 600px */
    width: 92%;

    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.team-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.team-modal-close:hover {
    color: var(--text-dark);
    background: var(--bg-light);
}

#modalBody h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

#modalBody .modal-role {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

#modalBody p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.modal-header-text h2 {
    margin: 0 0 0.25rem 0;
}

.linkedin-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    text-decoration: none;

    background: rgba(10, 102, 194, 0.08);
    /* very light blue */
    color: #0A66C2;
    /* LinkedIn blue text */
    border: 1px solid rgba(10, 102, 194, 0.25);

    font-weight: 600;
    transition: 0.2s ease;
}

.linkedin-badge svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.linkedin-badge:hover {
    background: rgba(10, 102, 194, 0.15);
    border-color: #0A66C2;
    transform: translateY(-2px);
}

.modal-bio p {
    margin-bottom: 1rem;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.value-item h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Why Us */
.stories-grid {
    display: grid;
    gap: 3rem;
}

.story-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.story-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.story-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 2rem;
    text-align: center;
}

.story-header .college {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.story-header .student {
    opacity: 0.9;
    font-size: 1.1rem;
}

.story-content {
    padding: 2.5rem;
}

.story-content blockquote {
    font-style: italic;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.story-stat {
    flex: 1;
}

.story-stat strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.story-stat span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Resources Page */
.resources-grid {
    display: grid;
    gap: 2rem;
}

.resource-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.resource-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.resource-category {
    display: inline-block;
    background: var(--accent-light);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.resource-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.resource-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.resource-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Page — Full Width Get in Touch */

.contact-content {
  display: block;
  padding: 36px 0 28px;
  padding-top: 5px;
}

.section:has(.contact-content) {
  padding-top: 20px;
}
.contact-info {
  max-width: 880px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  margin-bottom: 0.9rem;
  color: var(--text-dark);
}

.contact-info > p {
  max-width: 70ch;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

/* group everything into a single card */
.contact-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.05);
}

/* make rows scannable */
.contact-methods {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-methods li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-methods li:last-child {
    border-bottom: none;
}

.contact-methods strong {
  margin: 0;
  font-size: 1rem;
  color: var(--text-dark);
}

.contact-methods a,
.contact-methods span {
  color: var(--text-medium);
  line-height: 1.6;
}

.contact-methods a {
  color: var(--primary);
  text-decoration: none;
}

.contact-methods a:hover {
  color: var(--primary-dark);
}

/* what to expect as a continuation of the card */
.what-to-expect {
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}


.what-to-expect h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.what-to-expect p {
  margin: 0;
  color: var(--text-medium);
  line-height: 1.8;
}

/* mobile */
@media (max-width: 600px) {
  .contact-methods li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}


.form-container {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 77, 122, 0.1);
}

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

.form-container .btn {
    width: 100%;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

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

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

    .form-container {
        padding: 2rem;
    }

    .team-grid-custom {
        flex-direction: column;
        max-width: 100%;
        gap: 2rem;
    }

    .team-grid-custom .team-member {
        width: 100%;
        max-width: 100%;
    }

    .team-grid-custom .team-member:nth-child(3),
    .team-grid-custom .team-member:nth-child(4),
    .team-grid-custom .team-member:nth-child(5) {
        width: 100%;
        max-width: 100%;
    }

    .team-modal-content {
        padding: 2rem;
        width: 95%;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}

/* More space under subtitle */
.page-header p {
  margin-bottom: 40px;
}

/* Booking section spacing */
.booking-section {
  margin-top: 0;
  margin-bottom: 4rem;
}

/* Calendar container */
.booking-card {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* Section label */
.booking-title {
  font-family: var(--font-display);
  font-size: 1.9rem;      /* bigger */
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
}



/* Slightly shrink Google calendar */
.booking-iframe-scale {
  transform: scale(0.94);
  transform-origin: top center;
  width: 106.4%;
  margin-left: -3.2%;
}

/* Control height */
.booking-iframe-scale iframe {
  width: 100%;
  height: 900px;
  border: 0;
}
