/* =====================================================
   HAMILTON LAB - CUSTOM STYLES
   Verzió: 2.0 - Teljes újratervezés
   ===================================================== */

/* =====================================================
   VÁLTOZÓK / SZÍNEK
   ===================================================== */
:root {
    --hamilton-blue: #0064a5;
    --hamilton-dark-blue: #1B3E72;
    --hamilton-turquoise: #2DBDB8;
    --hamilton-light-bg: #f5f7f9;
    --hamilton-white: #ffffff;
    --hamilton-gray: #808793;
    --hamilton-light-gray: #e0e0e0;
    --hamilton-dark: #333333;
}

/* =====================================================
   FŐOLDAL SLIDER - TELJES ÚJRATERVEZÉS
   ===================================================== */

/* Slider konténer */
.header-slider {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 90px);
    overflow: hidden;
}

/* Slider elemek - gradiens overlay a képek felett */
.header-slider > div[id^="slider_"] {
    position: absolute !important;
    width: 100% !important;
    height: calc(100vh - 90px) !important;
    background-size: cover !important;
    background-position: center center !important;
}

/* Gradiens overlay - bal oldal olvasható, jobb oldal kép látszik */
.header-slider > div[id^="slider_"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.85) 35%,
        rgba(255, 255, 255, 0.5) 60%,
        rgba(255, 255, 255, 0.1) 100%
    );
    z-index: 1;
}

/* Slider tartalom wrapper */
.header-slider > div[id^="slider_"] > div {
    position: relative;
    z-index: 2;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    padding: 0 !important;
}

/* Slider szövegdoboz - aranymetszés alapú pozicionálás */
.header-slider > div[id^="slider_"] > div > div {
    position: relative;
    margin-left: 8% !important;
    max-width: 550px !important;
    padding: 40px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: bold !important;
    font-size: 38px !important;
    line-height: 1.2 !important;
    color: var(--hamilton-dark-blue) !important;
}

/* Slider szöveg (bekezdés) */
.header-slider > div[id^="slider_"] > div > div > div {
    width: 100% !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: normal !important;
    font-size: 17px !important;
    line-height: 1.7 !important;
    color: var(--hamilton-gray) !important;
    padding-top: 25px !important;
}

/* Slider-white div elrejtése (nem kell többé) */
#slider-white {
    display: none !important;
}

/* =====================================================
   SLIDER - MOBIL NÉZET (1150px - egyezik newdent.css-sel)
   ===================================================== */
@media screen and (max-width: 1150px) {
    .header-slider > div[id^="slider_"] > div > div {
        margin-left: 5% !important;
        max-width: 55% !important;
        padding: 35px !important;
        font-size: 34px !important;
    }
    
    .header-slider > div[id^="slider_"] > div > div > div {
        font-size: 16px !important;
        line-height: 1.65 !important;
    }
}

@media screen and (max-width: 900px) {
    .header-slider > div[id^="slider_"] > div > div {
        margin-left: 5% !important;
        max-width: 65% !important;
        padding: 30px !important;
        font-size: 30px !important;
    }
    
    .header-slider > div[id^="slider_"] > div > div > div {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
}

@media screen and (max-width: 768px) {
    .header-slider {
        min-height: auto !important;
    }
    
    .header-slider > div[id^="slider_"] {
        position: relative !important;
        height: auto !important;
        min-height: 80vh !important;
    }
    
    /* Mobilon erősebb overlay az olvashatóságért */
    .header-slider > div[id^="slider_"]::before {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.9) 60%,
            rgba(255, 255, 255, 0.7) 100%
        ) !important;
    }
    
    .header-slider > div[id^="slider_"] > div {
        align-items: flex-start !important;
        padding-top: 100px !important;
    }
    
    .header-slider > div[id^="slider_"] > div > div {
        margin-left: 0 !important;
        max-width: 100% !important;
        padding: 25px 20px !important;
        font-size: 26px !important;
        line-height: 1.3 !important;
    }
    
    .header-slider > div[id^="slider_"] > div > div > div {
        font-size: 15px !important;
        line-height: 1.6 !important;
        padding-top: 20px !important;
    }
}

