/* ======================= ALAP BEÁLLÍTÁSOK ======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 35%),
        linear-gradient(180deg, #eef7ff 0%, #e6f2ff 45%, #edf7ff 100%);
    color: #003366;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-container {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.main-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 8%;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

/* ======================= NAVBAR ======================= */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(0, 51, 102, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1px 6%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.logo {
    color: #ffffff;
    font-size: 1.9rem;
    font-weight: bold;
    flex-shrink: 0;
}

.logo img {
    height: 150px;
    width: auto;
    display: block;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.18));
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.03rem;
    font-weight: 700;
    position: relative;
    padding: 6px 0;
    transition: opacity 0.2s ease;
}

.nav-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #ff8c00;
    transition: width 0.25s ease;
}

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

.nav-menu li a:hover,
.nav-menu li a.active {
    text-decoration: none;
    opacity: 1;
}

/* ======================= HERO BLOKKOK ======================= */
.hero {
    padding: 92px 0 46px;
}

.hero-content {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f3f9ff 100%);
    border-radius: 28px;
    padding: 54px 42px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.09);
    border: 1px solid rgba(0, 51, 102, 0.08);
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #003366 0%, #ff8c00 100%);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.18;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.hero-content h2 {
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.78;
    margin-bottom: 18px;
    text-align: center;
    opacity: 0.95;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* Alapértelmezett hero: középre */
.hero.centered {
    text-align: center;
}

.hero.centered .hero-content {
    text-align: center;
}

/* ======================= BIZALMI BLOKK (balra desktopon) ======================= */
.hero.trust {
    text-align: left;
}

.hero.trust .hero-content {
    margin-left: 0;
    text-align: left;
}

.hero.trust .hero-content h1,
.hero.trust .hero-content h2,
.hero.trust .hero-content p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.hero.trust p {
    font-size: 1.05rem;
}

