/*
Theme Name: Valorise
Theme URI: https://valorise.co.uk
Author: Valorise Limited
Description: Custom theme for Valorise Limited - Wealth from Waste. A digital platform for agri-food businesses to valorise their waste streams.
Version: 1.0
License: All rights reserved
Text Domain: valorise
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary-blue: #000099;
    --dark-navy: #00004d;
    --bg-cream: #fcfdf7;
    --text-dark: #000026;
    --footer-light: #c1f0ff;
    --footer-dark: #58a3bd;
    --grey-caption: #717171;
    --highlight-blue: #009;
    --link-blue: blue;
    --white: #fcfdfe;
    --shadow-1: 0 2px 4px rgba(0,0,0,.3), 0 1px 3px 1px rgba(0,0,0,.15);
}

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
    background: var(--bg-cream);
    color: var(--text-dark);
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1.6rem;
    font-weight: 200;
    line-height: 1.5;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: var(--text-dark); cursor: pointer; }
a:hover { color: var(--primary-blue); }
ul li { list-style: none; }
input, textarea, button { font-family: inherit; }
button { cursor: pointer; }

/* ===== LAYOUT ===== */
.brand-container {
    margin: 0 auto;
    padding: 0 0.5rem;
    width: 100%;
    max-width: 120rem;
}
@media (min-width: 576px) { .brand-container { max-width: 54rem; } }
@media (min-width: 768px) { .brand-container { max-width: 83rem; padding: 0 1.2rem; } }
@media (min-width: 992px) { .brand-container { max-width: 96rem; } }
@media (min-width: 1200px) { .brand-container { max-width: 120rem; } }

.brand-container-2 {
    margin: 0 auto;
    padding: 0 2.4rem;
    width: 100%;
}
@media (min-width: 1200px) { .brand-container-2 { max-width: 82.4rem; } }

.largest-padding { padding: 6rem 0 6.4rem; }
@media (max-width: 768px) { .largest-padding { padding: 4rem 0 4.4rem; } }

.d-flex { display: flex; }
.al-items { align-items: center; }
.js-center { justify-content: center; }
.js-between { justify-content: space-between; }
.text-center { text-align: center; }
.margin-top-64 { margin-top: 6.4rem; }
.margin-bottom-64 { margin-bottom: 6.4rem; }

/* ===== TYPOGRAPHY ===== */
.big-heading-1 {
    color: var(--highlight-blue);
    font-size: clamp(4rem, 6vw, 6.4rem);
    font-weight: 900;
    line-height: 7.8rem;
    letter-spacing: 0.015em;
}
@media (max-width: 768px) { .big-heading-1 { line-height: 6rem; } }

.big-heading-2 { color: var(--highlight-blue); font-size: 4.8rem; font-weight: 800; letter-spacing: 0.06em; }

.big-heading-3 { color: var(--highlight-blue); font-size: 3.2rem; letter-spacing: 0.015em; line-height: 3; }

.big-heading-4 { color: var(--highlight-blue); font-size: 2.4rem; font-weight: 550; letter-spacing: 0.015em; line-height: 3; }

.big-heading-5 { color: var(--dark-navy); font-size: 2rem; font-weight: 500; letter-spacing: 0.015em; line-height: 2; }

.heading-support-text {
    font-size: clamp(3rem, 3vw, 3.6rem);
    font-weight: 300;
    line-height: 8rem;
}
@media (max-width: 1280px) { .heading-support-text { max-width: 70rem; } }
@media (max-width: 768px) { .heading-support-text { line-height: 4rem; } }

.large-text-writeup {
    font-size: clamp(2rem, 4vw, 3.6rem);
    margin: 0 auto;
    max-width: 85.5%;
}
@media (max-width: 768px) { .large-text-writeup { font-size: clamp(1.8rem, 4vw, 3.6rem); } }

.line-height-xl { line-height: 4.8rem; }
.large-caption { color: var(--grey-caption); font-size: 1.4rem; font-weight: 550; line-height: 2; }
.text-bold-xl { color: var(--dark-navy); font-size: 2rem; font-weight: 600; }
.link { color: var(--link-blue); text-decoration: underline; }

