
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: "Arial", sans-serif; background: #0b2f25; color: #fff; }

    /* --- GENERAL LAYOUT --- */
    .container { width: 90%; max-width: 1200px; margin: auto; }
    section { padding: 60px 0; }

    

/* --------------------------------- NAVBAR --------------------------------------- */
.navbar {
  width: 100%;
  height: 60px;              /* FIX magasság */
  background: #013325;
  position: fixed;           /* TELJESEN FIX */
  top: 0;
  left: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(255, 200, 100, 0.25);

  display: flex;
  align-items: center;
}

.nav-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: auto;

  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* LOGÓ – MINDIG BAL FELSŐ */
.nav-logo {
  position: absolute;
  top: 50%;
  left: 0; /* teljesen balra */
  transform: translateY(-50%);

  display: flex;
  align-items: center;
  padding-left: 20px; /* ha kell egy kis távolság a szélétől */
  z-index: 10001;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-logo h1 {
  color: #ceb362;
  margin: 0; /* hogy ne legyen extra space */
  padding-left: 10px; /* kis távolság a logo és a szöveg között */
}




/* MENÜ JOBBRA */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #f1d9a4;
  font-weight: bold;
  font-size: 16px;
  transition: 0.3s;
}

.nav-menu li a:hover {
  color: #fff;
}

/* HAMBURGER GOMB */
.nav-toggle {
  font-size: 30px;
  color: #f1d9a4;
  cursor: pointer;
  display: none;
}

/* --- MOBIL NAV --- */
@media (max-width: 768px) {

  .nav-menu {
    position: absolute;
    top: 60px;
    right: 50%;
    transform: translateX(50%) translateY(-20px);
    width: 92%;
    background: rgba(1, 51, 37, 0.97);
    backdrop-filter: blur(8px);

    border-radius: 18px;
    padding: 25px 0;

    flex-direction: column;
    gap: 0;

    opacity: 0;
    pointer-events: none;

    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(241, 217, 164, 0.35);

    transition: 
      opacity 0.35s ease,
      transform 0.35s ease;
  }

  .nav-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(50%) translateY(0);
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu li a {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(241, 217, 164, 0.15);
  }

  .nav-menu li:last-child a {
    border-bottom: none;
  }

  .nav-menu li a:hover {
    background: rgba(241, 217, 164, 0.15);
    color: #ffffff;
  }

  .nav-toggle {
    display: block;
    z-index: 10000;
  }
  .nav-toggle.open {
  transform: rotate(90deg);
  transition: 0.3s ease;
}
}


    /* -------------------------- HERO SECTION ------------------------------------------ */
    .hero {
    position: relative;
    width: 100%;
    height: 550px; /* állítható */
    padding-top: 60px; /* navbar magassága */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    background-image: url("./img/heroBgc1.jpg");  /* IDE A KÉPED ÚTVONALA */
    background-size: cover;
    background-position: center;
}

/* zöld áttetsző overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 74, 57, 0.45); /* Zöld 45% áttetszőség */
    z-index: 1;
}

/* === HERO kártya === */
.hero-card {
    position: relative;
    z-index: 2;
    max-width: 900px;
    background: rgba(0, 20, 10, 0.55);  /* sötét doboz, áttetsző */
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(125, 190, 150, 0.5);
    backdrop-filter: blur(3px); /* kellemes üveg-effekt */
    color: #e8fbe8;
}

.hero-card h1 {
    font-size: 28px;
    color: #f1d9a4;
    margin-bottom: 25px;
}

.hero-card p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 120px 20px 60px;
    }

    .hero-card {
        padding: 25px;
    }

    .hero-card h1 {
        font-size: 22px;
    }

    .hero-card p {
        font-size: 16px;
    }
}






    /* -------------------------- HEADER RÉSZ -------------------------- */

/* Központi szakasz */
.premium-section {
    width: 100%;               /* reszponzív szélesség */
    display: flex;
    justify-content: center;   /* középre igazít */
    padding: 40px 0;
    margin: 0 auto;            /* központi igazítás */
}

.premium-box {
    width: 90%;
    max-width: 1100px;          /* fix max szélesség */
    background: #0f4a39;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}


/* Bal oldal szöveg */
.premium-left h2 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
}

.premium-left p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #e0e0e0;
}

