/* ============================== HERO ============================== */
.contact-hero {
    background: #111;
    color: #fff;
    padding: 40px 16px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent, rgba(0,0,0,0.7));
    z-index: 1;
}
.contact-hero__airplane {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translate(0, -50%) rotate(-4.5deg);
    width: 270px;
    z-index: 2;
    pointer-events: none;
    display: none;
}
@media (min-width: 1200px) {
    .contact-hero__airplane { display: block; }
}
.contact-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    animation: heroFadeUp 0.7s ease-out both;
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.contact-hero__title {
    font-size: 32px;
    line-height: 1.1;
    margin: 0 0 16px;
    font-weight: 700;
    color: #fff;
}
.contact-hero__desc {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin: 0 0 24px;
}
.contact-hero__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.contact-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s;
}
.contact-hero__btn--phone {
    background: var(--cta-color);
    color: #031703;
        transition: all 3s;

}
.contact-hero__btn--phone:hover {
    background: var(--cta-hover);
    box-shadow: 0 6px 20px rgba(79,210,100,0.3);
    color: #031703;
        transition: all 3s;

}
.contact-hero__btn--email {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
}
.contact-hero__btn--email:hover {
    background: rgba(255,255,255,0.14);
    border-color: #4fd264;
    color: #fff;
}

@media (min-width: 768px) {
    .contact-hero { padding: 64px 40px; }
    .contact-hero__title { font-size: 44px; }
    .contact-hero__desc { font-size: 17px; }
}
@media (min-width: 1024px) {
    .contact-hero__title { font-size: 52px; }
}

/* ============================== FORM + SIDEBAR ============================== */
.contact-main {
    padding: 48px 0;
    background: #fff;
}
.contact-main__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}
.contact-main__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.contact-form-col__title {
    font-size: 24px;
    font-weight: 700;
    color: #374053;
    margin: 0 0 6px;
}
.contact-form-col__sub {
    font-size: 14px;
    color: #666;
    margin: 0 0 28px;
}

/* Success */
.contact-success {
    background: #f0fdf4;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 2px solid #0bbf20;
}
.contact-success__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0bbf20;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.contact-success h3 {
    font-size: 20px;
    color: #374053;
    margin: 0 0 8px;
}
.contact-success p {
    font-size: 14px;
    color: #666;
}

/* Form */
.contact-form-new {
    padding: 0;
}
.contact-form-new__row {
    margin-bottom: 16px;
}
.contact-form-new__row--2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.contact-form-new__field {
    margin-bottom: 16px;
}
.contact-form-new__field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374053;
    margin-bottom: 6px;
}
.contact-form-new__field .req {
    color: #ff4444;
}
.contact-form-new__field input[type="text"],
.contact-form-new__field input[type="email"],
.contact-form-new__field input[type="tel"],
.contact-form-new__field input[type="url"],
.contact-form-new__field select,
.contact-form-new__field textarea {
    width: 100%;
    padding: 11px 14px;
    border-radius: 10px;
    border: 2px solid #d1d5db;
    background: #fff;
    font-size: 14px;
    color: #374053;
    transition: all 0.2s;
    box-shadow: none;
    -webkit-appearance: none;
}
.contact-form-new__field input:focus,
.contact-form-new__field select:focus,
.contact-form-new__field textarea:focus {
    outline: none;
    border-color: #0bbf20;
    box-shadow: 0 0 0 3px rgba(11,191,32,0.2);
}
.contact-form-new__field textarea {
    resize: none;
    min-height: 130px;
}
.contact-form-new__field select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 20 20' fill='none'%3e%3cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23374053' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

/* File upload */
.contact-form-new__field--file label {
    display: none;
}
.contact-form-new__field--file .uploadFileBtn {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    padding: 10px 18px;
    border: 2px solid #d1d5db;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}
.contact-form-new__field--file .uploadFileBtn:hover {
    border-color: #0bbf20;
    color: #0bbf20;
}
.contact-form-new__field--file .uploadFileBtn input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.contact-form-new__field--file #uploadFilePath {
    display: inline-block;
    margin-left: 12px;
    font-size: 13px;
    color: #666;
    border: none;
    background: none;
}

