/* ============================================================
   FOOTER - MINIMAL
============================================================ */

.lp-footer-bottom {
    border-top: 1px solid #FFFFFF1C;
    padding: 10px 0;
    height: 53px;
    background: #F5E7D7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp-footer-copy {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}



/* ========================================
   FOOTER TOP WRAPPER
======================================== */
.lp-footer-top {
    background: #222222; /* removed duplicate bg */
    border-top: 1px solid #D51F2B0A;
    padding: 2% 4%;
}

/* container */
.lp-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* ========================================
   ROWS
======================================== */
.lp-footer-row {
    display: flex;
    flex-wrap: wrap;
}

/* spacing between rows */
.lp-footer-row-top {
    padding: 1em 0;
}

.lp-footer-row-bottom {
    padding: 1em 0 0;
}

/* ========================================
   COLUMNS BASE
======================================== */
.lp-footer-col {
    padding: 10px;
    box-sizing: border-box;
}

/* ========================================
   FIRST ROW CUSTOM WIDTHS
======================================== */
.lp-footer-row-top .lp-footer-col:nth-child(1) {
    width: 40%;
}

.lp-footer-row-top .lp-footer-col:nth-child(2),
.lp-footer-row-top .lp-footer-col:nth-child(3),
.lp-footer-row-top .lp-footer-col:nth-child(4) {
    width: 20%;
}

/* ========================================
   COL 1 (IMAGE + TEXT)
======================================== */
.lp-footer-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* image wrapper */
.lp-footer-image img {
    max-width: 96.77px;
    max-height: 96.77px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* text */
.lp-footer-text {
    font-size: 12px;
    color: #FFFFFF;
    line-height: 1.6;
}

/* ========================================
   RESPONSIVE
======================================== */

/* tablet */
@media (max-width: 1024px) {

    .lp-footer-row-top .lp-footer-col:nth-child(1),
    .lp-footer-row-top .lp-footer-col:nth-child(2),
    .lp-footer-row-top .lp-footer-col:nth-child(3),
    .lp-footer-row-top .lp-footer-col:nth-child(4) {
        width: 50%;
    }

    .lp-footer-info {
        align-items: center;
    }
}

/* mobile */
@media (max-width: 600px) {

    .lp-footer-col {
        width: 100% !important;
        padding: 8px 0;
    }

    .lp-footer-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .lp-footer-image img {
        width: 70px;
        height: 70px;
    }
}


/* ========================================
   ICON BOX (COL 2–4)
======================================== */
.lp-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}

/* ICON WRAPPER */
.lp-icon-box-icon {
    width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG itself */
.lp-icon-box-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: #f5e7d7;
    stroke: #f5e7d7;
    stroke-width: 2;
}

/* TITLE */
.lp-icon-box-title {
    font-size: 19px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 5px 0 0;
    color: #FFFFFF; /* replace if you have variable */
}

/* DESCRIPTION */
.lp-icon-box-desc {
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
}

/* ========================================
   FOOTER COLUMN 1 (CONTACT INFO)
======================================== */

.lp-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #f5e7d7;
}

/* TITLE (kontaktinė informacija) */
.lp-footer-title {
    font-size: 23px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 1px;
    line-height: 1.2em;
    margin: 0;
    color: #FFFFFF;
}

/* PHONE */
.lp-footer-phone {
    font-family: "Karla", sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2em;
    color: #f5e7d7;
    margin: 0;
}

/* EMAIL */
.lp-footer-email {
    font-family: "Karla", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2em;
    color: #f5e7d7;
    margin: 5px 0 0;
}