/* Középre igazított gomb */
.contact-btn {
  width: 180px !important;
  padding: 10px 0 !important;
  text-align: center;

  display: inline-block;
  border-radius: 25px;
  border: 2px solid #f1d9a4;
  color: #f1d9a4;
  text-decoration: none;
  transition: 0.3s;
  font-weight: bold;
}

.contact-btn:hover {
  background: #f1d9a4;
  color: #0f4a39;
}


/* Jobb oldali kép */
.premium-right img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* --- Mobil nézet --- */
@media (max-width: 900px) {
  .premium-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .premium-btn {
    text-align: center;
  }
}


/* ===== PREMIUM SECTION – MOBIL HÁTTÉRKÉP ===== */
@media (max-width: 768px) {

  .premium-section {
    background-image: url("./img/header.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 20px;
  }

  /* sötét overlay az olvashatóságért */
  .premium-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 74, 57, 0.75);
    z-index: 1;
  }

  .premium-box {
    position: relative;
    z-index: 2;
    background: transparent;
    box-shadow: none;
    padding: 0;
    flex-direction: column;
  }

  /* JOBB OLDALI KÉP ELTÜNTETÉSE */
  .premium-right {
    display: none;
  }

  /* SZÖVEG FINOMÍTÁS MOBILON */
  .premium-left h2 {
    font-size: 24px;
  }

  .premium-left p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {

  .contact-btn {
    width: 100% !important;
    max-width: 320px;
    padding: 14px 0 !important;
    font-size: 16px;
    letter-spacing: 0.5px;

    background: #f1d9a4;
    color: #0f4a39;
    border: none;

    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }

  .contact-btn:hover {
    transform: scale(1.02);
  }
}




   /*-------------------------------------------PAGE CONTAINER---------------------------------------------*/

   .page-container {
    width: 90%;              /* ugyanaz, mint a premium-box */
    max-width: 1100px;       /* pontosan ugyanakkora */
    margin: 0 auto;          /* középre igazít */
    box-sizing: border-box;
    background: linear-gradient(180deg,#224c40, #0f4a39, #013325  );
    padding: 40px;           /* hogy ne érjen falhoz */
    border-radius: 15px;     /* opcionális: harmonizál az oldal többi részével */
}



    /* Szolgáltatások szekció */
.services {
    padding: 60px 0;
    
}
.services h2{
  color: #f1d9a4;
}
/* Wrapper: két oldal egymás mellett */
.service-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* Bal oszlop */
.service-left {
    flex: 1;
}

.service-left ul {
    padding: 0;
     text-align: left;
    padding-left: 20px;
}

.service-left li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

/* Jobb oszlop (kép) */
.service-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-right img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

@media (max-width: 900px) {
    .service-wrapper {
        flex-direction: column;
        /* text-align: center; */ /* ezt töröld */
    }

    .service-left {
        text-align: left; /* hozzáadva */
    }

    .service-right img {
        max-width: 300px;
        margin-top: 20px;
    }
}



/*------------------------------------------------------BIZALOM--------------------------------*/
   

  /* === BIZALOM SZEKCIÓ === */
.bizalom-section {
    position: relative;
    width: 100%;
    padding: 80px 20px;
    background-image: url("./img/trustAccounting.jpg"); /* IDE A HÁTTÉRKÉPED */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Zöld áttetsző overlay */
.bizalom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 50, 38, 0.85);
    z-index: 1;
}

/* Tartalom */
.bizalom-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: #e8fbe8;
}

/* Címsor */
.bizalom-content h2 {
    color: #f7c967;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* Szöveg */
.bizalom-content p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
    padding: 0 10px;
}



/* === RESZPONZÍV === */
@media (max-width: 768px) {
    .bizalom-content h2 {
        font-size: 22px;
    }

    .bizalom-content p {
        font-size: 16px;
    }

    .bizalom-logo {
        width: 130px;
    }
}








/*------------------------------------------------------MI AZ AMI NÁLUNK MÁS--------------------------------*/
/* A teljes blokk (cím + lista) beljebb húzása */
.masSection {
    padding-left: 40px;         
}
.masSection h1{
  color: #f1d9a4;
}
/* Szép arany lista */
.gold-list {
  list-style: none;
  margin: 0;
  margin-top: 40px;
  padding:0;
  display: flex;
  flex-direction: column;
  gap: 14px;                /* egyenletes, elegáns távolságok */
}

.gold-list li {
  position: relative;
  padding-left: 32px;
  color: #ffffff;           /* aranyszín */
  font-size: 17px;
  line-height: 1.45;
}

