/*
==========================================================
Global EuroCareers Theme
Components Stylesheet

Version: 2.1.0

----------------------------------------------------------
COMPONENTS

1. Buttons
2. Button Groups
3. Badges
4. Section Labels
5. Text Links
6. Cards
7. Glass Cards
8. Service Cards
9. Service Icons
10. Feature Cards
11. Stat Cards
12. Image Cards
13. Icon Boxes
14. Process Steps
15. Timeline
==========================================================
*/


/*==========================================================
1. BUTTONS
==========================================================*/

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 16px 34px;

    border: 0;

    border-radius: var(--radius-pill);

    font-family: var(--font-body);

    font-size: 1rem;

    font-weight: 700;

    line-height: 1.2;

    cursor: pointer;

    text-decoration: none;

    white-space: nowrap;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);

}


.btn:hover {

    transform: translateY(-3px);

}


.btn:focus-visible {

    outline: 3px solid var(--gold);

    outline-offset: 4px;

}


/*----------------------------------------------------------
  Primary Button
----------------------------------------------------------*/

.btn-primary {

    background: linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color: var(--white);

    box-shadow:
        0 12px 30px rgba(200, 150, 62, .28);

}


.btn-primary:hover {

    color: var(--white);

    box-shadow:
        0 18px 40px rgba(200, 150, 62, .40);

}


/*----------------------------------------------------------
  Secondary Button
----------------------------------------------------------*/

.btn-secondary {

    background: rgba(
        255,
        255,
        255,
        .70
    );

    color: var(--navy);

    border: 1px solid rgba(
        11,
        29,
        53,
        .10
    );

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

}


.btn-secondary:hover {

    background: var(--white);

    color: var(--navy);

}


/*----------------------------------------------------------
  Outline Button
----------------------------------------------------------*/

.btn-outline {

    background: transparent;

    color: var(--navy);

    border: 2px solid var(--gold);

}


.btn-outline:hover {

    background: var(--gold);

    color: var(--white);

}


/*----------------------------------------------------------
  Dark Button
----------------------------------------------------------*/

.btn-dark {

    background: var(--navy);

    color: var(--white);

}


.btn-dark:hover {

    background: var(--navy2);

    color: var(--white);

}


/*----------------------------------------------------------
  Light Button
----------------------------------------------------------*/

.btn-light {

    background: var(--white);

    color: var(--navy);

    border: 1px solid var(--border);

}


.btn-light:hover {

    background: var(--cream);

    color: var(--navy);

}


/*----------------------------------------------------------
  Button Sizes
----------------------------------------------------------*/

.btn-small {

    padding: 12px 22px;

    font-size: .9rem;

}


.btn-large {

    padding: 20px 42px;

    font-size: 1.08rem;

}


.btn-full {

    width: 100%;

}


/*----------------------------------------------------------
  Button Icon
----------------------------------------------------------*/

.btn-icon {

    display: inline-flex;

    align-items: center;

    gap: 10px;

}


.btn svg {

    width: 18px;

    height: 18px;

    flex-shrink: 0;

}


/*==========================================================
2. BUTTON GROUP
==========================================================*/

.button-group {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 18px;

}


/*==========================================================
3. BADGES
==========================================================*/

.badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 20px;

    border-radius: var(--radius-pill);

    font-size: .82rem;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: .05em;

    text-transform: uppercase;

}


/*----------------------------------------------------------
  Primary Badge
----------------------------------------------------------*/

.badge-primary {

    background: rgba(
        200,
        150,
        62,
        .12
    );

    color: var(--gold);

}


/*----------------------------------------------------------
  Light Badge
----------------------------------------------------------*/

.badge-light {

    background: rgba(
        255,
        255,
        255,
        .75
    );

    color: var(--navy);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

}


/*----------------------------------------------------------
  Success Badge
----------------------------------------------------------*/

.badge-success {

    background: #EAF7EF;

    color: #2F8D57;

}


.badge svg {

    width: 16px;

    height: 16px;

    flex-shrink: 0;

}


/*==========================================================
4. SECTION LABEL
==========================================================*/

.section-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 8px 18px;

    border-radius: var(--radius-pill);

    background: rgba(
        200,
        150,
        62,
        .10
    );

    color: var(--gold);

    font-size: .82rem;

    font-weight: 700;

    line-height: 1.2;

    text-transform: uppercase;

    letter-spacing: .08em;

}


.section-label::before {

    content: "";

    width: 8px;

    height: 8px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--gold);

}


/*----------------------------------------------------------
  Standard Section Header Positioning
----------------------------------------------------------*/

.section-header .section-label {

    margin-bottom: 20px;

}

.section-header .section-label + h2 {

    margin-top: 0;

}


/*==========================================================
5. TEXT LINKS
==========================================================*/

