/* css/styles.css */

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

/* Header and Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #5a4a3a;
}

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

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #5a4a3a;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #666;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0077b5;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 120px 2rem 80px;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text .description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.hero-image {
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
}

.hero-image .headshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.cta-button {
    background: #5a4a3a;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #4a3a2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90, 74, 58, 0.3);
}

/* Trusted By Section */
.trusted-by {
    background: #ffffff;
    padding: 50px 2rem;
    text-align: center;
}

.trusted-by h3 {
    font-size: 1.1rem;
    color: #999;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    background: #f8f8f8;
    padding: 2rem 3rem;
    border-radius: 8px;
    font-weight: 600;
    color: #5a4a3a;
    min-width: 250px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-item:hover {
    background: #f0f0f0;
}

.logo-item .client-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Section Styling */
.section {
    padding: 70px 2rem;
}

.section:nth-child(even) {
    background: #ffffff;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: left;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Process Section */
.process-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.process-image {
    height: 350px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-top: 1rem;
}

.process-image .speaking-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.process-steps {
    display: grid;
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.step-icon {
    background: linear-gradient(135deg, #5a4a3a, #4a3a2a);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #5a4a3a;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    line-height: 1.3;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.process-details {
    text-align: left;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 15px;
}

.process-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.process-details .read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.process-details .read-more-btn::after {
    content: "→";
    transition: transform 0.3s ease;
}

.process-details .read-more-btn:hover::after {
    transform: translateX(3px);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #5a4a3a;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-tagline {
    font-size: 1.25rem;
    color: #5a4a3a;
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.3;
    min-height: 3.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-icon {
    background: linear-gradient(135deg, #5a4a3a, #4a3a2a);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.service-bullets {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-bullets li {
    color: #666;
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
}

.service-bullets li:before {
    content: "•";
    color: #5a4a3a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.learn-more-link {
    color: #5a4a3a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
    margin-top: auto;
}

.learn-more-link:hover {
    border-bottom-color: #5a4a3a;
}

/* Case Studies */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.case-study-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border-top: 4px solid #5a4a3a;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.case-study-image {
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.case-study-content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-study-card h4 {
    color: #5a4a3a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-height: 2.6rem;
}

.case-study-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.case-study-card .read-more-btn {
    margin-top: auto;
}

.read-more-btn {
    background: none;
    border: none;
    color: #5a4a3a;
    cursor: pointer;
    font-weight: 600;
    padding: 0;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.read-more-btn:hover {
    border-bottom-color: #5a4a3a;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: none;
}

.testimonial.active {
    display: block;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-org-logo {
    background: #f8f8f8;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.8rem;
    text-align: center;
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.testimonial-meta {
    text-align: left;
}

.testimonial-author {
    font-weight: 600;
    color: #5a4a3a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.testimonial-title {
    color: #999;
    font-size: 0.95rem;
}

.testimonial-text {
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
    text-align: left;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #5a4a3a;
    color: #5a4a3a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 10;
}

.carousel-nav:hover {
    background: #5a4a3a;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: -60px;
}

.carousel-nav.next {
    right: -60px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #5a4a3a;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    position: relative;
}

.contact-image {
    height: 280px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

.contact-image .group-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.contact-info h3 {
    color: #5a4a3a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #5a4a3a;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a4a3a;
}

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

.submit-btn {
    background: #5a4a3a;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #4a3a2a;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-social a {
    color: white;
    font-size: 1.2rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #0077b5;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.modal h3 {
    color: #5a4a3a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.modal p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

    .section {
        padding: 50px 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .services-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    /* Allow proper wrapping on mobile */
    .service-tagline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        min-height: auto;
    }

    .step-content h3 {
        line-height: 1.4;
    }

    .case-study-card h4 {
        min-height: auto;
    }

    /* Mobile carousel adjustments */
    .testimonial {
        padding: 2rem 1rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .carousel-nav.prev {
        left: -20px;
    }

    .carousel-nav.next {
        right: -20px;
    }

    .logos-grid {
        gap: 1.5rem;
    }

    .logo-item {
        min-width: 120px;
        height: 70px;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-content {
        justify-content: center;
        text-align: center;
    }

    .modal-content {
        margin: 10% 1rem;
        padding: 1.5rem;
    }

    .trusted-by {
        padding: 40px 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero {
        padding: 100px 1rem 60px;
    }

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

    .testimonial {
        padding: 2rem 1rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .process-steps {
        gap: 1.5rem;
    }

    .process-step {
        padding: 1rem;
    }

    .logo-item {
        min-width: 100px;
        height: 60px;
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }

    .logo-item .client-logo {
        max-height: 40px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}