/* ======================= CTA GOMB ======================= */
.call-button {
    background: linear-gradient(180deg, #ff9d1f 0%, #ff8c00 100%);
    color: #ffffff !important;
    font-weight: 800;
    padding: 18px 42px;
    font-size: 1.06rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    border: none;
    box-shadow: 0 12px 24px rgba(255, 140, 0, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.call-button:hover {
    background: linear-gradient(180deg, #ffa733 0%, #e67e00 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(255, 140, 0, 0.28);
}

.call-button,
.call-button:visited,
.call-button:hover,
.call-button:active,
.call-button:focus,
.call-button span,
.call-button strong,
.call-button small,
.call-button i {
    color: #ffffff !important;
}

/* ======================= ABOUT SZEKCIÓ ======================= */
.about-us {
    padding: 22px 0;
}

.about-container {
    display: flex;
    gap: 56px;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
    border-radius: 24px;
    padding: 38px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(0, 51, 102, 0.08);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 18px;
    line-height: 1.24;
    font-weight: 800;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.78;
    margin-bottom: 15px;
    opacity: 0.95;
}

.about-text strong {
    color: #003366;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 370px;
    border-radius: 20px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.16);
    display: block;
}

/* ======================= FEATURE BOXOK ======================= */
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 28px;
}

.feature-box {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 20px;
    padding: 30px 26px;
    text-align: center;
    box-shadow: 0 12px 26px rgba(0,0,0,0.10);
    border: 1px solid rgba(0, 51, 102, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(0,0,0,0.12);
}

.feature-box h3 {
    font-size: 1.28rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.feature-box p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 0;
    opacity: 0.94;
}

/* ======================= ZÁRÓ CTA – MINDIG KÖZÉPEN ======================= */
.about-us.cta-final {
    text-align: center;
    padding-bottom: 34px;
}

.about-us.cta-final .about-container {
    justify-content: center;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f3f9ff 100%);
}

.about-us.cta-final .about-text {
    max-width: 700px;
    margin: 0 auto;
}

.about-us.cta-final .about-text h2 {
    margin-bottom: 14px;
}

.about-us.cta-final .about-text p {
    margin-bottom: 22px;
}

/* ======================= FOOTER ======================= */
.footer {
    background: linear-gradient(180deg, #003366 0%, #00284f 100%);
    color: #ffffff;
    text-align: center;
    padding: 34px 10%;
    margin-top: 42px;
    box-shadow: 0 -8px 20px rgba(0,0,0,0.08);
}

.footer p {
    line-height: 1.7;
}

.footer a {
    color: #ffb347;
    text-decoration: none;
    font-weight: 700;
}

.footer a:hover {
    text-decoration: underline;
}

/* ======================= KIEGÉSZÍTŐ FŐOLDALI BLOKKOK ======================= */
.center-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.about-us.full-width-text .about-container {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
}

.about-us.full-width-text .about-text {
    width: 100%;
    margin-top: 20px;
}

.about-us.full-width-text .about-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.about-us.full-width-text .about-image img {
    max-width: 400px;
    height: auto;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-feature-box {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
    border: 1px solid rgba(0, 51, 102, 0.07);
}

.about-feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.about-feature-box p {
    font-size: 1rem;
    line-height: 1.5;
}

/* ================================
   SZOLGÁLTATÁSOK – PROFIBB MEGJELENÉS
   ================================ */

/* OLDALFEJLÉC */
.services-header {
    text-align: center;
    max-width: 980px;
    margin: 90px auto 55px;
    padding: 0 20px;
}

.services-header h1 {
    font-size: 2.8rem;
    letter-spacing: 0.2px;
    margin-bottom: 14px;
    font-weight: 800;
}

.services-header p {
    font-size: 1.1rem;
    line-height: 1.75;
    opacity: 0.92;
}

/* BEVEZETŐ */
.services-intro {
    max-width: 980px;
    margin: 0 auto 65px;
    padding: 0 20px;
    text-align: center;
}

.services-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.services-intro p {
    line-height: 1.75;
    font-size: 1.05rem;
    opacity: 0.94;
}

/* SZOLGÁLTATÁS LISTA */
.services-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* EGY SOR */
.service-row {
    display: flex;
    align-items: stretch;
    gap: 44px;
    margin-bottom: 50px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.09);
    border: 1px solid rgba(0, 51, 102, 0.07);
}

.service-row.reverse {
    flex-direction: row-reverse;
}

/* SZÖVEG */
.service-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text h3 {
    margin-bottom: 12px;
    font-size: 1.7rem;
    line-height: 1.25;
    font-weight: 800;
}

.service-text p {
    line-height: 1.75;
    margin-bottom: 12px;
    font-size: 1.05rem;
    opacity: 0.94;
}

.service-text ul {
    padding-left: 18px;
    margin-top: 6px;
}

.service-text li {
    margin-bottom: 9px;
    line-height: 1.65;
    opacity: 0.96;
}

/* KÉP */
.service-image {
    flex: 0 0 440px;
    display: flex;
    align-items: center;
}

.service-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

/* CTA */
.services-cta {
    text-align: center;
    padding: 70px 20px 90px;
    max-width: 980px;
    margin: 0 auto;
}

.services-cta h2 {
    margin-bottom: 16px;
    font-size: 2rem;
    font-weight: 800;
}

.services-cta p {
    max-width: 820px;
    margin: 0 auto 26px;
    line-height: 1.75;
    opacity: 0.92;
    font-size: 1.05rem;
}

.services-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.services-cta .call-button.secondary {
    background: linear-gradient(180deg, #ff9d1f 0%, #ff8c00 100%);
    border: 2px solid #ff8c00;
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(255, 140, 0, 0.24);
}

.services-cta .call-button.secondary:hover {
    background: linear-gradient(180deg, #ffa733 0%, #e67e00 100%);
    color: #ffffff !important;
}

/* =========================================
   ÍGY DOLGOZUNK OLDAL – PROFIBB MEGJELENÉS
   ===================================================== */

/* FEJLÉC */
.page-header-igy {
    text-align: center;
    max-width: 980px;
    margin: 90px auto 12px;
    padding: 0 20px;
}

.page-header-igy h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 0.2px;
}

.page-header-igy p {
    font-size: 1.1rem;
    line-height: 1.75;
    opacity: 0.94;
}

/* BEVEZETŐ */
.intro-igy {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 26px;
    padding: 0 20px;
}

.intro-igy h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.intro-igy p {
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.94;
    margin-bottom: 10px;
}

/* LÉPÉSEK */
.step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
    max-width: 1100px;
    margin: 32px auto;
    padding: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 22px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.09);
    border: 1px solid rgba(0, 51, 102, 0.07);
}

.step:nth-of-type(even) {
    flex-direction: row-reverse;
}

/* SZÖVEG BLOKK */
.step-text {
    flex: 1 1 auto;
    text-align: left;
    display: block !important;
}

.step-text * {
    display: block !important;
}

.step-text h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.25;
}

.step-text p {
    margin-bottom: 10px;
    line-height: 1.75;
    opacity: 0.94;
    font-size: 1.05rem;
}

.step-text p strong {
    font-weight: 800;
}

/* KÉP */
.step-image {
    flex: 0 0 440px;
    display: flex;
    align-items: center;
}

.step-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

/* ZÁRÁS */
.closing.closing-igy {
    max-width: 900px;
    margin: 70px auto 40px;
    text-align: center;
    padding: 34px 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f9ff 100%);
    border-radius: 22px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.09);
    border: 1px solid rgba(0, 51, 102, 0.07);
}