/* ===== HEADER ===== */
.valorise-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.4rem 9.6rem;
    position: relative;
    z-index: 100;
    background: var(--bg-cream);
}
@media (max-width: 1024px) { .valorise-header { padding: 2rem 4rem; } }
@media (max-width: 768px) { .valorise-header { padding: 1.5rem 2rem; } }

.header-logo img { max-width: 15rem; }
@media (max-width: 1024px) { .header-logo img { max-width: 10rem; } }

.header-nav {
    display: flex;
    align-items: center;
    gap: 3.27rem;
    color: var(--dark-navy);
}
@media (max-width: 1000px) { .header-nav { display: none; } }

.header-nav a { font-weight: 300; transition: color 0.3s; }
.header-nav a:hover { color: var(--primary-blue); font-weight: 400; }

/* Dropdown */
.nav-dropdown { position: relative; padding-bottom: 1rem; margin-bottom: -1rem; }
.nav-dropdown-btn {
    background: transparent;
    border: none;
    color: inherit;
    font-size: inherit;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 0;
}
.nav-dropdown-btn:hover { color: var(--primary-blue); }
.nav-dropdown-btn .arrow { font-size: 0.8em; transition: transform 0.3s; }
.nav-dropdown:hover .arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -1rem;
    background: var(--white);
    border-radius: 4px;
    box-shadow: var(--shadow-1);
    min-width: max-content;
    z-index: 9999;
    padding: 0.5rem 0;
}
.nav-dropdown:hover .nav-dropdown-menu { display: flex; flex-direction: column; }
.nav-dropdown-menu a { padding: 1.2rem 2rem; transition: color 0.3s, background 0.3s; display: block; }
.nav-dropdown-menu a:hover { color: var(--primary-blue); font-weight: 600; background: #f0f8ff; }

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 2.4rem;
    color: var(--dark-navy);
}
@media (max-width: 1000px) { .mobile-menu-toggle { display: block; } }

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 2rem;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: var(--shadow-1);
    z-index: 99;
}
.mobile-nav.active { display: flex; }
.mobile-nav a { padding: 1.2rem 1.9rem; font-weight: 300; }
.mobile-nav a:hover { color: var(--primary-blue); }
.mobile-nav .sub-heading { padding: 1rem 1.9rem; font-weight: 600; color: var(--highlight-blue); font-size: 1.4rem; }

/* ===== HERO BANNER ===== */
.hero-banner {
    background: linear-gradient(135deg, #e8f4f8 0%, #d1ecf1 30%, #b8e0e8 60%, #a0d5e0 100%);
    padding: 10rem 9.6rem;
    position: relative;
    overflow: hidden;
    min-height: 50rem;
    display: flex;
    align-items: center;
}
@media (max-width: 768px) { .hero-banner { padding: 6rem 2rem; min-height: 35rem; } }

.hero-banner h1 { margin-bottom: 2rem; }
.hero-banner .heading-support-text { margin-bottom: 4rem; }

/* Climate/Section Banner */
.climate-banner {
    background: linear-gradient(135deg, #e8f4f8 0%, #c1f0ff 100%);
    padding: 6rem 9.6rem;
    text-align: center;
}
@media (max-width: 768px) { .climate-banner { padding: 4rem 2rem; } }
.climate-banner h2 { color: var(--highlight-blue); font-size: 4.8rem; font-weight: 800; }

/* ===== BRAND BUTTON ===== */
.brand-btn {
    display: inline-block;
    padding: 1.4rem 3.6rem;
    background: var(--primary-blue);
    color: #fff;
    border: 2px solid var(--primary-blue);
    border-radius: 4px;
    font-size: 1.6rem;
    font-weight: 500;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s;
}
.brand-btn:hover {
    background: transparent;
    color: var(--primary-blue);
}
.brand-btn.large { padding: 1.8rem 4.8rem; font-size: 1.8rem; }

/* ===== HOMEPAGE SECTIONS ===== */
.homepage-article {
    padding: 4rem 0;
}
.homepage-article__upper-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}
@media (max-width: 768px) {
    .homepage-article__upper-content { flex-direction: column; }
}
.homepage-article-text { flex: 1; }
.homepage-article-pic { flex: 1; text-align: center; }
.homepage-article-pic img { max-width: 40rem; margin: 0 auto; }

.homepage-list { margin-top: 2rem; }
.homepage-list-item {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-weight: 350;
    line-height: 1.8;
}
.homepage-list-item::before {
    content: "•";
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 2rem;
}

/* Services listing */
.services-listing {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}
.services-list-item figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}
.services-list-item figure img { width: 6rem; height: 6rem; margin: 0 auto; }