/* Arany pipa ikon */
.gold-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4b16a;           /* elegánsebb arany */
  font-size: 18px;
  font-weight: bold;
}

/* Mobil optimalizáció */

@media (max-width: 600px) {
  .gold-list {
    padding-left: 0;   /* eltávolítjuk a belső margót */
    margin-left: 0;
    text-align: left;  /* explicit balra igazítás */
  }

  .gold-list li {
    font-size: 15px;
    line-height: 1.35;
    padding-left: 32px; /* ha kell, megtarthatjuk az arany pipa helyét */
  }

  
  .gold-list li::before {
    font-size: 16px;         /* kisebb ikon mobilon */
    top: 2px;                /* finom igazítás a szöveghez */
  }
}








   

    /*--------------------------MIÉRT MINKET-----------------------------------*/
    /* ===== MIÉRT SZEKCIÓ ===== */
.miert-section {
  background: #356b57;
  padding: 80px 20px;
  border-radius: 20px;
  border: 2px solid  #f1d9a4;

}

.miert-container {
  max-width: 1100px;
  margin: 0 auto;

}

.miert-title {
  text-align: center;
  font-size: 26px;
  color: #f1d9a4;
  margin-bottom: 50px;
}

/* GRID */
.miert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.miert-card {
  background: #0d3a2d;
  border-radius: 10px;
  padding: 30px 25px;
  color: #e5f6e0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: 0.35s ease;
  text-align: center;
}

.miert-card:hover {
  transform: translateY(-8px);
}

/* ICON */
.miert-icon {
  font-size: 30px;
  color: #f1d9a4;
  display: block;
  margin-bottom: 15px;
}

/* TEXT */
.miert-card h3 {
  color: #f1d9a4;
  font-size: 17px;
  margin-bottom: 10px;
}

.miert-card p {
  font-size: 14.5px;
  line-height: 1.5;
  opacity: 0.9;
}

/* MOBIL */
@media (max-width: 900px) {
  .miert-grid {
    grid-template-columns: 1fr;
  }
}



/*--------------------------------HOGYAN DOLGOZUNK ---------------------------------*/
/* ===== HOGYAN DOLGOZUNK? ===== */






/* Section */
.how-section {
  text-align: center;
  padding: 60px 20px;
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
}

.how-title {
  font-size: 2rem;
  color: #f1d9a4;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

/* ===== FŐ LAYOUT ===== */
.how-grid {
  display: flex;
  gap: 50px;
  align-items: stretch;
}

/* BAL OLDAL */
.how-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.how-card {
  position: relative;
  background: rgba(1, 51, 37, 0.9);
  padding: 15px;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s ease;
}

.how-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid rgba(241, 217, 164, 0.35);
}

.how-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.how-card img {
  width: 100%;
  border-radius: 12px;
}

.how-label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(15, 74, 57, 0.85);
  padding: 8px 14px;
  border-radius: 20px;
  color: #f1d9a4;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* JOBB OLDAL */
.how-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 35px;
}

.how-item {
  display: flex;
  align-items: center;
  gap: 25px;
  transition: 0.3s ease;
}

.how-item:hover {
  transform: translateX(6px);
}

.how-item p {
  color: #e6f3ed;
  font-size: 1rem;
  line-height: 1.4;
  max-width: 260px;
}

.how-small-img {
  background: rgba(1, 51, 37, 0.9);
  padding: 10px;
  border-radius: 16px;
  position: relative;
}

.how-small-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(241, 217, 164, 0.4);
}

.how-small-img img {
  width: 140px;
  border-radius: 12px;
}

/* ===== RESZPONZÍV ===== */
@media (max-width: 900px) {
  .how-grid {
    flex-direction: column;
  }

  .how-right {
    align-items: center;
  }

  .how-item {
    flex-direction: column;
    text-align: center;
  }

  .how-item p {
    max-width: none;
  }

  .how-small-img img {
    width: 180px;
  }
  .how-left{
    width: 200px;
  }
}











    
 


/* ====== Kapcsolat szekció stílus ====== */

.contact-section {
  background: #124533;
  padding: 80px 0;
  color: rgb(255, 255, 255);
}

.contact-container {
  width: 85%;
  margin: auto;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-left { flex: 1; }

.contact-logo {
  width: 150px;
  margin-bottom: 20px;
}

.contact-left h2 {
  font-size: 32px;
  color: #f7c967;
  margin-bottom: 10px;
}

.contact-items {
  margin: 25px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  font-size: 18px;
}

.contact-item a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: 0.3s;
}