.closing.closing-igy h2 {
    font-weight: 800;
    margin-bottom: 14px;
    font-size: 2rem;
}

.closing.closing-igy p {
    font-weight: 400;
    line-height: 1.75;
    opacity: 0.94;
    margin-bottom: 22px;
    font-size: 1.05rem;
}

.closing.closing-igy .call-button + .call-button {
    margin-left: 10px;
}

.closing.closing-igy .call-button.secondary {
    background: linear-gradient(180deg, #ff9d1f 0%, #ff8c00 100%);
    border: 2px solid #ff8c00;
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(255, 140, 0, 0.24);
}

.closing.closing-igy .call-button.secondary:hover {
    background: linear-gradient(180deg, #ffa733 0%, #e67e00 100%);
    color: #ffffff !important;
}

/* =====================================================
   CSOMAGJAINK OLDAL – SZIGETELT (scoped) STÍLUSOK
   ===================================================== */

.csomag-page-container .csomag-main-content {
    gap: 38px;
    padding-bottom: 30px;
}

/* OLDALFEJLÉC */
.csomag-page-container .csomag-page-header {
    text-align: center;
    max-width: 920px;
    margin: 86px auto 8px;
    padding: 0 10px;
}

.csomag-page-container .csomag-page-title {
    font-size: 2.9rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 0.2px;
}

.csomag-page-container .csomag-page-lead {
    font-size: 1.14rem;
    line-height: 1.8;
    opacity: 0.92;
    max-width: 760px;
    margin: 0 auto;
}

/* BEVEZETŐ */
.csomag-page-container .csomag-intro {
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
    border-radius: 24px;
    padding: 34px 36px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.08);
    border: 1px solid rgba(0, 51, 102, 0.08);
    text-align: center;
}

.csomag-page-container .csomag-section-title {
    font-size: 2rem;
    margin-bottom: 14px;
    font-weight: 800;
    line-height: 1.25;
}

.csomag-page-container .csomag-section-subtitle {
    font-size: 1.08rem;
    margin-top: -2px;
    margin-bottom: 16px;
    color: #00509e;
    font-weight: 700;
    opacity: 1;
}

.csomag-page-container .csomag-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.96;
    margin-bottom: 14px;
}

.csomag-page-container .csomag-paragraph strong {
    color: #003366;
}

.csomag-page-container .csomag-paragraph--strong {
    margin-top: 10px;
    margin-bottom: 14px;
    font-size: 1.08rem;
}

/* ÁLTALÁNOS SZEKCIÓK */
.csomag-page-container .csomag-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.09);
    border: 1px solid rgba(0, 51, 102, 0.08);
    position: relative;
    overflow: hidden;
}

.csomag-page-container .csomag-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #003366 0%, #ff8c00 100%);
}