/* Marketplace section on homepage */
.market-value { font-size: 1.8rem; font-weight: 350; margin: 2rem 0; }

/* Case study cards */
.case-studies__listing {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
}
.case-study-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-1);
    overflow: hidden;
    width: 30rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.case-study-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.case-study-card img { width: 100%; height: 18rem; object-fit: cover; }
.case-study-card-body { padding: 2rem; }
.case-study-card-body h4 { color: var(--highlight-blue); font-size: 2rem; font-weight: 600; margin-bottom: 1rem; }
.case-study-card-body p { font-weight: 350; font-size: 1.4rem; line-height: 1.6; color: var(--text-dark); }

.case-studies__btn-block { text-align: center; margin-top: 4rem; }

/* ===== SUBSCRIBE BANNER ===== */
.subscribe-banner {
    background: linear-gradient(135deg, #e8f4f8 0%, #c1f0ff 100%);
    padding: 6rem 2rem;
    text-align: center;
    margin-top: 4rem;
}
.subscribe-banner__inner { max-width: 60rem; margin: 0 auto; }
.subscribe-consent { font-size: 1.4rem; margin: 2rem 0; font-weight: 350; }
.subscribe-form { display: flex; gap: 1rem; max-width: 50rem; margin: 2rem auto; }
@media (max-width: 576px) { .subscribe-form { flex-direction: column; } }
.subscribe-form__input-block {
    flex: 1;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.8rem 1.2rem;
}
.subscribe-form__input-block input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1.6rem;
    padding: 0.4rem;
}
.subscribe-form-agreement { font-size: 1.2rem; color: var(--grey-caption); margin-top: 1.5rem; }

/* ===== ABOUT PAGE ===== */
.about-section {
    padding: 4rem 9.6rem;
}
@media (max-width: 768px) { .about-section { padding: 4rem 2rem; } }
.about-section h3 { margin-bottom: 2rem; }
.about-section h5 { margin-bottom: 3rem; }
.about-section .d-flex { gap: 4rem; }
@media (max-width: 768px) { .about-section .d-flex { flex-direction: column; } }
.about-section p { font-weight: 350; line-height: 1.8; margin-bottom: 2rem; }

/* Team section */
.team-section { padding: 4rem 9.6rem; }
@media (max-width: 768px) { .team-section { padding: 4rem 2rem; } }
.team-section h3 { margin-bottom: 2rem; }
.team-section h5 { margin-bottom: 1rem; }
.team-section > p { margin-bottom: 3rem; font-weight: 350; }
.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}
.team-member {
    text-align: center;
    max-width: 30rem;
}
.team-member .avatar {
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
}
.team-member h5 { margin-bottom: 0.5rem; }
.team-member .social-links { display: flex; gap: 1rem; justify-content: center; margin-top: 1rem; }
.team-member .social-links a img { width: 2.4rem; height: 2.4rem; }
.team-bio { margin-top: 1.5rem; font-size: 1.4rem; font-weight: 350; line-height: 1.7; text-align: left; }

/* ===== SERVICES ===== */
.services-page-content { padding: 4rem 9.6rem; }
@media (max-width: 768px) { .services-page-content { padding: 4rem 2rem; } }
.services-page-content p { font-weight: 350; line-height: 1.8; margin-bottom: 2rem; }

/* ===== CASE STUDIES ===== */
.case-studies-page { padding: 4rem 0; }
.case-studies-writeup { margin-bottom: 2rem; }
.case-studies--heading { margin-bottom: 4rem; }
.case-studies-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    padding: 2rem 0;
}