.text-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--gold);

    font-weight: 700;

    text-decoration: none;

    transition:
        gap var(--transition),
        color var(--transition);

}


.text-link:hover {

    gap: 16px;

    color: var(--gold-light);

}


.text-link svg {

    width: 18px;

    height: 18px;

    flex-shrink: 0;

}


/*==========================================================
6. CARDS
==========================================================*/

.card {

    position: relative;

    padding: 40px;

    background: var(--white);

    border: 1px solid transparent;

    border-radius: var(--radius-lg);

    overflow: hidden;

    box-shadow: var(--shadow);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);

}


.card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-large);

}


.card::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, .35),
        transparent
    );

    opacity: 0;

    pointer-events: none;

    transition:
        opacity var(--transition);

}


.card:hover::before {

    opacity: 1;

}


/*==========================================================
7. GLASS CARD
==========================================================*/

.glass-card {

    padding: 32px;

    background: rgba(
        255,
        255,
        255,
        .82
    );

    border: 1px solid rgba(
        255,
        255,
        255,
        .45
    );

    border-radius: var(--radius-lg);

    box-shadow:
        0 20px 50px rgba(
            11,
            29,
            53,
            .12
        );

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

}


/*==========================================================
8. SERVICE CARD
==========================================================*/

.service-card {

    position: relative;

    display: flex;

    flex-direction: column;

    gap: 24px;

    padding: 45px;

    background: var(--white);

    border-radius: var(--radius-lg);

    overflow: hidden;

    box-shadow: var(--shadow);

    transition:
        transform var(--transition),
        box-shadow var(--transition);

}


.service-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-large);

}


.service-card::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 4px;

    background: linear-gradient(
        90deg,
        var(--gold),
        var(--gold-light)
    );

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform var(--transition);

}


.service-card:hover::after {

    transform: scaleX(1);

}


.service-card h3 {

    margin: 0;

}


.service-card p {

    margin: 0;

    color: var(--muted);

    line-height: 1.8;

}


/*==========================================================
9. SERVICE ICON
==========================================================*/

.service-icon {

    width: 72px;

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 20px;

    background: rgba(
        200,
        150,
        62,
        .10
    );

}


.service-icon img {

    width: 38px;

    height: 38px;

    object-fit: contain;

}


.service-icon svg {

    width: 38px;

    height: 38px;

    color: var(--gold);

}


/*==========================================================
10. FEATURE CARD
==========================================================*/

.feature-card {

    padding: 45px;

    background: var(--white);

    border-radius: var(--radius-lg);

    text-align: center;

    box-shadow: var(--shadow);

    transition:
        transform var(--transition),
        box-shadow var(--transition);

}


.feature-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-large);

}


.feature-icon {

    width: 90px;

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 28px;

    border-radius: 50%;

    background: rgba(
        200,
        150,
        62,
        .10
    );

}


.feature-icon img {

    width: 42px;

    height: 42px;

    object-fit: contain;

}


.feature-icon svg {

    width: 42px;

    height: 42px;

    color: var(--gold);

}


.feature-card h3 {

    margin-bottom: 18px;

}


.feature-card p {

    margin: 0;

    color: var(--muted);

    line-height: 1.8;

}


/*==========================================================
12. IMAGE CARD
==========================================================*/

.image-card {

    overflow: hidden;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-large);

}


.image-card img {

    display: block;

    width: 100%;

    height: auto;

    transition:
        transform .6s ease;

}


.image-card:hover img {

    transform: scale(1.05);

}


/*==========================================================
13. ICON BOX
==========================================================*/

.icon-box {

    display: flex;

    align-items: flex-start;

    gap: 20px;

}


.icon-box-icon {

    width: 64px;

    height: 64px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 18px;

    background: rgba(
        200,
        150,
        62,
        .12
    );

}


.icon-box-icon img {

    width: 34px;

    height: 34px;

    object-fit: contain;

}


.icon-box-icon svg {

    width: 34px;

    height: 34px;

    color: var(--gold);

}


.icon-box-content {

    min-width: 0;

}


.icon-box-content h3 {

    margin-bottom: 10px;

}


.icon-box-content p {

    margin: 0;

    color: var(--muted);

    line-height: 1.7;

}


/*==========================================================
14. PROCESS STEP
==========================================================*/

.process-step {

    position: relative;

    padding: 20px;

    text-align: center;

}


.step-number {

    width: 76px;

    height: 76px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 28px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color: var(--white);

    font-size: 1.8rem;

    font-weight: 700;

    box-shadow:
        0 18px 40px rgba(
            200,
            150,
            62,
            .35
        );

}


.process-step h3 {

    margin-bottom: 16px;

}


.process-step p {

    margin: 0;

    color: var(--muted);

    line-height: 1.7;

}