@media screen and (max-width: 480px) {
    .header-slider > div[id^="slider_"] {
        min-height: 70vh !important;
    }
    
    .header-slider > div[id^="slider_"] > div {
        padding-top: 80px !important;
    }
    
    .header-slider > div[id^="slider_"] > div > div {
        padding: 20px 15px !important;
        font-size: 22px !important;
    }
    
    .header-slider > div[id^="slider_"] > div > div > div {
        font-size: 14px !important;
    }
}

/* =====================================================
   FOOTER - ÚJRATERVEZÉS (ARANYMETSZÉS)
   ===================================================== */

/* Footer konténer */
.footer-redesign {
    background-color: var(--hamilton-blue);
    background-image: url('/images/contact-template-bg.png');
    background-size: cover;
    padding: 60px 0 40px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.618fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Footer bal oldal - cég info */
.footer-company {
    color: var(--hamilton-white);
}

.footer-company-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--hamilton-white);
}

.footer-company-desc {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

/* Footer jobb oldal - kapcsolat */
.footer-contact {
    color: var(--hamilton-white);
}

.footer-contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--hamilton-white);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact-item img {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--hamilton-turquoise);
}

/* Footer copyright */
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-logo img {
    height: 40px;
    /* Logo már fehér az SVG-ben, nem kell filter */
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a,
.footer-links span {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--hamilton-white);
}

/* Footer - MOBIL */
@media screen and (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 25px;
    }
    
    .footer-company-desc {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 25px 0;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .footer-redesign {
        padding: 40px 0 30px 0;
    }
    
    .footer-content {
        padding: 0 20px;
        gap: 30px;
    }
    
    .footer-company-name {
        font-size: 18px;
    }
    
    .footer-company-desc {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .footer-contact-title {
        font-size: 16px;
    }
    
    .footer-contact-item {
        font-size: 14px;
    }
}

/* =====================================================
   LABORHÍREK - HERO SZEKCIÓ
   ===================================================== */
.laborhirek-hero {
    width: 100%;
    min-height: 350px;
    /* Alap gradiens - jól néz ki kép nélkül is */
    background: linear-gradient(135deg, #0064a5 0%, #2DBDB8 100%);
    /* Ha van laborhirek-hero.jpg, az is megjelenik alatta */
    background: linear-gradient(135deg, rgba(0, 100, 165, 0.85) 0%, rgba(45, 189, 184, 0.75) 100%),
                url('../images/laborhirek-hero.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
}

.laborhirek-hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.laborhirek-hero-icon {
    width: 80px;
    height: auto;
}

.laborhirek-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--hamilton-white);
    margin: 0;
    letter-spacing: 2px;
}

.laborhirek-hero-motto {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    color: var(--hamilton-white);
    margin-top: 15px;
    letter-spacing: 1px;
}

/* =====================================================
   LABORHÍREK - CIKK LISTA
   ===================================================== */
.laborhirek-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.laborhirek-card {
    background: var(--hamilton-white);
    border: 1px solid var(--hamilton-light-gray);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.laborhirek-card:hover {
    box-shadow: 0 8px 25px rgba(0, 100, 165, 0.12);
    transform: translateY(-2px);
}

.laborhirek-card-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}

.laborhirek-card-icon img {
    width: 100%;
    height: auto;
}

.laborhirek-card-content {
    flex: 1;
}

.laborhirek-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--hamilton-blue);
    margin: 0 0 8px 0;
}

.laborhirek-card-date {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: var(--hamilton-gray);
    margin-bottom: 8px;
}

.laborhirek-card-lead {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    color: var(--hamilton-dark);
    line-height: 1.5;
    margin: 0;
}

.laborhirek-card-btn {
    flex-shrink: 0;
    background: var(--hamilton-turquoise);
    color: var(--hamilton-white);
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
}

.laborhirek-card-btn:hover {
    background: #25a8a3;
}

/* Mobil nézet */
@media (max-width: 768px) {
    .laborhirek-hero h1 {
        font-size: 32px;
    }
    
    .laborhirek-card {
        flex-direction: column;
        text-align: center;
    }
    
    .laborhirek-card-btn {
        width: 100%;
    }
}

/* =====================================================
   LABORHÍREK - EGYEDI CIKK OLDAL
   ===================================================== */
.cikk-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.cikk-header {
    margin-bottom: 30px;
}

.cikk-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hamilton-turquoise);
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 20px;
}

.cikk-back:hover {
    text-decoration: underline;
}

