/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #0b2545;
    background: #f5f5f5;
    line-height: 1.6;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.logo img {
    height: 60px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1100;
}

/* Navigation */
.main-nav {
    position: relative;
    z-index: 1050;
}

.main-nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.main-nav a {
    position: relative;
    font-weight: 500;
    padding: 0.5rem 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f9a826;
    transition: width 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: #f9a826;
}

/* Contact button */
.contact-btn {
    white-space: nowrap;
}

/* Mobile Navigation & hide contact button */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .contact-btn {
        display: none;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-nav.open {
        max-height: 400px;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 1rem 0;
    }

    .main-nav li {
        text-align: center;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: background 0.3s, transform 0.3s;
    color: #fff;
}

.btn-primary {
    background: #f9a826;
}

.btn-primary:disabled {
    background-color: #555!important;
    color: gray!important;
}

.btn-primary:hover {
    background: #d18b1e;
}

.btn-outline {
    box-sizing: border-box;
    background: transparent;
    border: 2px solid #f9a826;
    color: black;
}

.btn-outline:hover {
    background: rgb(235, 235, 235)
}

.btn-secondary {
    background: #ffc15e;
}

.btn-secondary:hover {
    background: #e0a94b;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #f9a826;
    border-radius: 50px;
    transition: background 0.3s, transform 0.3s;
    color: #fff;
}

.btn-arrow:hover {
    background: #d18b1e;
    transform: translateY(-2px);
}

.page-hero .buttons {
    padding-top: 1em;
    display: flex;
    justify-content:space-evenly;
}

/* Hero */
.hero {
    position: relative;
    height: 82.5vh;
    background: url("../assets/hero-bg.avif") center top/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 37, 69, 0.4);
}

.hero-content {
    position: relative;
    /* max-width: 600px; */
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Features */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem 0;
}

.feature-item {
    flex: 1 1 calc(25% - 2rem);
    background: #fff;
    border: 1px solid #0b2545;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.feature-item img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    object-fit: contain;
}