/*==========================================================
15. TIMELINE
==========================================================*/

.timeline {

    position: relative;

}


.timeline::before {

    content: "";

    position: absolute;

    top: 0;

    bottom: 0;

    left: 38px;

    width: 3px;

    background: linear-gradient(
        var(--gold),
        rgba(
            200,
            150,
            62,
            .15
        )
    );

}


.timeline-item {

    position: relative;

    padding-left: 90px;

    margin-bottom: 60px;

}


.timeline-item:last-child {

    margin-bottom: 0;

}


.timeline-dot {

    position: absolute;

    top: 8px;

    left: 24px;

    width: 30px;

    height: 30px;

    border: 6px solid var(--white);

    border-radius: 50%;

    background: var(--gold);

    box-shadow: var(--shadow);

}


@media (max-width: 768px) {

    .timeline::before {

        display: none;

    }


    .timeline-item {

        padding-left: 0;

    }


    .timeline-dot {

        display: none;

    }

}

/*
==========================================================
Global Careers Theme
Components Stylesheet

Version: 2.1.0

----------------------------------------------------------
PART 2

16. Check Lists
17. Trust Bar
18. Social Proof
19. Rating
20. Avatar Group
21. Info Box
22. Quote
23. Divider
24. Forms
25. Search
26. Pagination
27. Responsive Components
==========================================================
*/


/*==========================================================
16. CHECK LIST
==========================================================*/

.check-list {

    list-style: none;

    margin: 0;

    padding: 0;

}


.check-list li {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 18px;

    line-height: 1.7;

}


.check-list li:last-child {

    margin-bottom: 0;

}


.check-list li::before {

    content: "✓";

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    margin-top: 2px;

    border-radius: 50%;

    background: #EAF7EF;

    color: #2F8D57;

    font-size: .9rem;

    font-weight: 700;

}


/*==========================================================
17. TRUST BAR
==========================================================*/

.trust-bar {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 16px;

}


.trust-item {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 22px;

    background: rgba(
        255,
        255,
        255,
        .85
    );

    border-radius: var(--radius-pill);

    box-shadow: var(--shadow);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    font-weight: 600;

}


.trust-item strong {

    color: var(--gold);

}


/*==========================================================
18. SOCIAL PROOF
==========================================================*/

.social-proof {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 30px;

}


.social-proof-item {

    display: flex;

    flex-direction: column;

}


.social-proof-number {

    color: var(--gold);

    font-size: 2rem;

    font-weight: 700;

    line-height: 1.2;

}


.social-proof-label {

    color: var(--muted);

    font-size: .95rem;

    line-height: 1.5;

}


/*==========================================================
19. RATING
==========================================================*/

.rating {

    display: flex;

    align-items: center;

    gap: 12px;

}


.rating-stars {

    color: var(--gold);

    font-size: 1.2rem;

    line-height: 1;

    letter-spacing: 2px;

}


.rating-text {

    color: var(--muted);

    font-size: .95rem;

}


/*==========================================================
20. AVATAR GROUP
==========================================================*/

.avatar-group {

    display: flex;

    align-items: center;

}


.avatar-group img {

    width: 52px;

    height: 52px;

    flex-shrink: 0;

    margin-left: -12px;

    border: 3px solid var(--white);

    border-radius: 50%;

    object-fit: cover;

    box-shadow: var(--shadow);

}


.avatar-group img:first-child {

    margin-left: 0;

}


/*==========================================================
21. INFO BOX
==========================================================*/

.info-box {

    padding: 28px;

    background: rgba(
        200,
        150,
        62,
        .08
    );

    border-left: 4px solid var(--gold);

    border-radius:
        0
        var(--radius-md)
        var(--radius-md)
        0;

}


.info-box h3 {

    margin-bottom: 12px;

}


.info-box p {

    margin: 0;

}


/*==========================================================
22. QUOTE
==========================================================*/

.quote {

    position: relative;

    padding-left: 40px;

    color: var(--muted);

    font-style: italic;

    line-height: 1.8;

}


.quote::before {

    content: "“";

    position: absolute;

    top: -12px;

    left: 0;

    color: var(--gold);

    font-family: var(--font-display);

    font-size: 4rem;

    line-height: 1;

}


/*==========================================================
23. DIVIDER
==========================================================*/

.divider {

    width: 100%;

    height: 1px;

    margin: 60px 0;

    background: var(--border);

}


/*==========================================================
24. FORMS
==========================================================*/

.form-group {

    margin-bottom: 24px;

}


.form-group:last-child {

    margin-bottom: 0;

}


.form-group label {

    display: block;

    margin-bottom: 10px;

    color: var(--navy);

    font-weight: 600;

}