/* Submit */
.contact-form-new__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 24px;
    background: var(--cta-color);
    color: #000;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 2s;
    margin-top: 8px;
}
.contact-form-new__submit:hover {
    background: var(--cta-hover);
    transition: all 3s;
}


@media (min-width: 768px) {
    .contact-main { padding: 72px 0; }
    .contact-main__inner { padding: 0 40px; }
    .contact-form-new__row--2col { grid-template-columns: 1fr 1fr; }
    .contact-form-col__title { font-size: 30px; }
}
@media (min-width: 1024px) {
    .contact-main__grid {
        grid-template-columns: 1fr 320px;
        gap: 48px;
    }
}

/* ============================== SIDEBAR ============================== */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 1024px) {
    .contact-sidebar { padding-top: 52px; }
}

.contact-sidebar__card {
    background: #fafbfc;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #e5e5e5;
}
.contact-sidebar__company {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374053;
    margin-bottom: 16px;
}
.contact-sidebar__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
}
.contact-sidebar__row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.contact-sidebar__row span {
    color: #555;
}
.contact-sidebar__row a {
    color: #0bbf20;
    text-decoration: none;
}
.contact-sidebar__row a:hover {
    text-decoration: underline;
}
.contact-sidebar__row::before {
    content: '';
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    background: #0bbf20;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.contact-sidebar__row--location::before {
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 1118 0z' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3ccircle cx='12' cy='10' r='3' stroke='%23000' stroke-width='2'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 1118 0z' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3ccircle cx='12' cy='10' r='3' stroke='%23000' stroke-width='2'/%3e%3c/svg%3e");
}
.contact-sidebar__row--hours::before {
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3e%3ccircle cx='12' cy='12' r='10' stroke='%23000' stroke-width='2'/%3e%3cpath d='M12 6v6l4 2' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3e%3ccircle cx='12' cy='12' r='10' stroke='%23000' stroke-width='2'/%3e%3cpath d='M12 6v6l4 2' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3e%3c/svg%3e");
}
.contact-sidebar__row--phone::before {
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
.contact-sidebar__row--email::before {
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M22 6l-10 7L2 6' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M22 6l-10 7L2 6' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}

/* Trust */
.contact-sidebar__trust {
    background: linear-gradient(135deg, #f0fdf4, #e8f9ee);
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(11,191,32,0.15);
}
.contact-sidebar__trust h3 {
    font-size: 14px;
    font-weight: 600;
    color: #374053;
    margin: 0 0 12px;
}
.contact-sidebar__trust ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-sidebar__trust li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-sidebar__trust li::before {
    content: '';
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background: #0bbf20;
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M22 11.08V12a10 10 0 11-5.93-9.14' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M22 4L12 14.01l-3-3' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M22 11.08V12a10 10 0 11-5.93-9.14' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M22 4L12 14.01l-3-3' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.contact-sidebar__trust li span {
    font-size: 12px;
    color: #555;
}

/* Registration */
.contact-sidebar__reg {
    background: #fafbfc;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #e5e5e5;
}
.contact-sidebar__reg h3 {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 10px;
}
.contact-sidebar__reg p {
    font-size: 12px;
    color: #666;
    margin: 0;
    padding: 5px 0;
}
.contact-sidebar__label {
    color: #999;
}

/* ============================== ZAUFALI NAM ============================== */
.contact-clients-section {
    padding: 40px 16px;
    background: #fafbfc;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
}
.contact-clients-section__inner {
    max-width: 1512px;
    margin: 0 auto;
}
.contact-clients-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.contact-clients-section__title {
    font-size: 22px;
    font-weight: 700;
    color: #374053;
    margin: 0;
}
.contact-clients-section__sub {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin: 0 0 28px;
}

/* Infinite scroll carousel */
.contact-clients-carousel {
    overflow: hidden;
    position: relative;
}
.contact-clients-carousel__track {
    display: flex;
    gap: 20px;
    animation: scrollClients 45s linear infinite;
    width: max-content;
}
@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.contact-clients-carousel:hover .contact-clients-carousel__track {
    animation-play-state: paused;
}
.contact-clients-carousel__item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    border: 1px solid #e5e5e5;
    min-width: 160px;
    height: 64px;
    opacity: 0.5;
    filter: grayscale(1);
    transition: all 0.3s;
    flex-shrink: 0;
}
.contact-clients-carousel__item:hover {
    opacity: 1;
    filter: grayscale(0);
}
.contact-clients-carousel__initials {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f0fdf4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #0bbf20;
    flex-shrink: 0;
}
.contact-clients-carousel__name {
    font-size: 13px;
    font-weight: 500;
    color: #374053;
}

@media (min-width: 768px) {
    .contact-clients-section { padding: 56px 40px; }
    .contact-clients-section__title { font-size: 28px; }
}

/* ============================== NASZE USŁUGI ============================== */
.contact-services-section {
    padding: 40px 16px;
    background: linear-gradient(135deg, #031703, #052d05, #031703);
    position: relative;
    overflow: hidden;
}
.contact-services-section__dot-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 2px 2px, rgba(79,210,100,0.3) 1px, transparent 0);
    background-size: 32px 32px;
}
.contact-services-section__inner {
    max-width: 1512px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.contact-services-section__header {
    text-align: center;
    margin-bottom: 28px;
}
.contact-services-section__header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}
.contact-services-section__header p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.contact-services-carousel {
    overflow: hidden;
    position: relative;
}
.contact-services-carousel__track {
    display: flex;
    gap: 16px;
    animation: scrollServices 35s linear infinite reverse;
    width: max-content;
}
@keyframes scrollServices {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.contact-services-carousel:hover .contact-services-carousel__track {
    animation-play-state: paused;
}
.contact-services-carousel__item {
    background: rgba(255,255,255,0.05);
	max-width: 300px;
    backdrop-filter: blur(4px);
    border-radius: 14px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    min-width: 200px;
    flex-shrink: 0;
    transition: all 0.3s;
}
.contact-services-carousel__item:hover {
    border-color: #4fd264;
    background: rgba(79,210,100,0.08);
    cursor: pointer;
}
.contact-services-carousel__item h3 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 3px;
}
.contact-services-carousel__item p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

@media (min-width: 768px) {
    .contact-services-section { padding: 56px 40px; }
    .contact-services-section__header h2 { font-size: 26px; }
}

/* ============================== FAQ ============================== */
.contact-faq {
    padding: 48px 16px;
    background: #fafbfc;
}
.contact-faq__inner {
    max-width: 800px;
    margin: 0 auto;
}
.contact-faq__header {
    text-align: center;
    margin-bottom: 32px;
}
.contact-faq__header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #374053;
    margin: 0 0 8px;
}
.contact-faq__header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}
.contact-faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-faq__item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: border-color 0.2s;
}
.contact-faq__item:hover {
    border-color: rgba(11,191,32,0.4);
}
.contact-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}
.contact-faq__question span {
    font-size: 14px;
    font-weight: 600;
    color: #374053;
    padding-right: 12px;
}
.contact-faq__question::after {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: #0bbf20;
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3e%3cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3e%3cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transition: transform 0.3s;
}
.contact-faq__item.is-open .contact-faq__question::after {
    transform: rotate(180deg);
}
.contact-faq__answer {
    display: none;
    padding: 0 18px 16px;
}
.contact-faq__item.is-open .contact-faq__answer {
    display: block;
}
.contact-faq__answer p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (min-width: 768px) {
    .contact-faq { padding: 72px 40px; }
    .contact-faq__header h2 { font-size: 30px; }
}

.fb_iframe_widget iframe {
	position: static !important;
}

@media (min-width: 1600px) {
	#contact_box > div {
	
	}
}

.contact-social {
	margin: 20px 0;
}

.contact-social a {
    display: inline-block;
    flex-wrap: wrap;
    justify-content: center;
    margin: 5px;
}

.contact-social a.fb {
	padding: 15px;
    background-color: #3b5998;
    color: white;
    border-radius: 5px;
}

.contact-social a.ig {
	padding: 15px;
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent; 
	color: white;
    border-radius: 5px;
	border: 1px solid #fb989a;
}

.contact-social a.g {
	padding: 15px;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    background: #f7f7f7;
}


.form_content .form-group {
	margin: 0 0 15px 0!important;
}

#map_osm {
	cursor: pointer;
	border-radius: 8px;
	background-image: url(/themes/prestashow/img/contact-map.png);
}