.csomag-page-container .csomag-section .csomag-section-title {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

/* KAMERÁS BLOKK */
.csomag-page-container .csomag-section--camera {
    background: linear-gradient(135deg, #ffffff 0%, #eef7ff 100%);
}

.csomag-page-container .csomag-section--camera .csomag-paragraph {
    max-width: 900px;
}

/* LAKOSSÁGI / ÜZLETI */
.csomag-page-container .csomag-section--residential {
    border: 1px solid rgba(0, 51, 102, 0.10);
}

.csomag-page-container .csomag-section--business {
    border: 1px solid rgba(255, 140, 0, 0.16);
}

/* TÁBLÁK */
.csomag-page-container .csomag-table-wrap {
    overflow-x: auto;
    margin: 18px 0 20px;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.csomag-page-container .csomag-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #ffffff;
    min-width: 720px;
}

.csomag-page-container .csomag-table-row--head .csomag-table-head {
    background: linear-gradient(180deg, #003366 0%, #004a8f 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.02rem;
    text-align: center;
    padding: 18px 14px;
    border-right: 1px solid rgba(255,255,255,0.10);
}

.csomag-page-container .csomag-table-row--head .csomag-table-head:first-child {
    text-align: left;
    border-top-left-radius: 18px;
}

.csomag-page-container .csomag-table-row--head .csomag-table-head:last-child {
    border-top-right-radius: 18px;
    border-right: none;
}

.csomag-page-container .csomag-table-cell {
    padding: 17px 16px;
    border-bottom: 1px solid rgba(0, 51, 102, 0.10);
    border-right: 1px solid rgba(0, 51, 102, 0.08);
    vertical-align: middle;
    line-height: 1.6;
    background-color: #ffffff;
}

.csomag-page-container .csomag-table-row:last-child .csomag-table-cell {
    border-bottom: none;
}

.csomag-page-container .csomag-table-row .csomag-table-cell:last-child {
    border-right: none;
}

.csomag-page-container .csomag-table-row .csomag-table-cell:first-child {
    font-weight: 700;
    color: #003366;
    background-color: #f5f9ff;
    min-width: 190px;
}

/* Standard oszlop kiemelés */
.csomag-page-container .csomag-table tr > *:nth-child(3) {
    background-color: #fff7ec;
}

.csomag-page-container .csomag-table .csomag-table-row--head > *:nth-child(3) {
    background: linear-gradient(180deg, #ff8c00 0%, #e67e00 100%);
    color: #ffffff !important;
}

.csomag-page-container .csomag-table .csomag-table-row--head > *:nth-child(3) *,
.csomag-page-container .csomag-table .csomag-table-row--head > *:nth-child(3) a,
.csomag-page-container .csomag-table .csomag-table-row--head > *:nth-child(3) span,
.csomag-page-container .csomag-table .csomag-table-row--head > *:nth-child(3) strong {
    color: #ffffff !important;
}

.csomag-page-container .csomag-table tr:not(.csomag-table-row--head):hover .csomag-table-cell {
    background-color: #f8fbff;
    transition: background-color 0.2s ease;
}

.csomag-page-container .csomag-table tr:not(.csomag-table-row--head):hover > *:nth-child(3) {
    background-color: #fff2dd;
}

/* LISTÁK */
.csomag-page-container .csomag-list {
    padding-left: 0;
    margin: 14px 0 16px;
    list-style: none;
}

.csomag-page-container .csomag-list-item {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 1.02rem;
}

.csomag-page-container .csomag-list-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff8c00;
    font-weight: 800;
    font-size: 1.05rem;
}

/* MEGJEGYZÉS */
.csomag-page-container .csomag-note {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.12) 0%, rgba(255, 140, 0, 0.05) 100%);
    border-left: 6px solid #ff8c00;
    padding: 16px 18px;
    border-radius: 14px;
    line-height: 1.7;
    font-size: 1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 140, 0, 0.08);
}

/* ZÁRÓ CTA */
.csomag-page-container .csomag-closing {
    max-width: 820px;
    margin: 78px auto 40px;
    text-align: center;
    padding: 34px 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f9ff 100%);
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(0, 51, 102, 0.08);
}

.csomag-page-container .csomag-closing .csomag-section-title {
    font-size: 2rem;
    margin-bottom: 12px;
}

.csomag-page-container .csomag-closing .csomag-paragraph {
    max-width: 700px;
    margin: 0 auto 8px;
}

.csomag-page-container .csomag-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 22px;
}

/* GOMBOK */
.csomag-page-container .csomag-button {
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.08rem;
    box-shadow: 0 10px 18px rgba(255, 140, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #ffffff !important;
}

.csomag-page-container .csomag-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(255, 140, 0, 0.22);
    color: #ffffff !important;
}

.csomag-page-container .csomag-button,
.csomag-page-container .csomag-button:visited,
.csomag-page-container .csomag-button:hover,
.csomag-page-container .csomag-button:active,
.csomag-page-container .csomag-button:focus,
.csomag-page-container .csomag-button span,
.csomag-page-container .csomag-button strong,
.csomag-page-container .csomag-button small,
.csomag-page-container .csomag-button i {
    color: #ffffff !important;
}