.contact-item a:hover {
  color: #f1d9a4;
}

/* Gombok bal oldalon */
.call-btn,
.email-btn {
  display: inline-block;
  margin: 10px 10px 0 0;
  padding: 12px 22px;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  background: #0f4a39;
  color: white;
  transition: 0.3s;
}

.call-btn:hover,
.email-btn:hover {
  background: #f1d9a4;
  color: #124533;
}

/* ====== Jobb oldal űrlap ====== */

.contact-right {
  flex: 1;
  background: #0f4a39;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
}

/* Input mezők animált lebegő label-lel */
.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px;
  border: none;
  outline: none;
  border-radius: 6px;
  font-size: 16px;
}

.input-group textarea {
  height: 140px;
  resize: none;
}

.input-group label {
  position: absolute;
  left: 14px;
  top: 14px;
  pointer-events: none;
  transition: 0.3s;
  color: #777;
}

/* animáció */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -12px;
  left: 10px;
  font-size: 13px;
  color: #f1d9a4;
}

/* Gomb animáció */
.contact-btn {
  width: 100%;
  padding: 14px;
  background: #f1d9a4;
  color: black;
  font-size: 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.contact-btn:hover {
  background: white;
  color: #124533;
  transform: translateY(-3px);
}

/* Mobil */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }
}



/* ================================================== */


.email-cta {
  text-align: center;
  margin-top: 40px;
  padding: 50px 20px;
  background: #1d4d3f;
  border-radius: 20px;
  border: 2px solid #d4b16a;
}

.email-cta p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 15px;
}

.email-cta-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;

  border: 2px solid #f1d9a4;
  color: #f1d9a4;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.email-cta-btn:hover {
  background: #f1d9a4;
  color: #013325;
}


@media (max-width: 768px) {
  .email-cta p {
    font-size: 16px;
  }

  .email-cta-btn {
    width: 100%;
    max-width: 280px;
  }
}




/* =======================KAPCSOLAT =========================== */

.team-section {
  padding: 100px 20px;
}

.team-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.team-container h1 {
  color: #f1d9a4;
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.team-intro {
  color: #d8e6df;
  font-size: 1.1rem;
  margin-bottom: 60px;
}

/* GRID */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* ⬅ EZ KÖZÉPRE RAKJA A 2. SORT IS */
  gap: 35px;
}



/* KÁRTYA */
.team-card {
  background: rgba(255, 255, 255, 0.05);
  width: 260px;   /* vagy 240–280px ízlés szerint */
  border: 1px solid rgba(241, 217, 164, 0.4);
  border-radius: 20px;
  padding: 35px 25px;
  transition: 0.4s ease;
  backdrop-filter: blur(6px);
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.35);
}

/* AVATAR */
.avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #f1d9a4, #0f4a39);
  position: relative;
  animation: pulse 3s infinite ease-in-out;
}

/* "fej" ikon hatás */
.avatar::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
}

.avatar::after {
  content: "";
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 25px;
  border-radius: 20px 20px 10px 10px;
  background: rgba(255,255,255,0.25);
}

/* SZÖVEG */
.team-card h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.team-card span {
  color: #f1d9a4;
  font-size: 0.95rem;
}

/* AVATAR ANIMÁCIÓ */
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(241, 217, 164, 0.6); }
  70%  { box-shadow: 0 0 0 15px rgba(241, 217, 164, 0); }
  100% { box-shadow: 0 0 0 0 rgba(241, 217, 164, 0); }
}

/* MOBIL */
@media (max-width: 600px) {
  .team-container h1 {
    font-size: 2rem;
  }
}


/* ===== MODÁL HÁTTÉR ===== */
.contact-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 40, 30, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* ===== MODÁL DOBOZ ===== */
.modal-box {
  background: #0f4a39;
  border-radius: 18px;
  padding: 35px;
  text-align: center;
  max-width: 360px;
  width: 90%;
  animation: scaleIn 0.35s ease;
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

.modal-box h3 {
  color: #f1d9a4;
  margin-bottom: 10px;
}

.modal-box p {
  color: #e6f3ed;
  margin-bottom: 25px;
}

/* ===== GOMBOK ===== */
.modal-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.modal-btn {
  padding: 12px 22px;
  border-radius: 30px;
  border: 2px solid #f1d9a4;
  text-decoration: none;
  font-weight: bold;
  color: #f1d9a4;
  transition: 0.3s;
}

.modal-btn:hover {
  background: #f1d9a4;
  color: #0f4a39;
}

/* Bezárás */
.modal-close {
  margin-top: 25px;
  background: none;
  border: none;
  color: #fff;
  opacity: 0.7;
  cursor: pointer;
}

/* ANIMÁCIÓ */
@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}