.cikk-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--hamilton-blue);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.cikk-meta {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: var(--hamilton-gray);
}

.cikk-featured-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
}

.cikk-content {
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: var(--hamilton-dark);
}

.cikk-content p {
    margin-bottom: 20px;
}

.cikk-content h2, .cikk-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--hamilton-blue);
    margin-top: 30px;
    margin-bottom: 15px;
}

.cikk-content ul, .cikk-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.cikk-content li {
    margin-bottom: 8px;
}

.cikk-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* =====================================================
   SAJTÓMEGJELENÉSEK
   ===================================================== */
.sajto-hero {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--hamilton-blue) 0%, #004d80 100%);
    text-align: center;
}

.sajto-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--hamilton-white);
    margin: 0;
}

.sajto-hero-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 10px;
}

.sajto-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.sajto-card {
    background: var(--hamilton-white);
    border: 1px solid var(--hamilton-light-gray);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: box-shadow 0.3s ease;
}

.sajto-card:hover {
    box-shadow: 0 8px 25px rgba(0, 100, 165, 0.12);
}

.sajto-card-image {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    object-fit: contain;
    background: var(--hamilton-light-bg);
    border-radius: 8px;
    padding: 10px;
}

.sajto-card-content {
    flex: 1;
}

.sajto-card-date {
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    color: var(--hamilton-gray);
    margin-bottom: 5px;
}

.sajto-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--hamilton-blue);
    margin: 0 0 10px 0;
}

.sajto-card-title a {
    color: inherit;
    text-decoration: none;
}

.sajto-card-title a:hover {
    text-decoration: underline;
}

.sajto-card-desc {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    color: var(--hamilton-dark);
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.sajto-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--hamilton-turquoise);
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.sajto-card-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .sajto-card {
        flex-direction: column;
    }
    
    .sajto-card-image {
        width: 100%;
        height: 60px;
    }
}

/* =====================================================
   KAPCSOLAT OLDAL - ÚJRATERVEZVE
   ===================================================== */
.kapcsolat-hero {
    width: 100%;
    padding: 70px 20px;
    background: linear-gradient(135deg, var(--hamilton-blue) 0%, #004d80 100%);
    text-align: center;
}

.kapcsolat-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--hamilton-white);
    margin: 0;
}

.kapcsolat-hero-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 12px;
}

.kapcsolat-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 30px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 900px) {
    .kapcsolat-hero {
        padding: 50px 20px;
    }
    
    .kapcsolat-hero h1 {
        font-size: 32px;
    }
    
    .kapcsolat-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .kapcsolat-hero {
        padding: 40px 15px;
    }
    
    .kapcsolat-hero h1 {
        font-size: 28px;
    }
    
    .kapcsolat-hero-subtitle {
        font-size: 16px;
    }
    
    .kapcsolat-container {
        padding: 30px 15px;
    }
}

/* Elérhetőségek */
.kapcsolat-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--hamilton-blue);
    margin: 0 0 30px 0;
}

.kapcsolat-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}

.kapcsolat-info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(45, 189, 184, 0.1) 0%, rgba(0, 100, 165, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.kapcsolat-info-item:hover .kapcsolat-info-icon {
    transform: scale(1.1);
}

.kapcsolat-info-icon img {
    width: 22px;
    height: 22px;
}

.kapcsolat-info-text {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: var(--hamilton-dark);
    line-height: 1.6;
}

.kapcsolat-info-text a {
    color: var(--hamilton-blue);
    text-decoration: none;
}

.kapcsolat-info-text a:hover {
    text-decoration: underline;
}

.kapcsolat-info-label {
    font-weight: 700;
    color: var(--hamilton-blue);
    display: block;
    margin-bottom: 3px;
}

/* Űrlap */
.kapcsolat-form-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--hamilton-blue);
    margin: 0 0 25px 0;
}

.kapcsolat-form {
    background: var(--hamilton-white);
    border: 1px solid var(--hamilton-light-gray);
    border-radius: 12px;
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--hamilton-dark);
    margin-bottom: 8px;
}

.form-group label .required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    border: 1px solid var(--hamilton-light-gray);
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23808793' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--hamilton-turquoise);
    box-shadow: 0 0 0 3px rgba(45, 189, 184, 0.15);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-submit {
    background: var(--hamilton-turquoise);
    color: var(--hamilton-white);
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.form-submit:hover {
    background: #25a8a3;
    transform: translateY(-1px);
}

/* Form üzenetek */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* =====================================================
   ADMIN FELÜLET
   ===================================================== */
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--hamilton-light-gray);
}