@media (max-width: 900px) {
    .feature-item {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (max-width: 600px) {
    .feature-item {
        flex: 1 1 100%;
    }
}

/* How We Work */
.how-we-work {
    padding: 4rem 0 6rem;
}

.how-we-work.container {
    padding: 0;
}

.how-we-work h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.work-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.work-card {
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.work-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.work-card .icon {
    font-size: 3rem;
    color: #f9a826;
    margin-bottom: 1rem;
}

.more-link {
    text-align: center;
    margin-top: 2rem;
}

/* Where We Operate */
.global-presence {
    padding: 4rem 0;
}

.global-presence .container {
    padding: 0;
}

.global-presence h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.global-presence .subtitle {
    text-align: center;
    margin-bottom: 1rem;
}

.countries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.country-card {
    position: relative;
    width: 160px;
    padding: 1.5rem 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.country-card:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.flag-icon {
    margin-bottom: 0.75rem;
}

.country-card .name {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.country-card .country-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: rgba(11, 37, 69, 0.85);
    color: #fff;
    border-radius: 0 0 10px 10px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}

.country-card:hover .country-desc {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 600px) {
    .global-presence h2 {
        font-size: 2rem;
    }
}

/* Who We Are */
.who-we-are {
    padding: 6rem 0;
    background: #f5f5f5;
    margin-bottom: 4rem;
}

.who-we-are.container {
    padding: 0;
}

.who-we-are h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.team {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.member {
    flex: 1 1 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.member h3 {
    font-size: 1.75rem;
}

.avatar {
    width: 15em;
    height: 15em;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

@media (max-width: 900px) {
    .member {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (max-width: 600px) {
    .member {
        flex: 1 1 100%;
    }
}

/* Footer */
.site-footer {
    background: #0b2545;
    color: #fff;
    padding-top: 4rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col a:hover {
    color: #f9a826;
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.8rem;
}

/* Responsive Tweaks */
@media (max-width: 500px) {
    .header-inner {
        padding: 1rem;
    }

    .btn {
        padding: 0.5rem 1rem;
    }
}
/* ——— how-we-work.html ——— */
.page-hero {
    margin-top: 2.5em;
    background: #fff;
    padding: 3em;
    text-align: center;
}
/* .page-hero.container { padding: 0; } */
.page-hero h1 {
    font-size: 2.75rem;
    color: #0b2545;
    margin-bottom: 1rem;
}
.page-hero p {
    font-size: 1.1rem;
    color: #555;
}

/* --------------
STEP BY STEP
---------------*/
@media screen and (max-width: 1000px) {
    /* #call-code-picker {
        grid-column: 2 !important;
        align-items: flex-start !important;
    } */

    #step-by-step .title {
        font-size: 1.5rem;
    }

    #step-by-step .description {
        font-size: 1rem;
    }
}
#step-by-step {
    padding: 1em;
    /* color: white; */
}

#step-by-step > p {
    color: black;
    /* font-size: 1.8rem; */
    margin-bottom: 2em;
    text-align: center;
    padding: 0 1em;
    line-height: 32pt;
}

#steps-container {
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
    justify-content: center;
    align-items: center;
    gap: 2.5em;
    position: relative;
}

.step:nth-child(2n) {
    flex-direction: row-reverse;
}

.step {
    flex-grow: 1;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    background-color: white;
    font-family: "Libre Caslon Text", serif;
    border-radius: 2.5em;
    transition: opacity 300ms linear;
}

.step .special {
    /* max-width: 10000px; */
}

.step .card-left {
    display: grid;
    place-items: center;
    flex-basis: 45%;
    position: relative;
}

.step .card-left img {
    border-radius: 2.5em 0 0 2.5em;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.step .card-right {
    border-radius: 0 2.5em 2.5em 0;
    flex-basis: 65%;
    display: flex;
    padding: 2.5em;
    gap: 2em;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.step-num {
    /* justify-self: flex-start; */
    font-size: 4rem;
    width: fit-content;
    text-align: center;
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    border: 10px double black;
    border-radius: 100%;
    margin: 0;
}

.step-num__mobile {
    display: none;
}

.card-right .title {
    justify-self: flex-start;
    /* font-size: 2rem; */
    text-align: left;
    /* margin-bottom: auto; */
}

.card-right .description {
    justify-self: flex-end;
    font-size: 1.2rem;
    text-align: right;
    margin-top: auto;
    margin-bottom: auto;
    width: 90%;
}

#step-by-step .highlight {
    color: #18a8fa;
}

/* .steps-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
}
.steps-list li {
  position: relative;
  padding: 2rem 1.5rem 2rem 6rem;
  margin-bottom: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: transform .3s;
}
.steps-list li:hover {
  transform: translateY(-4px);
} */
/* .steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
  width: 2.5em;
  height: 2.5em;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50%;
  background: #F9A826;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps-list h3 {
  margin-bottom: .5rem;
  font-size: 1.25rem;
}
.steps-list p {
  color: #555;
  line-height: 1.6;
} */

/* ——— offer.html ——— */
.offer .page-hero,
.offer .page-hero.container {
    background: #fff;
    padding: 6rem 0 3rem;
    text-align: center;
}
.offer .page-hero h1 {
    font-size: 2.75rem;
    color: #0b2545;
    margin-bottom: 1rem;
}
.offer .page-hero p {
    font-size: 1.1rem;
    color: #555;
}

.offer .packages {
}

/* .offer .packages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1000px;
  padding: 0;
}
.offer .package-card {
  flex: 1 1 calc(33% - 2rem);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.offer .package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.offer .package-card.featured {
  border-color: #F9A826;
}
.offer .package-card h2 {
  font-size: 1.75rem;
  margin-bottom: .5rem;
  color: #0B2545;
}
.offer .package-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: #F9A826;
  margin: 1rem 0;
}
.offer .package-card ul {
  list-style: disc inside;
  margin: 1.5rem 0;
  padding: 0;
  text-align: left;
}
.offer .package-card ul li {
  margin-bottom: .75rem;
  font-size: 1rem;
} */

/* ——— contact.html ——— */
.contact .page-hero,
.contact .page-hero.container {
    background: #fff;
    padding: 6rem 0 3rem;
    text-align: center;
}
.contact .page-hero h1 {
    font-size: 2.75rem;
    color: #0b2545;
    margin-bottom: 1rem;
}
.contact .page-hero p {
    font-size: 1.1rem;
    color: #555;
}

.contact-section {
    padding: 4rem 0;
}
.contact-section.container {
    padding: 0;
}
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.contact-card {
    flex: 1 1 320px;
    max-width: 480px;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}
.contact-card h2 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}
.contact-form label {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #333;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #f9a826;
    box-shadow: 0 0 0 3px rgba(249, 168, 38, 0.2);
    outline: none;
}

/* FAQ */
.faq-section {
    padding: 4rem 0;
}
.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}
.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #fff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}
.faq-question:hover {
    background: #f9f9f9;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fcfcfc;
    border-left: 4px solid #f9a826;
    transition: max-height 0.3s ease;
}
.faq-question.open + .faq-answer {
    max-height: 200px;
}

.page-hero {
    margin-bottom: 1em;
}
/*  .page-hero {
  background: #fff;
  padding: 6rem 0 3rem;
  margin-top: 100px;
  text-align: center;
} */
.page-hero h1 {
    font-size: 2.75rem;
    color: #0b2545;
    margin-bottom: 1rem;
}
.page-hero p {
    font-size: 1.1rem;
    color: #555;
}

/* Kontener pakietów */
.packages {
    display: flex;
    flex-direction: column;
    gap: 2.5em;
    /* flex-wrap: wrap; */
    /* justify-content: center; */
    /* gap: 2rem; */
    margin: 3rem auto;
    max-width: 1200px;
    /* padding: 0; */
}

.package-card {
    width: 100%;
    /* flex: 1 1 calc(33% - 2rem); */
    background: #fff;
    position: relative;

    display: flex;
    flex-direction: column;
    gap: 1em;
    /* border: 1px solid #ddd; */
    border-radius: 10px;
    padding-top: 3em;
    padding-bottom: 3em;
    /* padding-top: 1em; */
    /* text-align: center; */
    transition: transform 0.3s, box-shadow 0.3s;
    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.package-card#pckg-1 {
    background-image: url('/assets/documents.avif');
}

.package-card#pckg-2 {
    background-image: url('/assets/house.avif');
}

.package-card#pckg-3 {
    background-image: url('/assets/landscape.avif');
}

.package-card::after {
    z-index: -1;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.0) 20%, rgba(255, 255, 255, 1.0) 70%);
    pointer-events: none;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.package-card .card-top {
    /* font-size: 2rem; */
    padding-left: 3em;
    padding-right: 3em;
    /* text-align: right; */
}

.package-card .card-left {
    /* text-align: right; */
    padding-left: 3em;
    padding-right: 3em;
}
/* 
 .package-card.featured {
  border-color: #F9A826;
}

 .package-card h2 {
  font-size: 1.75rem;
  margin-bottom: .5rem;
  color: #0B2545;
}
 .package-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: #F9A826;
  margin: 1rem 0;
}

 .package-card ul {
  list-style: disc inside;
  margin: 1.5rem 0;
  padding: 0;
  text-align: left;
}
 .package-card ul li {
  margin-bottom: .75rem;
  font-size: 1rem;
} */

.package-card-img-mobile {
    display: none;
    padding: -3em;
    /* padding: 3em; */
}

@media (max-width: 800px) {
    .package-card {
        background-image: none!important;
        /* opacity: 0.1; */
        padding-bottom: 0;
    }

    .package-card-img-mobile {
        display: block;
    }
}

@media (max-width: 450px) {
    .package-card .card-top {
        padding-left: 1em;
        padding-right: 1em;
    }

    .package-card .card-left {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }
}

/* Responsywność */
@media (max-width: 900px) {
    

    #step-by-step .step {
        flex-direction: column;
        /* height: 90vh; */
    }

    .step .card-left img {
        filter: brightness(0.6);
    }

    .card-right .step-num {
        font-size: 3rem !important;
    }

    .card-right {
        /* padding: 1em!important; */
    }

    .card-right .step-num:not(.step_num__mobile) {
        font-size: 3rem !important;
        display: none;
    }

    .card-right .title {
        font-size: 1.2rem !important;
    }

    .card-right .description {
        font-size: 0.9rem !important;
    }

    .step-num__mobile {
        border-color: white;
        border-radius: 100%;
        color: white;
        display: block !important;
        position: absolute;
        width: 2em !important;
        aspect-ratio: 1;
    }
}
@media (max-width: 600px) {
    .package-card {
        flex: 1 1 100%;
    }
}

