/* ===== CSS VARIABLES ===== */
:root {
    --primary: #1e2a35;
    --secondary: #e8cba4;
    --accent: #d96a53;
    --background: #fdf7eb;
    --white: #FFFFFF;
    --dark: #1e2a35;
    --light-text: #5a6670;
    --shadow: 0 4px 6px rgba(30, 42, 53, 0.08);
    --shadow-lg: 0 10px 25px rgba(30, 42, 53, 0.12);
    --transition: all 0.3s ease;
}

/* ===== RESET & GENERAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--background);
    overflow-x: hidden;
}

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

h1, h2, h3 {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary);
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

/* ===== NAVIGATION ===== */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0.75rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.85;
}

.logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.nav-links a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.nav-links .cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px;
    border: none !important;
}

.nav-links .cta:hover {
    background: var(--primary) !important;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #0f1a24 100%);
    color: var(--white);
    padding: 8rem 2rem;
    text-align: center;
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--secondary);
}

/* ===== PAGE HERO (for internal pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #0f1a24 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero .hero-subtitle {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--primary);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.btn-card {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-card:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* ===== INTRO SECTION WITH IMAGE ===== */
.intro {
    padding: 5rem 2rem;
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    transition: var(--transition);
}

.intro-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(30, 42, 53, 0.15);
}

.intro-text {
    text-align: left;
}

.intro-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-text .btn-secondary {
    margin-top: 1rem;
}

/* ===== COACHING FIT SECTION ===== */
.coaching-fit {
    padding: 5rem 2rem;
    background: var(--background);
}

.fit-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.fit-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
    color: var(--dark);
    font-size: 1rem;
    flex: 0 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    max-width: 320px;
}

/* ===== WAYS TO WORK TOGETHER SECTION ===== */
.ways-to-work {
    padding: 5rem 2rem;
    background: var(--white);
}

.ways-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.way-card {
    background: var(--background);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 3px solid var(--accent);
}

.way-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.way-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.way-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 0;
}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications-section {
    padding: 5rem 2rem;
    background: var(--background);
}

.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cert-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.cert-badge img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.mba-badge {
    width: 150px;
    height: 270px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.mba-image {
    max-width: 140px;
    max-height: 260px;
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 0.5rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 5rem 2rem;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.card {
    background: var(--background);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: none;
    box-shadow: var(--shadow);
    border-color: transparent;
}

.card.featured {
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(217, 106, 83, 0.2);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.card-list {
    text-align: left;
    list-style-position: inside;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.card-list li {
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: auto;
}

.price span {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 400;
}

/* ===== ORGANIZATIONAL SECTION ===== */
.organizational-section {
    padding: 5rem 2rem;
    background: var(--background);
}

.organizational-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.org-card {
    background: var(--white);
    padding: 1.75rem 1.75rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent);
    flex: 0 1 300px;
text-align: center;
}

.org-card:hover {
    box-shadow: var(--shadow-lg);
}

.org-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

/* ===== ASSESSMENTS SECTION ===== */
.assessments-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.assessment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.assessment-card {
    background: var(--background);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    flex: 0 1 360px;
    text-align: center;
}

.assessment-card h3 {
    margin: 1rem 0 0.75rem;
    color: var(--primary);
}

.assessment-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.assessment-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.clifton-icon {
  width: auto !important;
  height: 28px !important;
  max-width: 140px;
  object-fit: contain;
}
/* Remove lateral slide hover on legacy assessment items */
.assessment-item,
.assessment-item:hover {
    transform: none;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 5rem 2rem;
    background: var(--white);
}

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

.testimonial {
    background: var(--background);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border-left: 4px solid var(--secondary);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial p {
    font-style: italic;
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.client-name {
    font-weight: 600;
    color: var(--primary);
    text-align: right;
    margin: 0;
    font-style: normal;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 5rem 2rem;
    background: var(--white);
}

.about .container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    display: block;
    margin: 0 auto;
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(30, 42, 53, 0.15);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Approach */
.approach-section {
    padding: 4rem 2rem;
    background: var(--background);
}

.approach {
    max-width: 900px;
    margin: 0 auto;
}

.approach h2 {
    margin-bottom: 1.5rem;
}

.approach p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

/* Credentials */
.credentials-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.credentials {
    max-width: 1000px;
    margin: 0 auto;
}

.credentials h2 {
    margin-bottom: 1rem;
}

.credentials-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.credentials-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.credentials-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--background);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
    color: var(--dark);
    font-size: 1rem;
}

.credentials-list li img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.credentials-list li span {
    line-height: 1.4;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 5rem 2rem;
    background: var(--white);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 3rem auto;
    max-width: 1000px;
    justify-items: center;
}

.contact-card {
    background: var(--background);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-card .benefits-list {
    text-align: left;
    margin: 1.5rem auto;
    max-width: 420px;
}

.contact-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-card > p {
    text-align: center;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--light-text);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.contact-form button {
    margin-top: 0.5rem;
}

.response-time {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 1rem;
    font-style: italic;
    text-align: center;
}

.small-text {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-top: 0.5rem;
    text-align: center;
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
    padding: 4rem 2rem;
    background: var(--background);
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 2rem auto;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--background);
    padding: 2rem;
    border-radius: 10px;
    border-top: 3px solid var(--accent);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item p {
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 2rem;
    background: var(--background);
    text-align: center;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
}

.footer p {
    margin: 0;
    color: var(--white);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .intro-content {
        grid-template-columns: 300px 1fr;
        gap: 3rem;
    }

    .intro-image img {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .logo-image {
        height: 38px;
    }

    .hero {
        padding: 5rem 2rem;
    }

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

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

    .page-hero {
        padding: 4rem 2rem;
    }

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

    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-image {
        order: 1;
        max-width: 350px;
        margin: 0 auto;
    }

    .intro-text {
        order: 2;
        text-align: center;
    }

    .intro-text h2 {
        text-align: center;
    }

    .intro-image img {
        max-width: 100%;
    }

    .fit-cards {
        flex-direction: column;
        align-items: center;
    }

    .fit-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

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

    .certifications-grid {
        gap: 1.5rem;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

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

    .contact-options {
        grid-template-columns: 1fr;
    }

    .credentials-list {
        grid-template-columns: 1fr;
    }

    .organizational-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .assessment-list {
        grid-template-columns: 1fr;
    }

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

    .contact-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 80px;
        width: auto;
    }

    .btn-primary {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .certifications-grid {
        gap: 1rem;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: 1;
        max-width: 350px;
        margin: 0 auto;
    }

    .about-image img {
        max-width: 100%;
    }

    .about-text {
        order: 2;
        text-align: left;
    }
}