/* ===========================
     MODERN & CLEAN CTA
=========================== */

.cta-section {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.cta-inner {
  background: rgba(255, 255, 255, 0.07);  /* enyhén áttetsző fehér */
  backdrop-filter: blur(8px);             /* üveghatás */
  border: 1px solid #f1d9a4;             /* elegáns arany keret */
  border-radius: 25px;

  text-align: center;
  width: 90%;
  max-width: 1000px;
  padding: 60px 40px;

  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.8s ease forwards;
}

/* CÍM */
.cta-inner h1 {
  color: #f7c967;
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

/* LEÍRÁS */
.cta-inner p {
  color: #d8e6df;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* GOMBOK */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Modern prémium gombok */
.cta-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.05rem;
  text-decoration: none;

  border: 2px solid #f1d9a4;
  color: #f1d9a4;
  transition: 0.3s ease, transform 0.25s;
  backdrop-filter: blur(4px);
}

/* Hover: arany háttér + zöld szöveg */
.cta-btn:hover {
  background: #f1d9a4;
  color: #124533;
  transform: translateY(-4px);
}

/* Aktív kattintás */
.cta-btn:active {
  transform: scale(0.95);
}

/* ANIMÁCIÓK */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBIL */
@media (max-width: 600px) {
  .cta-inner {
    padding: 40px 20px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}




/*--------------------------------------------------------------*/

/* Alapból elrejtjük minden nézetben */
.mobile-fixed-cta {
  display: none;
}

/* Csak mobilon jelenik meg */
@media (max-width: 768px) {
  .mobile-fixed-cta {
    display: block; /* vagy inline-block, ha kell */
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 14px 0;

    background: #f1d9a4;
    color: #0f4a39;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;

    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.25);
  }

  body {
    padding-bottom: 60px;
  }
}


/* ===========================
          FOOTER
=========================== */

.site-footer {
  padding: 50px 20px 40px;
  position: relative;
}

/* arany elválasztó */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 2px;
  background: #f1d9a4;
  opacity: 0.7;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-main {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.footer-main strong {
  color: #f1d9a4;
}

.footer-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.footer-sub span {
  color: #f1d9a4;
  transition: 0.3s;
}

.footer-sub span:hover {
  opacity: 0.8;
}

/* Mobil finomhangolás */
@media (max-width: 600px) {
  .footer-main {
    font-size: 0.9rem;
  }

  .footer-sub {
    font-size: 0.75rem;
  }
}
/* ===========================
      SCROLL TO TOP
=========================== */

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #f1d9a4;
  background: rgba(15, 74, 57, 0.9);
  color: #f1d9a4;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: 0.3s ease;
  backdrop-filter: blur(4px);
}

#scrollTopBtn:hover {
  background: #f1d9a4;
  color: #0f4a39;
  transform: translateY(-3px);
}









/*----------------------------------------------------*/


/* ===== MOBIL OVERFLOW FIX ===== */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* minden szekció ne lógjon ki */
section,
div {
  max-width: 100%;
  box-sizing: border-box;
}

/* szöveg törés */
p, h1, h2, h3, li, span {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 600px) {
  .premium-box,
  .page-container {
    padding: 25px 20px;
  }
}

@media (max-width: 600px) {
  .hero-card {
    padding: 22px 18px;
  }

  .hero-card h1 {
    font-size: 20px;
    line-height: 1.3;
  }
}

@media (max-width: 600px) {
  .miert-card {
    padding: 22px 18px;
  }

  .miert-grid {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .how-small-img img {
    width: 100%;
    max-width: 240px;
  }

  .how-item {
    padding: 0 10px;
  }
}

.team-card {
  overflow: hidden;
}

@media (max-width: 600px) {
  .team-card {
    width: 100%;
    max-width: 320px;
  }
}


@media (max-width: 600px) {
  .cta-inner {
    padding: 35px 20px;
  }

  .cta-inner h1 {
    font-size: 1.6rem;
  }

  .cta-inner p {
    font-size: 1rem;
  }
}





