/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Navigation */
.navbar {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.nav-brand a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #FF5A47;
}

.brand-suffix {
    font-size: 14px;
    font-weight: 400;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

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

.btn-talk {
    background-color: #FF5A47;
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.btn-talk:hover {
    background-color: #e64a38;
    color: #fff !important;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/peacock.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 70px;
    padding: 80px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 900px;
    letter-spacing: 0.5px;
}

.btn-cta {
    display: inline-block;
    background-color: #FF5A47;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #e64a38;
}

/* Graph Section */
.graph-section {
    background-image: url('../images/graph.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.graph-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.text-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.graph-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Challenges Section */
.challenges-section {
    background-color: #e8e8e8;
    padding: 80px 20px;
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FF5A47;
    margin-bottom: 15px;
}

.section-divider {
    width: 100%;
    height: 2px;
    background-color: #FF5A47;
    margin-bottom: 50px;
}

.challenges-heading {
    font-size: 36px;
    font-weight: 400;
    color: #333;
    margin-bottom: 50px;
    text-align: left;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.challenge-card {
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card-header {
    background-color: #3d4f5c;
    color: #fff;
    padding: 30px 25px;
    text-align: center;
}

.card-header h4 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.card-header .subtitle {
    font-size: 22px;
    font-weight: 400;
    margin: 0;
}

.card-content {
    padding: 30px 25px;
}

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.card-content p:last-child {
    margin-bottom: 0;
}

/* Cost Section */
.cost-section {
    margin-top: 80px;
}

.cost-heading {
    font-size: 36px;
    font-weight: 400;
    color: #333;
    margin-bottom: 50px;
}

.cost-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cost-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cost-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.cost-item .arrow {
    color: #FF5A47;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.cost-item p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.cost-item strong {
    font-weight: 700;
}

.cost-highlight {
    background-color: #6b87b8;
    padding: 50px 40px;
    color: #fff;
}

.cost-highlight p {
    font-size: 24px;
    line-height: 1.6;
    margin: 0;
}

/* Reality Check Section */
.reality-check-section {
    background-color: #e8e8e8;
    padding: 80px 20px;
}

.reality-heading {
    font-size: 36px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
}

.reality-subheading {
    font-size: 18px;
    color: #333;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.stat-card {
    background-color: #4a5d6f;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 80px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1;
}

.stat-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.stat-source {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
    margin: 0;
}

/* Testimonial Section */
.testimonial-section {
    background-image: url('../images/green-background-scaled.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    color: #fff;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.testimonial-left h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.3;
}

.testimonial-left p {
    font-size: 18px;
    line-height: 1.7;
}

.testimonial-right {
    position: relative;
    padding: 0 40px;
}

.quote-left,
.quote-right {
    font-size: 120px;
    line-height: 1;
    opacity: 0.3;
    position: absolute;
    font-family: Georgia, serif;
}

.quote-left {
    top: -40px;
    left: 0;
}

.quote-right {
    bottom: -40px;
    right: 0;
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Solution Section */
.solution-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.solution-heading {
    font-size: 36px;
    font-weight: 400;
    color: #333;
    margin-bottom: 60px;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.framework-card {
    background-color: #fff;
    padding: 0;
    text-align: center;
}

.framework-icon {
    padding: 40px 20px;
    background-color: #fff;
}

.framework-icon img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: block;
}

.framework-title {
    font-size: 20px;
    font-weight: 600;
    color: #FF5A47;
    margin: 25px 20px 20px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.framework-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0 20px 20px;
    text-align: left;
}

.framework-additional {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0 20px 30px;
    text-align: left;
}

.framework-description strong {
    font-weight: 700;
}

/* Testimonial Section 2 */
.testimonial-section-2 {
    background-image: url('../images/blue-background-scaled.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    color: #fff;
}

/* Client Success Stories Section */
.client-stories-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.section-title-large {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FF5A47;
    margin-bottom: 15px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.story-card {
    background-color: #fff;
    padding: 40px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.story-logo {
    margin-bottom: 30px;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.story-logo img {
    max-width: 150px;
    height: auto;
}

.story-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
    flex-grow: 1;
}

.story-author {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.story-author strong {
    font-weight: 700;
}

.story-role {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
    padding: 80px 20px;
}

.faq-heading {
    font-size: 36px;
    font-weight: 400;
    color: #333;
    margin-bottom: 40px;
}

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

.faq-item {
    border-bottom: 2px solid #e8e8e8;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 32px;
    color: #FF5A47;
    font-weight: 300;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 25px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    background-image: url('../images/form-sec-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    color: #fff;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.form-left h2 {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.4;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input {
    padding: 18px 20px;
    font-size: 16px;
    border: none;
    outline: none;
    font-family: inherit;
}

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

.form-submit-btn {
    background-color: #FF5A47;
    color: #fff;
    padding: 18px 40px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.form-submit-btn:hover {
    background-color: #e64a38;
}

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

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 50px 60px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-content h3 {
    font-size: 32px;
    color: #FF5A47;
    margin-bottom: 20px;
}

.modal-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF5A47;
}

.footer-certifications {
    display: flex;
    justify-content: center;
    align-items: center;
}

.certification-badges {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.certification-badges img {
    height: 80px;
    width: auto;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.footer-contact strong {
    color: #333;
    font-weight: 600;
}

.footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #e8e8e8;
}

.footer-bottom p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #FF5A47 0%, #e64a38 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: #fff;
    margin-top: 70px;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 22px;
    font-weight: 300;
}

.about-section {
    padding: 80px 20px;
    background-color: #fff;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.mission-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mission-card {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.mission-card h3 {
    font-size: 28px;
    color: #FF5A47;
    margin-bottom: 20px;
}

.mission-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.why-choose-section {
    padding: 80px 20px;
    background-color: #fff;
}

.section-heading {
    font-size: 36px;
    font-weight: 400;
    color: #333;
    margin-bottom: 50px;
    text-align: center;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-item {
    margin-bottom: 35px;
}

.why-item:last-child {
    margin-bottom: 0;
}

.why-item h4 {
    font-size: 22px;
    color: #333;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.approach-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.approach-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.approach-item:last-child {
    margin-bottom: 0;
}

.approach-reverse {
    direction: rtl;
}

.approach-reverse > * {
    direction: ltr;
}

.approach-text h3 {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.approach-text p:last-child {
    margin-bottom: 0;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.values-section {
    background-color: #fff;
    padding: 80px 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: #f8f9fa;
    padding: 35px 30px;
    border-left: 4px solid #FF5A47;
}

.value-card h4 {
    font-size: 20px;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.about-cta-section {
    background: linear-gradient(135deg, #FF5A47 0%, #e64a38 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.about-cta-section h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 20px;
}

.about-cta-section p {
    font-size: 20px;
    margin-bottom: 35px;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #FF5A47 0%, #e64a38 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: #fff;
    margin-top: 70px;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact-info-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.contact-info-card {
    background-color: #fff;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-radius: 8px;
}

.contact-icon {
    color: #FF5A47;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 22px;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.contact-info-card a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #FF5A47;
}

.contact-form-page-section {
    padding: 80px 20px;
    background-color: #fff;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-wrapper h2 {
    font-size: 36px;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.form-description {
    font-size: 18px;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
}

.contact-page-form {
    background-color: #f8f9fa;
    padding: 50px 40px;
    border-radius: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-page-form .form-input {
    padding: 15px 18px;
    font-size: 16px;
    border: 1px solid #ddd;
    outline: none;
    font-family: inherit;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.contact-page-form .form-input:focus {
    border-color: #FF5A47;
}

.contact-page-form .form-submit-btn {
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .graph-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .challenges-heading {
        font-size: 28px;
    }

    .cost-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cost-heading {
        font-size: 28px;
    }

    .cost-highlight p {
        font-size: 20px;
    }

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

    .reality-heading {
        font-size: 28px;
    }

    .stat-number {
        font-size: 60px;
    }

    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-left h2 {
        font-size: 28px;
    }

    .testimonial-text {
        font-size: 20px;
    }

    .quote-left,
    .quote-right {
        font-size: 80px;
    }

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

    .solution-heading {
        font-size: 28px;
    }

    .framework-title {
        font-size: 18px;
        min-height: auto;
    }

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

    .section-title-large {
        font-size: 24px;
    }

    .faq-heading {
        font-size: 28px;
    }

    .faq-question h4 {
        font-size: 18px;
    }

    .form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-left h2 {
        font-size: 28px;
    }

    .modal-content {
        padding: 40px 30px;
    }

    .modal-content h3 {
        font-size: 26px;
    }

    .modal-content p {
        font-size: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .certification-badges img {
        height: 60px;
    }

    .footer-certifications {
        order: 3;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .about-content h2 {
        font-size: 28px;
    }

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

    .why-choose-content {
        grid-template-columns: 1fr;
    }

    .approach-item {
        grid-template-columns: 1fr;
    }

    .approach-reverse {
        direction: ltr;
    }

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

    .about-cta-section h2 {
        font-size: 28px;
    }

    .about-cta-section p {
        font-size: 18px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

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

    .contact-form-wrapper h2 {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-page-form {
        padding: 40px 25px;
    }
}
