/* Len Industries - Main Styles */

/* Essential WordPress color palette */
:root {
    --wp--preset--color--black: #000000;
    --wp--preset--color--white: #ffffff;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--font-size--medium: 20px;
    --wp--preset--font-size--large: 36px;
}

/* Base styles */
body {
    font-family: 'Sen', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sen', sans-serif;
    font-weight: bold;
}

.ct-headline { font-family: 'Sen', sans-serif; font-weight: 800; }

.heading-1 { font-size: 2.5rem; line-height: 1.2; font-weight: 800; }

/* Section layouts */
.ct-section {
    padding: 3rem 0;
    width: 100%;
}

.ct-section-inner-wrap {
    width: 100%;
    margin: 0;
    padding: 0 2rem;
}

.ct-new-columns {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.ct-div-block {
    flex: 1;
    min-width: 300px;
}

/* Buttons */
.ct-link-button {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.main-button {
    font-size: 1.1rem;
    min-width: 200px;
}

/* Shape dividers */
.ct-section-with-shape-divider {
    position: relative;
}

.oxy-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.oxy_shape_divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* Text blocks */
.ct-text-block {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Links */
.ct-link {
    text-decoration: none;
    color: inherit;
}

/* Ready to get started call button */
.ready-call-button {
    display: inline-block;
    padding: 12px 24px;
    background: #fcb900;
    color: #000;
    border: 1px solid #fcb900;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.ready-call-button:hover {
    background: #e6a600;
    border-color: #e6a600;
    color: #000;
    text-decoration: none;
}

#call-us-ready {
    display: none;
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* Calculator specific styles */
#field > h2:nth-child(1) {
    display: none;
}

.pb0 {
    color: white;
}

.field.digits.medium {
    background-color: transparent !important;
    border-bottom: 1px solid white !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    font-size: 2rem !important;
    border-radius: 0px !important;
    color: white !important;
}

.codepeoplecalculatedfield.field.medium.valid {
    background-color: transparent !important;
    border: none !important;
    font-size: 2rem !important;
    border-radius: 0px !important;
    color: white !important;
}

.fieldname3_1 {
    margin-top: 3rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .ct-section {
        padding: 2rem 0;
        width: 100%;
    }
    
    .ct-section-inner-wrap {
        padding: 0 1rem;
        width: 100%;
    }
    
    .ct-new-columns {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ct-div-block {
        min-width: auto;
    }
    
    .heading-1 {
        font-size: 2rem;
    }
    
    .main-button {
        width: 100%;
        margin-bottom: 10px;
    }
}