/* LINKS LIST */
.lp-footer-links {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* LINK ITEMS */
.lp-footer-links a {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

/* HOVER */
.lp-footer-links a:hover {
    color: #f5e7d7;
}

/* ========================================
   SOCIAL ICONS
======================================== */

.lp-footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* SOCIAL BUTTON */
.lp-social {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f5e7d7;
    transition: 0.3s;
    cursor: pointer;
}

/* SVG ICON */
.lp-social svg {
    width: 16px;
    height: 16px;
    fill: #000000;
}

/* HOVER */
.lp-social:hover {
    background: #ffffff;
}


/* ========================================
   FOOTER COLUMN 2 (LINKS BLOCK)
======================================== */

.lp-footer-links-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* TITLE */
.lp-footer-links-title {
    font-size: 23px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 1px;
    line-height: 1.2em;
    margin: 0;
    color: #FFFFFF;
}

/* MENU LIST */
.lp-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* LINKS */
.lp-footer-menu a {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

/* HOVER (matches your design system) */
.lp-footer-menu a:hover {
    color: #f5e7d7;
}


/* ========================================
   FOOTER COLUMN 4 (NEWSLETTER)
======================================== */

.lp-footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* MAIN TITLE */
.lp-footer-newsletter-title {
    font-size: 23px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 1px;
    line-height: 1.2em;
    margin: 0;
    color: #ffffff;
}

/* SUBTITLE (small text under title) */
.lp-footer-newsletter-subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
    color: #ffffff;
    margin: 10px 0 0;
}

/* ========================================
   CONTACT FORM 7 WRAPPER
======================================== */

/* Reset CF7 checkbox */
.wpcf7 input[type="checkbox"] {
    -webkit-appearance: checkbox;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: white;
    border: none;
    outline: none;
    box-shadow: none;
}
.wpcf7 input[type="checkbox"]::before,
.wpcf7 input[type="checkbox"]::after {
    content: none !important;
}


.email-form {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.newsletter-row {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.email-field {
  flex: 1;
}

.email-field input {
  width: 100%;
  height: 50px;
  box-sizing: border-box;
}

.submit-button {
  flex: 0 0 auto;
}

.submit-button input {
  height: 50px;
}

.acceptance-wrap {
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}

.acceptance-wrap .wpcf7-list-item {
  margin: 0;
  display: inline-block;
}

.acceptance-wrap label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.acceptance-wrap input[type="checkbox"] {
  margin-top: 3px;
  flex: 0 0 auto;
}

.acceptance-wrap a {
  color: inherit;
  text-decoration: underline;
}



/* ========================================
   FIX CF7 SUBMIT BUTTON (CUSTOM STYLE)
======================================== */

.submit-button input {
    appearance: button;
    -webkit-appearance: button;

    height: 50px;
    min-width: 60px; /* prevents tiny button */
    padding: 14px 20px;

    background-color: #f5e6d7;
    color: #222;

    border: 1px solid #fff;

    font-family: 'Hind', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;

    line-height: 1;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: all 0.3s ease;
}

/* Disabled state (CF7 default before valid input) */
.submit-button input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Optional hover (only when enabled) */
.submit-button input:not(:disabled):hover {
    opacity: 0.8;
}

/* ========================================
   FIX CF7 INPUT FIELD
======================================== */

.email-field input {
    appearance: none;
    -webkit-appearance: none;

    width: 100%;
    height: 50px;
    min-height: 40px;

    padding: 6px 12px;

    background-color: transparent;
    color: #a7a7a7;

    border: 1px solid #ddd;
    border-radius: 3px;

    font-family: 'Hind', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;

    line-height: 1.6;

    box-sizing: border-box;

    transition: all 0.3s ease;
}


/* ========================================
   FOOTER COLUMNS - FIXED FLEX SYSTEM
======================================== */

.lp-footer-row-bottom {
    display: flex;
    flex-wrap: nowrap;
}

/* base column behavior */
.lp-footer-row-bottom .lp-footer-col {
    padding: 10px;
    box-sizing: border-box;
}

/* COLUMN WIDTHS */
.lp-footer-row-bottom .lp-footer-col:nth-child(1) {
    flex: 0 0 28%;
}

.lp-footer-row-bottom .lp-footer-col:nth-child(2) {
    flex: 0 0 22%;
}

.lp-footer-row-bottom .lp-footer-col:nth-child(3) {
    flex: 0 0 25%;
}

.lp-footer-row-bottom .lp-footer-col:nth-child(4) {
    flex: 0 0 25%;
}


/* ============================================================
   FOOTER ROW 2 RESPONSIVE FIX (TABLET + MOBILE)
============================================================ */

@media (max-width: 1024px) {

    /* allow wrapping instead of forcing single line */
    .lp-footer-row-bottom {
        flex-wrap: wrap !important;
    }

    /* convert all 4 columns into 2x2 grid */
    .lp-footer-row-bottom .lp-footer-col {
        flex: 0 0 50% !important;
    }
}

/* small mobile */
@media (max-width: 600px) {

    /* stack everything */
    .lp-footer-row-bottom .lp-footer-col {
        flex: 0 0 100% !important;
    }
}