.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    padding: 16px 18px;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    background: var(--white);

    color: var(--text);

    font-family: var(--font-body);

    font-size: 1rem;

    line-height: 1.5;

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);

}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: var(--muted);

    opacity: .8;

}


.form-group textarea {

    min-height: 180px;

    resize: vertical;

}


.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {

    border-color: rgba(
        200,
        150,
        62,
        .55
    );

}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    outline: none;

    border-color: var(--gold);

    box-shadow:
        0 0 0 4px rgba(
            200,
            150,
            62,
            .15
        );

}


/*----------------------------------------------------------
  Checkboxes and Radio Buttons
----------------------------------------------------------*/

.form-check {

    display: flex;

    align-items: flex-start;

    gap: 10px;

}


.form-check input {

    width: 18px;

    height: 18px;

    flex-shrink: 0;

    margin-top: 4px;

    accent-color: var(--gold);

}


.form-check label {

    margin: 0;

    color: var(--text);

    font-size: .95rem;

    font-weight: 400;

}


/*----------------------------------------------------------
  Form Messages
----------------------------------------------------------*/

.form-success {

    padding: 16px 20px;

    border-left: 4px solid #2F8D57;

    border-radius:
        0
        var(--radius-md)
        var(--radius-md)
        0;

    background: #EAF7EF;

    color: #276F46;

}


.form-error {

    padding: 16px 20px;

    border-left: 4px solid var(--danger);

    border-radius:
        0
        var(--radius-md)
        var(--radius-md)
        0;

    background: rgba(
        217,
        83,
        79,
        .08
    );

    color: var(--danger);

}


/*==========================================================
25. SEARCH
==========================================================*/

.search-box {

    display: flex;

    align-items: stretch;

    gap: 14px;

}


.search-box input {

    flex: 1;

    min-width: 0;

}


/*==========================================================
26. PAGINATION
==========================================================*/

.pagination {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 60px;

}


.pagination a,
.pagination span {

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid var(--border);

    border-radius: 50%;

    background: var(--white);

    color: var(--navy);

    font-weight: 600;

    box-shadow: var(--shadow);

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);

}


.pagination a:hover {

    transform: translateY(-2px);

    border-color: var(--gold);

    background: var(--gold);

    color: var(--white);

}


.pagination .current {

    border-color: var(--gold);

    background: var(--gold);

    color: var(--white);

}


/*==========================================================
27. RESPONSIVE COMPONENTS
==========================================================*/

@media (max-width: 992px) {

    .service-card,
    .feature-card {

        padding: 35px;

    }


    .card {

        padding: 32px;

    }


    .glass-card {

        padding: 28px;

    }


    .button-group {

        gap: 14px;

    }

}


@media (max-width: 768px) {

    .btn {

        padding: 14px 26px;

    }


    .btn-large {

        padding: 17px 32px;

        font-size: 1rem;

    }


    .button-group {

        width: 100%;

        flex-direction: column;

        align-items: stretch;

    }


    .button-group .btn {

        width: 100%;

    }


    .card {

        padding: 28px;

    }


    .glass-card {

        padding: 24px;

    }


    .service-card,
    .feature-card {

        padding: 30px;

    }


    .service-icon {

        width: 64px;

        height: 64px;

        border-radius: 18px;

    }


    .service-icon img,
    .service-icon svg {

        width: 32px;

        height: 32px;

    }


    .feature-icon {

        width: 76px;

        height: 76px;

        margin-bottom: 22px;

    }


    .feature-icon img,
    .feature-icon svg {

        width: 36px;

        height: 36px;

    }


    .stat-number {

        font-size: 2.7rem;

    }


    .trust-bar {

        align-items: stretch;

        flex-direction: column;

    }


    .trust-item {

        width: 100%;

        border-radius: var(--radius-md);

    }


    .social-proof {

        gap: 20px;

    }


    .search-box {

        flex-direction: column;

    }


    .search-box .btn {

        width: 100%;

    }


    .divider {

        margin: 40px 0;

    }

}


@media (max-width: 480px) {

    .btn {

        width: 100%;

    }


    .btn-full {

        width: 100%;

    }


    .badge {

        padding: 8px 15px;

        font-size: .75rem;

    }


    .section-label {

        padding: 7px 14px;

        font-size: .75rem;

    }


    .icon-box {

        gap: 15px;

    }


    .icon-box-icon {

        width: 54px;

        height: 54px;

        border-radius: 15px;

    }


    .icon-box-icon img,
    .icon-box-icon svg {

        width: 28px;

        height: 28px;

    }


    .check-list li {

        gap: 10px;

    }


    .check-list li::before {

        width: 25px;

        height: 25px;

    }


    .quote {

        padding-left: 30px;

    }


    .quote::before {

        font-size: 3rem;

    }


    .pagination a,
    .pagination span {

        width: 42px;

        height: 42px;

    }

}