.csomag-page-container .csomag-button--secondary.secondary {
    background: linear-gradient(180deg, #ff9d1f 0%, #ff8c00 100%);
    border: 2px solid #ff8c00;
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(255, 140, 0, 0.24);
}

.csomag-page-container .csomag-button--secondary.secondary:hover {
    background: linear-gradient(180deg, #ffa733 0%, #e67e00 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* =====================================================
   KAPCSOLAT OLDAL – SZIGETELT (scoped) STÍLUSOK
   ===================================================== */

.kapcsolat-page-container .kapcsolat-main-content {
    gap: 34px;
}

/* OLDALFEJLÉC */
.kapcsolat-page-container .kapcsolat-page-header {
    text-align: center;
    max-width: 900px;
    margin: 80px auto 10px;
}

.kapcsolat-page-container .kapcsolat-page-title {
    font-size: 2.6rem;
    line-height: 1.35;
    margin-bottom: 18px;
    font-weight: 800;
}

.kapcsolat-page-container .kapcsolat-page-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.92;
}

/* ALAP SZÖVEGEK */
.kapcsolat-page-container .kapcsolat-section-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.kapcsolat-page-container .kapcsolat-paragraph {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.94;
    margin-bottom: 12px;
}

/* GRID */
.kapcsolat-page-container .kapcsolat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: start;
}

/* KÁRTYÁK */
.kapcsolat-page-container .kapcsolat-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 26px rgba(0,0,0,0.09);
    border: 1px solid rgba(0, 51, 102, 0.07);
}

/* ELÉRHETŐSÉGEK */
.kapcsolat-page-container .kapcsolat-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
    margin-bottom: 16px;
}

.kapcsolat-page-container .kapcsolat-info-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 14px;
    border-radius: 12px;
    background-color: rgba(0, 51, 102, 0.04);
}

.kapcsolat-page-container .kapcsolat-info-label {
    font-weight: 700;
}

.kapcsolat-page-container .kapcsolat-info-value {
    text-decoration: none;
    color: #003366;
    font-weight: 700;
}

.kapcsolat-page-container .kapcsolat-info-value:hover {
    text-decoration: underline;
}

.kapcsolat-page-container .kapcsolat-note {
    background-color: rgba(255, 140, 0, 0.10);
    border-left: 5px solid #ff8c00;
    padding: 14px 14px;
    border-radius: 10px;
    margin-top: 10px;
}

/* QUICK CTA */
.kapcsolat-page-container .kapcsolat-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

/* ŰRLAP */
.kapcsolat-page-container .kapcsolat-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
}

.kapcsolat-page-container .kapcsolat-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kapcsolat-page-container .kapcsolat-label {
    font-weight: 700;
}

.kapcsolat-page-container .kapcsolat-input,
.kapcsolat-page-container .kapcsolat-textarea {
    width: 100%;
    padding: 14px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 51, 102, 0.20);
    font-size: 1rem;
    outline: none;
    background-color: #ffffff;
    color: #003366;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.kapcsolat-page-container .kapcsolat-textarea {
    resize: vertical;
}

.kapcsolat-page-container .kapcsolat-input:focus,
.kapcsolat-page-container .kapcsolat-textarea:focus {
    border-color: rgba(255, 140, 0, 0.9);
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.10);
}

.kapcsolat-page-container .kapcsolat-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

/* GOMBOK */
.kapcsolat-page-container .kapcsolat-button {
    padding: 18px 38px;
    border-radius: 12px;
    color: #ffffff !important;
}

.kapcsolat-page-container .kapcsolat-button,
.kapcsolat-page-container .kapcsolat-button:visited,
.kapcsolat-page-container .kapcsolat-button:hover,
.kapcsolat-page-container .kapcsolat-button:active,
.kapcsolat-page-container .kapcsolat-button:focus,
.kapcsolat-page-container .kapcsolat-button span,
.kapcsolat-page-container .kapcsolat-button strong,
.kapcsolat-page-container .kapcsolat-button small,
.kapcsolat-page-container .kapcsolat-button i {
    color: #ffffff !important;
}

.kapcsolat-page-container .kapcsolat-button--secondary.secondary {
    background: linear-gradient(180deg, #ff9d1f 0%, #ff8c00 100%);
    border: 2px solid #ff8c00;
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(255, 140, 0, 0.24);
}

.kapcsolat-page-container .kapcsolat-button--secondary.secondary:hover {
    background: linear-gradient(180deg, #ffa733 0%, #e67e00 100%);
    color: #ffffff !important;
}

.kapcsolat-page-container .kapcsolat-form-hint {
    font-size: 0.95rem;
    opacity: 0.75;
    margin-top: 6px;
}

/* GALÉRIA */
.kapcsolat-page-container .kapcsolat-gallery {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 26px rgba(0,0,0,0.09);
    border: 1px solid rgba(0, 51, 102, 0.07);
}

.kapcsolat-page-container .kapcsolat-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 14px;
}

.kapcsolat-page-container .kapcsolat-gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

/* ZÁRÓ CTA */
.kapcsolat-page-container .kapcsolat-closing {
    max-width: 760px;
    margin: 80px auto 40px;
    text-align: center;
    padding: 0 10px;
}

.kapcsolat-page-container .kapcsolat-cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
}