/* ——— Ukrycie przycisku “Skontaktuj się z nami” na telefonach ——— */
@media (max-width: 768px) {
    .contact-btn {
        display: none !important;
    }
}
/* ——— Upiększone dane kontaktowe ——— */
.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.contact-list {
    list-style: none;
    margin: 1rem 0 2rem;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-list li a {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.contact-list li a:hover {
    color: #555;
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #f9a826;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
}

.contact-list strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #0b2545;
}

.social {
    /* text-align: center; */
    margin-top: 1rem;
}

.social a {
    display: inline-block;
    margin: 0 0.5rem;
    padding-right: .25em;
    font-size: 1.5rem;
    color: #0b2545;
    transition: color 0.3s, transform 0.3s;
}

footer .social a {
    color: white;
}

.social a:hover {
    color: #f9a826;
    transform: translateY(-3px);
}

/* ——— Połączony blok kontaktowy ——— */
.contact-merged {
    padding: 4rem 0 6rem;
}
.contact-merged .merged-card {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.contact-merged .merged-col {
    flex: 1 1 320px;
    padding: 2rem;
    
    border-right: none;
}

.contact-merged .merged-col  h2 {
    padding-bottom: 1em;
}

@media (max-width: 768px) {
    .contact-merged .merged-card {
        flex-direction: column;
    }
    .contact-merged .form-col {
        border-bottom: 1px solid #eee; 
    }
}
.contact-merged .info-col .contact-list {
    margin: 0.5rem 0 1.5rem;
}
.contact-merged .info-col .contact-list strong {
    display: inline-block;
    margin-bottom: 0.25rem; 
}
.contact-merged .form-col form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-merged .form-col label {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    color: #0b2545;
}

.contact-merged .form-col label input,
.contact-merged .form-col label textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-merged .form-col label input:focus,
.contact-merged .form-col label textarea:focus {
    border-color: #f9a826;
    box-shadow: 0 0 0 3px rgba(249, 168, 38, 0.2);
    outline: none;
}

.contact-merged .form-col button[type="submit"] {
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    border: 2px solid #0b2545;
    border-radius: 6px;
    background: #f9a826;
    color: #0b2545;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.contact-merged .form-col button[type="submit"]:hover {
    background: #e0a223;
    transform: translateY(-2px);
}
/* ——— Styl przycisku formularza (bardziej zaokrąglony) ——— */
.contact-merged .form-col button[type="submit"] {
    align-self: flex-start;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 30px;
    background: #f9a826;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}

.contact-merged .form-col button[type="submit"]:hover {
    background: #e0a223;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.popup {
    z-index: 1000;
    position: fixed;
    /* border-radius: 2em 2em 0 0; */
    /* font-size: 2rem; */
    border-radius: 50px;
    padding-top: .5em;
    top: 5vh;
    left: 50%;
    translate: -50% 100%;
    transition: opacity 0.4s, transform 1s;
    /* max-width: 50em; */
    background-color: green;
    min-width: 350px;
}

.popup.popup-state-ratelimit {
    background-color: black;
}

.popup.popup-state-error {
    background-color: rgb(189, 2, 2);
}

.popup__icon {
    font-size: 2rem;
}

.popup-translate {
    opacity: 0;
    transform: translateY(-100%);
}

.popup__main {
    color: white;
    padding: 0.2em 1em;
    gap: 1em;
    justify-content: center;
    align-items: center;
    display: flex;
    font-weight: bold;
}

.popup__bar {
  transition: width 3s linear;
  height: .25em;
  width: 90%;
  margin: auto;
  background-color: black;
}

.display_none {
  display: none !important;
}

.popup__bar-animate {
    width: 0;
}