/* Case study detail */
.case-study { padding: 4rem 0; }
.case-study__intro { margin-bottom: 4rem; }
.case-study__image-block { text-align: center; margin: 3rem auto; }
.case-study__image-block img { max-width: 60rem; margin: 0 auto; border-radius: 8px; }
.case-study__text { font-weight: 350; line-height: 1.8; margin-bottom: 2rem; }
.case-study__features {
    background: linear-gradient(135deg, #e8f4f8, #c1f0ff);
    padding: 2rem 3rem;
    border-left: 4px solid var(--primary-blue);
    margin: 2rem 0;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.8;
}
.case-study__text-link { color: var(--link-blue); text-decoration: underline; }
.case-study__external-links { margin-top: 1rem; padding-left: 2rem; }
.case-study__external-links li { padding: 0.5rem 0; list-style: disc; }

/* ===== MARKETPLACE ===== */
.marketplace-content { padding: 4rem 9.6rem; }
@media (max-width: 768px) { .marketplace-content { padding: 4rem 2rem; } }
.marketplace-content h3 { margin-top: 4rem; margin-bottom: 1.5rem; }
.marketplace-content h4 { margin-top: 3rem; margin-bottom: 1.5rem; }
.marketplace-content h5 { margin: 2rem 0; }
.marketplace-content p { font-weight: 350; line-height: 1.8; margin-bottom: 1.5rem; }

.marketplace-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0 4rem;
    font-size: 1.5rem;
}
.marketplace-table th {
    background: var(--primary-blue);
    color: #fff;
    padding: 1.2rem 2rem;
    text-align: left;
    font-weight: 500;
}
.marketplace-table td {
    padding: 1.2rem 2rem;
    border-bottom: 1px solid #ddd;
    font-weight: 350;
}
.marketplace-table tr:nth-child(even) td { background: #f8f9fa; }

/* ===== CONTACT ===== */
.contact-content { padding: 4rem 0; }
.contact-writeup { margin-bottom: 4rem; }
.contact-block {
    display: flex;
    gap: 6rem;
    padding: 0 9.6rem;
    flex-wrap: wrap;
}
@media (max-width: 768px) { .contact-block { padding: 0 2rem; flex-direction: column; } }

.contact-info { flex: 1; min-width: 28rem; }
.contact-info h4 { color: var(--highlight-blue); font-size: 2.4rem; font-weight: 550; margin-bottom: 2rem; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.contact-item img { width: 2.4rem; height: 2.4rem; margin-top: 0.3rem; }
.contact-item span, .contact-item address { font-weight: 350; font-style: normal; }
.contact-item address span { display: block; }

.contact-form {
    flex: 1.5;
    min-width: 30rem;
    background: #fff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: var(--shadow-1);
}
.contact-form .form-group { margin-bottom: 2rem; }
.contact-form label {
    display: block;
    color: var(--dark-navy);
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 0.5rem;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1.6rem;
    font-family: inherit;
}
.contact-form textarea { min-height: 15rem; resize: vertical; }
.contact-form .form-submit { margin-top: 2rem; }

/* ===== FOOTER ===== */
.valorise-footer { background: var(--footer-light); font-size: 1.4rem; }

.footer-upper {
    display: flex;
    justify-content: space-between;
    padding: 4.8rem 9.6rem;
    gap: 4rem;
    flex-wrap: wrap;
}
@media (max-width: 768px) { .footer-upper { padding: 3rem 2rem; flex-direction: column; } }

.footer-sitemap { flex: 2.5; }
.footer-sitemap-heading { color: var(--highlight-blue); font-weight: 600; margin-bottom: 1rem; }
.footer-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.footer-links-group { display: flex; flex-direction: column; min-width: 18rem; }
.footer-links-group a { font-weight: 350; padding: 0.8rem 0; }
.footer-links-group a:hover { text-decoration: underline; }

.footer-contact { flex: 0.5; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.footer-contact-item img { width: 2rem; height: 2rem; }
.footer-contact-item span, .footer-contact-item address { font-weight: 350; font-style: normal; }
.footer-contact-item address span { display: block; }

.footer-sdgs {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 9.6rem;
    flex-wrap: wrap;
}
@media (max-width: 768px) { .footer-sdgs { padding: 2rem; justify-content: center; } }
.footer-sdgs img { width: 6rem; height: auto; }

.footer-innovate {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 9.6rem;
}
@media (max-width: 768px) { .footer-innovate { padding: 2rem; flex-direction: column; text-align: center; } }
.footer-innovate img { width: 15rem; }
.footer-innovate span { font-weight: 350; }

.footer-lower {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--footer-dark);
    color: var(--white);
    padding: 2.4rem 9.6rem;
    flex-wrap: wrap;
    gap: 1rem;
}
@media (max-width: 768px) { .footer-lower { padding: 1.5rem 2rem; flex-direction: column; text-align: center; } }
.footer-lower a { color: var(--white); text-decoration: underline; padding: 0.5rem 1.5rem; font-weight: 500; }
.footer-lower a:hover { color: #ee6352; }
.footer-copyright { font-weight: 300; }

/* ===== UTILITY ===== */
.wp-content p { margin-bottom: 1.5rem; }
.coming-soon-block img { max-width: 40rem; margin: 2rem auto; }
.page-content { min-height: 60vh; }

/* ===== HERO LABEL ===== */
.hero-label {
    font-size: 1.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

/* ===== BUTTON VARIANTS ===== */
.brand-btn.outline {
    background: transparent;
    color: var(--primary-blue);
}
.brand-btn.outline:hover { background: var(--primary-blue); color: #fff; }
.brand-btn.outline-light {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.brand-btn.outline-light:hover { background: #fff; color: var(--primary-blue); }

/* ===== VALUE PILLARS ===== */
.value-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}
.value-pillar {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.value-pillar:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.pillar-icon { font-size: 3.2rem; display: block; margin-bottom: 1.5rem; }
.value-pillar h4 { margin-bottom: 1rem; }
.value-pillar p { font-weight: 350; line-height: 1.7; font-size: 1.5rem; }

/* ===== SCIENCE BANNER ===== */
.science-banner {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
    padding: 6rem 2rem;
}

/* ===== REGULATORY PAGE ===== */
.regulatory-content { padding: 0 0 6rem; }
.reg-section {
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}
.reg-section:last-of-type { border-bottom: none; }
.reg-section h3 { margin-bottom: 2rem; }
.reg-section p { font-weight: 350; line-height: 1.8; margin-bottom: 1.5rem; }
.reg-section strong { font-weight: 550; }

/* ===== OUR SCIENCE PAGE ===== */
.science-content { padding: 0 0 6rem; }

.track-record-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.track-stat {
    background: linear-gradient(135deg, #e8f4f8 0%, #c1f0ff 100%);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 3.6rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
}
.stat-label {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--dark-navy);
    margin-top: 0.5rem;
}

/* ===== LISTING CTA ===== */
.listing-cta {
    background: linear-gradient(135deg, #e8f4f8 0%, #c1f0ff 100%);
    padding: 4rem;
    border-radius: 8px;
    margin: 4rem 0;
}
.listing-cta h3 { margin-bottom: 1.5rem; }
.listing-cta p { font-weight: 350; line-height: 1.8; }

/* ===== WORDPRESS SPECIFIC ===== */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ===== CONTACT FORM 7 ===== */
.contact-form .wpcf7 { width: 100%; }
.contact-form .wpcf7-form .form-group { margin-bottom: 2rem; }
.contact-form .wpcf7-form label {
    display: block;
    color: var(--dark-navy);
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 0.5rem;
}
.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1.6rem;
    font-family: inherit;
    box-sizing: border-box;
}
.contact-form .wpcf7-form textarea { min-height: 15rem; resize: vertical; }
.contact-form .wpcf7-form .form-submit { margin-top: 2rem; }
.contact-form .wpcf7-form input[type="submit"] {
    display: inline-block;
    padding: 1.4rem 3.6rem;
    background: var(--primary-blue);
    color: #fff;
    border: 2px solid var(--primary-blue);
    border-radius: 4px;
    font-size: 1.6rem;
    font-weight: 500;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s;
}
.contact-form .wpcf7-form input[type="submit"]:hover {
    background: transparent;
    color: var(--primary-blue);
}
.contact-form .wpcf7 form .wpcf7-response-output {
    font-size: 1.4rem;
    padding: 1.5rem 2rem;
    border-radius: 4px;
    margin: 2rem 0 0;
}
.contact-form .wpcf7 form.sent .wpcf7-response-output {
    border-color: #28a745;
    background: #d4edda;
    color: #155724;
}
.contact-form .wpcf7 form.failed .wpcf7-response-output,
.contact-form .wpcf7 form.aborted .wpcf7-response-output {
    border-color: #dc3545;
    background: #f8d7da;
    color: #721c24;
}
.contact-form .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 1.3rem;
    margin-top: 0.3rem;
}
