/* 
 * Business Valuation Calculator Styles
 * Using Montserrat font as specified
 */

/* Logo styles */
.logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 10px;
}

/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    padding: 20px;
}

/* Calculator container */
.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

/* Header styles */
.calculator-header {
    text-align: center;
    margin-bottom: 30px;
}

.logo-container {
    margin-bottom: 15px;
}

.calculator-header h1 {
    font-size: 24px;
    font-weight: 800;
}

.black-title {
    color: #000;
}

/* Form styles */
.calculator-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #555;
}

select, input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

select:focus, input:focus {
    outline: none;
    border-color: #00B050;
}

/* Results styles */
.results-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.results-container h2 {
    color: #00B050;
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.results-table {
    margin-bottom: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

table td:first-child {
    font-weight: 500;
    width: 60%;
}

.highlight-row {
    background-color: #e6f7e6;
    font-weight: 600;
}

.highlight-row td {
    padding: 15px 12px;
    color: #00B050;
}

.footnote {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
}

/* PDF section styles */
.pdf-section {
    margin: 30px 0;
    text-align: center;
}

.lead-capture {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.lead-capture h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

/* Button styles */
button {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.primary-btn {
    background-color: #00B050;
    color: white;
}

.primary-btn:hover {
    background-color: #009040;
}

.secondary-btn {
    background-color: #ff6600;
    color: white;
    font-weight: 500;
}

.secondary-btn:hover {
    background-color: #e55c00;
}

.secondary-btn i {
    margin-right: 8px;
}

/* Disclaimer styles */
.disclaimer {
    margin-top: 30px;
    font-size: 13px;
    color: #777;
}

.disclaimer p {
    margin-bottom: 10px;
}

.disclaimer .cta {
    color: #00B050;
    font-weight: 500;
}

/* Responsive styles */
@media (max-width: 768px) {
    .calculator-container {
        padding: 20px;
    }
    
    button {
        width: 100%;
    }
}

/* Hide Manus attribution - more aggressive approach */
a[href*="manus"],
a:has(img[alt*="Manus"]),
a:has(span:contains("Manus")),
a:contains("Made with Manus"),
a:contains("Manus"),
[class*="manus"],
[id*="manus"],
[data-*="manus"],
a[href*="Create my website"],
a:contains("Create my website"),
a[href*="create-my-website"],
a:contains("create-my-website"),
body > a:last-child,
body > div:last-child a,
body > div:last-child,
body > a:last-of-type,
body > div:last-of-type a,
body > div:last-of-type {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    z-index: -9999 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
}

/* Add extra padding to the bottom to ensure no overlap */
body {
    padding-bottom: 50px !important;
}