/* ======================= RESZPONZÍV ======================= */
@media (max-width: 900px) {
    .nav-container {
        height: auto;
        padding-top: 14px;
        padding-bottom: 14px;
        flex-direction: column;
        justify-content: center;
    }

    .logo img {
        height: 110px;
    }

    .nav-menu {
        justify-content: center;
        gap: 16px 20px;
    }

    .hero {
        padding: 64px 0 30px;
    }

    .hero-content {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 1.75rem;
    }

    .hero,
    .hero.trust {
        text-align: center;
    }

    .hero.trust .hero-content,
    .hero.trust .hero-content h1,
    .hero.trust .hero-content h2,
    .hero.trust .hero-content p {
        text-align: center;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        padding: 26px 20px;
        gap: 26px;
    }

    .about-text h2 {
        font-size: 1.7rem;
    }

    .about-image img {
        max-width: 300px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .feature-box {
        padding: 24px 18px;
    }

    .services-header {
        margin-top: 65px;
        margin-bottom: 40px;
    }

    .services-header h1 {
        font-size: 2.2rem;
    }

    .services-intro {
        margin-bottom: 45px;
    }

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 26px;
        padding: 18px;
    }

    .service-image {
        flex: none;
    }

    .service-image img {
        height: 220px;
    }

    .services-cta {
        padding: 55px 20px 70px;
    }

    .services-cta h2 {
        font-size: 1.7rem;
    }

    .page-header-igy {
        margin-top: 60px;
    }

    .page-header-igy h1 {
        font-size: 2.2rem;
    }

    .intro-igy h2 {
        font-size: 1.55rem;
    }

    .step,
    .step:nth-of-type(even) {
        flex-direction: column;
        gap: 18px;
        text-align: left;
        margin: 22px auto;
        padding: 18px;
    }

    .step-image {
        width: 100%;
        flex: none;
    }

    .step-image img {
        height: 220px;
    }

    .closing.closing-igy {
        margin-top: 50px;
        padding: 24px 18px;
    }

    .closing.closing-igy h2 {
        font-size: 1.7rem;
    }

    .csomag-page-container .csomag-page-header {
        margin-top: 58px;
    }

    .csomag-page-container .csomag-page-title {
        font-size: 2.2rem;
        line-height: 1.25;
    }

    .csomag-page-container .csomag-page-lead {
        font-size: 1.03rem;
    }

    .csomag-page-container .csomag-intro {
        padding: 24px 20px;
        border-radius: 18px;
        text-align: left;
    }

    .csomag-page-container .csomag-section {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .csomag-page-container .csomag-section-title {
        font-size: 1.55rem;
    }

    .csomag-page-container .csomag-section-subtitle {
        font-size: 1rem;
    }

    .csomag-page-container .csomag-table-wrap {
        border-radius: 14px;
    }

    .csomag-page-container .csomag-table {
        min-width: 640px;
    }

    .csomag-page-container .csomag-table-head,
    .csomag-page-container .csomag-table-cell {
        padding: 14px 12px;
        font-size: 0.96rem;
    }

    .csomag-page-container .csomag-closing {
        margin-top: 56px;
        padding: 26px 18px;
        border-radius: 18px;
    }

    .csomag-page-container .csomag-closing .csomag-section-title {
        font-size: 1.7rem;
    }

    .csomag-page-container .csomag-button {
        width: 100%;
        max-width: 320px;
    }

    .kapcsolat-page-container .kapcsolat-page-header {
        margin-top: 60px;
    }

    .kapcsolat-page-container .kapcsolat-page-title {
        font-size: 2.2rem;
    }

    .kapcsolat-page-container .kapcsolat-grid {
        grid-template-columns: 1fr;
    }

    .kapcsolat-page-container .kapcsolat-card {
        padding: 22px;
    }

    .kapcsolat-page-container .kapcsolat-gallery-grid {
        grid-template-columns: 1fr;
    }

    .kapcsolat-page-container .kapcsolat-gallery-img {
        height: 210px;
    }

    .kapcsolat-page-container .kapcsolat-info-row {
        flex-direction: column;
        align-items: flex-start;
    }
}