.admin-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: var(--hamilton-blue);
    margin: 0;
}

.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.admin-btn-primary {
    background: var(--hamilton-turquoise);
    color: var(--hamilton-white);
}

.admin-btn-primary:hover {
    background: #25a8a3;
}

.admin-btn-secondary {
    background: var(--hamilton-light-bg);
    color: var(--hamilton-dark);
}

.admin-btn-secondary:hover {
    background: var(--hamilton-light-gray);
}

.admin-btn-danger {
    background: #e74c3c;
    color: var(--hamilton-white);
}

.admin-btn-danger:hover {
    background: #c0392b;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--hamilton-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.admin-table th,
.admin-table td {
    padding: 15px;
    text-align: left;
    font-family: 'Nunito', sans-serif;
}

.admin-table th {
    background: var(--hamilton-blue);
    color: var(--hamilton-white);
    font-weight: 600;
}

.admin-table tr:nth-child(even) {
    background: var(--hamilton-light-bg);
}

.admin-table tr:hover {
    background: rgba(45, 189, 184, 0.1);
}

.admin-actions {
    display: flex;
    gap: 8px;
}

.admin-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.admin-status.published {
    background: #d4edda;
    color: #155724;
}

.admin-status.draft {
    background: #fff3cd;
    color: #856404;
}

/* Admin Login */
.admin-login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hamilton-light-bg);
}

.admin-login-box {
    background: var(--hamilton-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.admin-login-box h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: var(--hamilton-blue);
    text-align: center;
    margin: 0 0 30px 0;
}

.admin-login-box .form-submit {
    margin-top: 10px;
}

/* Admin Editor */
.admin-editor {
    background: var(--hamilton-white);
    border: 1px solid var(--hamilton-light-gray);
    border-radius: 12px;
    padding: 30px;
}

.admin-editor .form-group input[type="text"] {
    font-size: 18px;
    padding: 15px;
}

/* =====================================================
   CTA GOMBOK - GTM TRACKING KOMPATIBILIS
   ===================================================== */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 100, 165, 0.05) 0%, rgba(45, 189, 184, 0.05) 100%);
    padding: 40px 20px;
    text-align: center;
    margin: 50px auto;
    border-radius: 12px;
    max-width: 1200px;
}

.cta-section p {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    color: #808793;
    margin-bottom: 20px;
}

.cta-contact-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2DBDB8 0%, #0064a5 100%);
    color: #ffffff !important;
    text-align: center;
    padding: 18px 35px;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0, 100, 165, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 100, 165, 0.4);
    color: #ffffff !important;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .cta-contact-btn {
        display: block;
        margin: 0 20px;
        padding: 15px 25px;
        font-size: 15px;
    }
    
    .cta-section {
        margin: 30px 10px;
        padding: 30px 15px;
    }
}

/* =====================================================
   SLIDER PROGRESS BAR
   ===================================================== */

.slider-progress {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    /* Glassmorphism */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slider-progress-segment {
    width: 80px;
    height: 3px;
    background: rgba(27, 62, 114, 0.25);
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.3s ease;
}

.slider-progress-segment:hover {
    background: rgba(27, 62, 114, 0.4);
}

.slider-progress-segment .progress-fill {
    height: 100%;
    width: 0%;
    background: var(--hamilton-blue);
    border-radius: 2px;
    transition: none;
}

.slider-progress-segment.active .progress-fill {
    animation: progressFill 7s linear forwards;
}

.slider-progress-segment.completed .progress-fill {
    width: 100%;
    background: var(--hamilton-blue);
    opacity: 0.6;
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}

/* Mobil - nagyobb kattintási felület */
@media screen and (max-width: 768px) {
    .slider-progress {
        bottom: 30px;
        gap: 6px;
        padding: 10px 16px;
    }
    
    .slider-progress-segment {
        width: 50px;
        height: 4px;
    }
}

@media screen and (max-width: 480px) {
    .slider-progress {
        bottom: 25px;
        padding: 8px 14px;
    }
    
    .slider-progress-segment {
        width: 40px;
        height: 4px;
    }
}
